Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
autoconf/pecl/ | H | 03-May-2022 | - | 723 | 698 | |
scripts/ | H | 03-May-2022 | - | 744 | 656 | |
src/ | H | 03-May-2022 | - | 25,656 | 19,463 | |
tests/ | H | 03-May-2022 | - | 10,827 | 9,616 | |
AUTHORS | H A D | 13-Jan-2021 | 31 | 2 | 1 | |
BUGS | H A D | 13-Jan-2021 | 1.1 KiB | 26 | 23 | |
CHANGELOG.md | H A D | 13-Jan-2021 | 11.3 KiB | 190 | 157 | |
CONTRIBUTING.md | H A D | 13-Jan-2021 | 1.9 KiB | 40 | 31 | |
CREDITS | H A D | 13-Jan-2021 | 39 | 3 | 2 | |
CVE.md | H A D | 13-Jan-2021 | 1,007 | 9 | 7 | |
LICENSE | H A D | 13-Jan-2021 | 1.3 KiB | 24 | 19 | |
Makefile.frag | H A D | 13-Jan-2021 | 432 | 17 | 10 | |
README.md | H A D | 13-Jan-2021 | 1.6 KiB | 56 | 33 | |
THANKS | H A D | 13-Jan-2021 | 638 | 16 | 14 | |
TODO | H A D | 13-Jan-2021 | 225 | 4 | 4 | |
config.m4 | H A D | 13-Jan-2021 | 144 | 6 | 4 | |
config.w32 | H A D | 13-Jan-2021 | 5.4 KiB | 164 | 139 | |
config9.m4 | H A D | 13-Jan-2021 | 7.8 KiB | 215 | 191 | |
php_http.h | H A D | 13-Jan-2021 | 1 KiB | 33 | 7 |
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