├── .art └── banner.jpg ├── .gitignore ├── changelog.md ├── composer.json ├── composer.lock ├── license.md ├── phpunit.xml ├── readme.md ├── src └── Server.php └── tests ├── .gitkeep ├── Pest.php ├── ServerTest.php └── resources ├── .env.example ├── index.html ├── index.php └── router.php /.art/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/.art/banner.jpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | /vendor 3 | /node_modules 4 | .phpunit.result.cache -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/changelog.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/composer.lock -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/license.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/readme.md -------------------------------------------------------------------------------- /src/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/src/Server.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/ServerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/tests/ServerTest.php -------------------------------------------------------------------------------- /tests/resources/.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME="Server2" -------------------------------------------------------------------------------- /tests/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/tests/resources/index.html -------------------------------------------------------------------------------- /tests/resources/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/tests/resources/index.php -------------------------------------------------------------------------------- /tests/resources/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statix-php/server/HEAD/tests/resources/router.php --------------------------------------------------------------------------------