├── .codeclimate.yml ├── .editorconfig ├── .pullapprove.yml ├── .travis.php.ini ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Action.php ├── Application.php ├── Configuration ├── AurynConfiguration.php ├── DiactorosConfiguration.php ├── EnvConfiguration.php ├── MonologConfiguration.php ├── PayloadConfiguration.php ├── PlatesConfiguration.php ├── PlatesResponderConfiguration.php ├── RedisConfiguration.php ├── RelayConfiguration.php └── WhoopsConfiguration.php ├── Directory.php ├── Exception ├── DirectoryException.php ├── EnvException.php ├── FormatterException.php ├── HttpException.php ├── MiddlewareException.php └── ResponderException.php ├── Formatter ├── FormatterInterface.php ├── HtmlFormatter.php ├── JsonFormatter.php └── PlatesFormatter.php ├── Handler ├── ActionHandler.php ├── ContentHandler.php ├── DispatchHandler.php ├── ExceptionHandler.php ├── ExceptionHandlerPreferences.php ├── FormContentHandler.php └── JsonContentHandler.php ├── Input.php ├── Middleware └── MiddlewareSet.php ├── Payload.php ├── Resolver ├── AurynResolver.php └── ResolverTrait.php └── Responder ├── ChainedResponder.php ├── FormattedResponder.php ├── RedirectResponder.php └── StatusResponder.php /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | languages: 2 | PHP: true 3 | exclude_paths: 4 | - tests/* 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/.editorconfig -------------------------------------------------------------------------------- /.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/.pullapprove.yml -------------------------------------------------------------------------------- /.travis.php.ini: -------------------------------------------------------------------------------- 1 | extension = redis.so 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/composer.json -------------------------------------------------------------------------------- /src/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Action.php -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Configuration/AurynConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Configuration/AurynConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/DiactorosConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Configuration/DiactorosConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/EnvConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Configuration/EnvConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/MonologConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Configuration/MonologConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/PayloadConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Configuration/PayloadConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/PlatesConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Configuration/PlatesConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/PlatesResponderConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Configuration/PlatesResponderConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/RedisConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Configuration/RedisConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/RelayConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Configuration/RelayConfiguration.php -------------------------------------------------------------------------------- /src/Configuration/WhoopsConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Configuration/WhoopsConfiguration.php -------------------------------------------------------------------------------- /src/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Directory.php -------------------------------------------------------------------------------- /src/Exception/DirectoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Exception/DirectoryException.php -------------------------------------------------------------------------------- /src/Exception/EnvException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Exception/EnvException.php -------------------------------------------------------------------------------- /src/Exception/FormatterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Exception/FormatterException.php -------------------------------------------------------------------------------- /src/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Exception/HttpException.php -------------------------------------------------------------------------------- /src/Exception/MiddlewareException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Exception/MiddlewareException.php -------------------------------------------------------------------------------- /src/Exception/ResponderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Exception/ResponderException.php -------------------------------------------------------------------------------- /src/Formatter/FormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Formatter/FormatterInterface.php -------------------------------------------------------------------------------- /src/Formatter/HtmlFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Formatter/HtmlFormatter.php -------------------------------------------------------------------------------- /src/Formatter/JsonFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Formatter/JsonFormatter.php -------------------------------------------------------------------------------- /src/Formatter/PlatesFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Formatter/PlatesFormatter.php -------------------------------------------------------------------------------- /src/Handler/ActionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Handler/ActionHandler.php -------------------------------------------------------------------------------- /src/Handler/ContentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Handler/ContentHandler.php -------------------------------------------------------------------------------- /src/Handler/DispatchHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Handler/DispatchHandler.php -------------------------------------------------------------------------------- /src/Handler/ExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Handler/ExceptionHandler.php -------------------------------------------------------------------------------- /src/Handler/ExceptionHandlerPreferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Handler/ExceptionHandlerPreferences.php -------------------------------------------------------------------------------- /src/Handler/FormContentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Handler/FormContentHandler.php -------------------------------------------------------------------------------- /src/Handler/JsonContentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Handler/JsonContentHandler.php -------------------------------------------------------------------------------- /src/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Input.php -------------------------------------------------------------------------------- /src/Middleware/MiddlewareSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Middleware/MiddlewareSet.php -------------------------------------------------------------------------------- /src/Payload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Payload.php -------------------------------------------------------------------------------- /src/Resolver/AurynResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Resolver/AurynResolver.php -------------------------------------------------------------------------------- /src/Resolver/ResolverTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Resolver/ResolverTrait.php -------------------------------------------------------------------------------- /src/Responder/ChainedResponder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Responder/ChainedResponder.php -------------------------------------------------------------------------------- /src/Responder/FormattedResponder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Responder/FormattedResponder.php -------------------------------------------------------------------------------- /src/Responder/RedirectResponder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Responder/RedirectResponder.php -------------------------------------------------------------------------------- /src/Responder/StatusResponder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/equip/framework/HEAD/src/Responder/StatusResponder.php --------------------------------------------------------------------------------