├── README ├── .gitattributes ├── .travis.yml └── .gitignore /README: -------------------------------------------------------------------------------- 1 | This repo has moved to https://github.com/m6w6/ext-http 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | package.xml merge=touch 2 | php_http.h merge=touch 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | 7 | before_script: phpize 8 | 9 | script: ./configure && make && NO_INTERACTION=1 REPORT_EXIT_STATUS=1 TEST_PHP_DETAILED=1 make test 10 | 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cproject 2 | .deps 3 | .libs/ 4 | .project 5 | Makefile 6 | Makefile.fragments 7 | Makefile.global 8 | Makefile.objects 9 | acinclude.m4 10 | aclocal.m4 11 | autom4te.cache/ 12 | build/ 13 | config.guess 14 | config.h 15 | config.h.in 16 | config.log 17 | config.nice 18 | config.status 19 | config.sub 20 | configure 21 | configure.in 22 | http.la 23 | install-sh 24 | lcov_data 25 | libtool 26 | ltmain.sh 27 | missing 28 | mkinstalldirs 29 | modules/ 30 | pecl_http-*.tgz 31 | *.lo 32 | *.o 33 | run-tests.php 34 | tests/*.diff 35 | tests/*.exp 36 | tests/*.log 37 | tests/*.out 38 | tests/*.php 39 | tests/*.sh 40 | lcov_data 41 | *~ 42 | *.phar 43 | --------------------------------------------------------------------------------