├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── CallableRunner.php ├── LaravelRunner.php ├── Runtime.php ├── ServerFactory.php ├── SymfonyHttpBridge.php └── SymfonyRunner.php └── tests ├── E2E ├── StaticFileHandlerTest.php ├── runtime.php └── static │ └── file.txt └── Unit ├── CallableRunnerTest.php ├── LaravelRunnerTest.php ├── RuntimeTest.php ├── ServerFactoryTest.php ├── SymfonyHttpBridgeTest.php └── SymfonyRunnerTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [nyholm] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /phpunit.xml 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/CallableRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/src/CallableRunner.php -------------------------------------------------------------------------------- /src/LaravelRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/src/LaravelRunner.php -------------------------------------------------------------------------------- /src/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/src/Runtime.php -------------------------------------------------------------------------------- /src/ServerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/src/ServerFactory.php -------------------------------------------------------------------------------- /src/SymfonyHttpBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/src/SymfonyHttpBridge.php -------------------------------------------------------------------------------- /src/SymfonyRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/src/SymfonyRunner.php -------------------------------------------------------------------------------- /tests/E2E/StaticFileHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/tests/E2E/StaticFileHandlerTest.php -------------------------------------------------------------------------------- /tests/E2E/runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/tests/E2E/runtime.php -------------------------------------------------------------------------------- /tests/E2E/static/file.txt: -------------------------------------------------------------------------------- 1 | Static file 2 | -------------------------------------------------------------------------------- /tests/Unit/CallableRunnerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/tests/Unit/CallableRunnerTest.php -------------------------------------------------------------------------------- /tests/Unit/LaravelRunnerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/tests/Unit/LaravelRunnerTest.php -------------------------------------------------------------------------------- /tests/Unit/RuntimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/tests/Unit/RuntimeTest.php -------------------------------------------------------------------------------- /tests/Unit/ServerFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/tests/Unit/ServerFactoryTest.php -------------------------------------------------------------------------------- /tests/Unit/SymfonyHttpBridgeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/tests/Unit/SymfonyHttpBridgeTest.php -------------------------------------------------------------------------------- /tests/Unit/SymfonyRunnerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/swoole/HEAD/tests/Unit/SymfonyRunnerTest.php --------------------------------------------------------------------------------