├── CHANGELOG.md ├── Command ├── ServerLogCommand.php ├── ServerRunCommand.php ├── ServerStartCommand.php ├── ServerStatusCommand.php └── ServerStopCommand.php ├── DependencyInjection └── WebServerExtension.php ├── LICENSE ├── README.md ├── Resources ├── config │ └── webserver.xml └── router.php ├── WebServer.php ├── WebServerBundle.php ├── WebServerConfig.php └── composer.json /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Command/ServerLogCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/Command/ServerLogCommand.php -------------------------------------------------------------------------------- /Command/ServerRunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/Command/ServerRunCommand.php -------------------------------------------------------------------------------- /Command/ServerStartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/Command/ServerStartCommand.php -------------------------------------------------------------------------------- /Command/ServerStatusCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/Command/ServerStatusCommand.php -------------------------------------------------------------------------------- /Command/ServerStopCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/Command/ServerStopCommand.php -------------------------------------------------------------------------------- /DependencyInjection/WebServerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/DependencyInjection/WebServerExtension.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/webserver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/Resources/config/webserver.xml -------------------------------------------------------------------------------- /Resources/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/Resources/router.php -------------------------------------------------------------------------------- /WebServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/WebServer.php -------------------------------------------------------------------------------- /WebServerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/WebServerBundle.php -------------------------------------------------------------------------------- /WebServerConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/WebServerConfig.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/web-server-bundle/HEAD/composer.json --------------------------------------------------------------------------------