• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

autoconf/pecl/H03-May-2022-723698

scripts/H03-May-2022-744656

src/H03-May-2022-25,65619,463

tests/H03-May-2022-10,8279,616

AUTHORSH A D13-Jan-202131 21

BUGSH A D13-Jan-20211.1 KiB2623

CHANGELOG.mdH A D13-Jan-202111.3 KiB190157

CONTRIBUTING.mdH A D13-Jan-20211.9 KiB4031

CREDITSH A D13-Jan-202139 32

CVE.mdH A D13-Jan-20211,007 97

LICENSEH A D13-Jan-20211.3 KiB2419

Makefile.fragH A D13-Jan-2021432 1710

README.mdH A D13-Jan-20211.6 KiB5633

THANKSH A D13-Jan-2021638 1614

TODOH A D13-Jan-2021225 44

config.m4H A D13-Jan-2021144 64

config.w32H A D13-Jan-20215.4 KiB164139

config9.m4H A D13-Jan-20217.8 KiB215191

php_http.hH A D13-Jan-20211 KiB337

README.md

1# ext-http
2
3[![Build Status](https://github.com/m6w6/ext-http/workflows/ci/badge.svg?branch=v3.x)](https://github.com/m6w6/ext-http/actions?query=branch%3Av3.x+workflow%3Aci)
4[![Coverity Scan Build Status](https://scan.coverity.com/projects/8711/badge.svg)](https://scan.coverity.com/projects/m6w6-ext-http)
5[![codecov](https://codecov.io/gh/m6w6/ext-http/branch/master/graph/badge.svg)](https://codecov.io/gh/m6w6/ext-http)
6
7Extended HTTP support for PHP.
8
9## Branches and Versions:
10
11> **NOTE:**
12  Use `v3.x` branch, and resp. v3 releases, for PHP-7. `master` and v4 releases are only for PHP-8.
13
14
15## Documentation
16
17See the [online markdown reference](https://mdref.m6w6.name/http).
18
19Known issues are listed in [BUGS](./BUGS) and future ideas can be found in [TODO](./TODO).
20
21## Install
22
23### PECL
24
25	pecl install pecl_http
26
27### PHARext
28
29Watch out for [PECL replicates](https://replicator.pharext.org?pecl_http)
30and pharext packages attached to [releases](https://github.com/m6w6/ext-http/releases).
31
32### Checkout
33
34	git clone https://github.com/m6w6/ext-http.git
35	cd ext-http
36	/path/to/phpize
37	./configure --with-php-config=/path/to/php-config
38	make
39	sudo make install
40
41## ChangeLog
42
43A comprehensive list of changes can be obtained from the [ChangeLog](./CHANGELOG.md) and the list of [fixed CVEs](./CVE.md).
44
45## License
46
47ext-http is licensed under the 2-Clause-BSD license, which can be found in
48the accompanying [LICENSE](./LICENSE) file.
49
50## Contributing
51
52All forms of contribution are welcome! Please see the bundled
53[CONTRIBUTING](./CONTRIBUTING.md) note for the general principles followed.
54
55The list of past and current contributors is maintained in [THANKS](./THANKS).
56