├── LICENSE ├── README.md ├── composer.json ├── doc └── mvc.png └── src ├── App.php ├── Controller ├── AttributeInterface.php ├── AttributeTrait.php ├── BasicAuth.php ├── ControllerInterface.php ├── Error404.php ├── Error405.php └── RouteTrait.php ├── Emitter ├── EmitterInterface.php └── SapiEmitter.php ├── Exception ├── ControllerException.php ├── ExceptionInterface.php ├── InvalidConfigException.php └── ResponseException.php └── Response └── HaltResponse.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/composer.json -------------------------------------------------------------------------------- /doc/mvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/doc/mvc.png -------------------------------------------------------------------------------- /src/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/App.php -------------------------------------------------------------------------------- /src/Controller/AttributeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Controller/AttributeInterface.php -------------------------------------------------------------------------------- /src/Controller/AttributeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Controller/AttributeTrait.php -------------------------------------------------------------------------------- /src/Controller/BasicAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Controller/BasicAuth.php -------------------------------------------------------------------------------- /src/Controller/ControllerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Controller/ControllerInterface.php -------------------------------------------------------------------------------- /src/Controller/Error404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Controller/Error404.php -------------------------------------------------------------------------------- /src/Controller/Error405.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Controller/Error405.php -------------------------------------------------------------------------------- /src/Controller/RouteTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Controller/RouteTrait.php -------------------------------------------------------------------------------- /src/Emitter/EmitterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Emitter/EmitterInterface.php -------------------------------------------------------------------------------- /src/Emitter/SapiEmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Emitter/SapiEmitter.php -------------------------------------------------------------------------------- /src/Exception/ControllerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Exception/ControllerException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Exception/InvalidConfigException.php -------------------------------------------------------------------------------- /src/Exception/ResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Exception/ResponseException.php -------------------------------------------------------------------------------- /src/Response/HaltResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplemvc/framework/HEAD/src/Response/HaltResponse.php --------------------------------------------------------------------------------