├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── ApplicationWrapper.php └── test └── ApplicationWrapperTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/ExpressiveAdapter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/ExpressiveAdapter/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/ExpressiveAdapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/ExpressiveAdapter/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/ExpressiveAdapter/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/ExpressiveAdapter/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/ApplicationWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/ExpressiveAdapter/HEAD/src/ApplicationWrapper.php -------------------------------------------------------------------------------- /test/ApplicationWrapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPFastCGI/ExpressiveAdapter/HEAD/test/ApplicationWrapperTest.php --------------------------------------------------------------------------------