├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── functions.php └── tests └── SendTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | /build/ 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/http-interop/response-sender/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/http-interop/response-sender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/http-interop/response-sender/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/http-interop/response-sender/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/http-interop/response-sender/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/http-interop/response-sender/HEAD/src/functions.php -------------------------------------------------------------------------------- /tests/SendTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/http-interop/response-sender/HEAD/tests/SendTest.php --------------------------------------------------------------------------------