├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Runner.php └── Runtime.php └── tests ├── RunnerTest.php ├── RuntimeTest.php └── function-mock.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [nyholm] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/frankenphp-symfony/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/frankenphp-symfony/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/frankenphp-symfony/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/frankenphp-symfony/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/frankenphp-symfony/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/frankenphp-symfony/HEAD/src/Runner.php -------------------------------------------------------------------------------- /src/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/frankenphp-symfony/HEAD/src/Runtime.php -------------------------------------------------------------------------------- /tests/RunnerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/frankenphp-symfony/HEAD/tests/RunnerTest.php -------------------------------------------------------------------------------- /tests/RuntimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/frankenphp-symfony/HEAD/tests/RuntimeTest.php -------------------------------------------------------------------------------- /tests/function-mock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-runtime/frankenphp-symfony/HEAD/tests/function-mock.php --------------------------------------------------------------------------------