├── LICENSE ├── README.md ├── config.m4 ├── fastcgi.c ├── php_fastcgi.h └── tests ├── fastcgi_01_ini.phpt ├── fastcgi_02_class_signature.phpt ├── fastcgi_03_interface_signature.phpt └── fastcgi_04_implements.phpt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/php5-fastcgi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/php5-fastcgi/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/php5-fastcgi/HEAD/config.m4 -------------------------------------------------------------------------------- /fastcgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/php5-fastcgi/HEAD/fastcgi.c -------------------------------------------------------------------------------- /php_fastcgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/php5-fastcgi/HEAD/php_fastcgi.h -------------------------------------------------------------------------------- /tests/fastcgi_01_ini.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/php5-fastcgi/HEAD/tests/fastcgi_01_ini.phpt -------------------------------------------------------------------------------- /tests/fastcgi_02_class_signature.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/php5-fastcgi/HEAD/tests/fastcgi_02_class_signature.phpt -------------------------------------------------------------------------------- /tests/fastcgi_03_interface_signature.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/php5-fastcgi/HEAD/tests/fastcgi_03_interface_signature.phpt -------------------------------------------------------------------------------- /tests/fastcgi_04_implements.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/php5-fastcgi/HEAD/tests/fastcgi_04_implements.phpt --------------------------------------------------------------------------------