├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── assets └── template │ └── http │ ├── exception.php │ └── notFound.php ├── composer.json ├── phpunit.xml ├── src └── PHPixie │ ├── Framework.php │ └── Framework │ ├── Assets.php │ ├── Builder.php │ ├── Components.php │ ├── Configuration.php │ ├── Console.php │ ├── Context.php │ ├── Extensions.php │ ├── Extensions │ └── Template │ │ └── Extension │ │ ├── Debug.php │ │ └── RouteTranslator.php │ ├── HTTP.php │ ├── Processors.php │ └── Processors │ └── HTTP │ ├── ParseRoute.php │ └── Response │ ├── Exception.php │ ├── Normalize.php │ └── NotFound.php └── tests ├── PHPixie └── Tests │ ├── Framework │ ├── AssetsTest.php │ ├── BuilderTest.php │ ├── ComponentsTest.php │ ├── ContextTest.php │ ├── Extensions │ │ └── Template │ │ │ └── Extension │ │ │ ├── DebugTest.php │ │ │ └── RouteTranslatorTest.php │ ├── ExtensionsTest.php │ ├── HTTPTest.php │ ├── Processors │ │ └── HTTP │ │ │ ├── ParseRouteTest.php │ │ │ └── Response │ │ │ ├── ExceptionTest.php │ │ │ ├── NormalizeTest.php │ │ │ └── NotFoundTest.php │ └── ProcessorsTest.php │ └── FrameworkTest.php └── phpunit.php /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | languages: 2 | PHP: true 3 | exclude_paths: ["tests/*"] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/README.md -------------------------------------------------------------------------------- /assets/template/http/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/assets/template/http/exception.php -------------------------------------------------------------------------------- /assets/template/http/notFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/assets/template/http/notFound.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/PHPixie/Framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Assets.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Builder.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Components.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Configuration.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Console.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Context.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Extensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Extensions.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Extensions/Template/Extension/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Extensions/Template/Extension/Debug.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Extensions/Template/Extension/RouteTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Extensions/Template/Extension/RouteTranslator.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/HTTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/HTTP.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Processors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Processors.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Processors/HTTP/ParseRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Processors/HTTP/ParseRoute.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Processors/HTTP/Response/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Processors/HTTP/Response/Exception.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Processors/HTTP/Response/Normalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Processors/HTTP/Response/Normalize.php -------------------------------------------------------------------------------- /src/PHPixie/Framework/Processors/HTTP/Response/NotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/src/PHPixie/Framework/Processors/HTTP/Response/NotFound.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/AssetsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/AssetsTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/BuilderTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/ComponentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/ComponentsTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/ContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/ContextTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/Extensions/Template/Extension/DebugTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/Extensions/Template/Extension/DebugTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/Extensions/Template/Extension/RouteTranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/Extensions/Template/Extension/RouteTranslatorTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/ExtensionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/ExtensionsTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/HTTPTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/HTTPTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/Processors/HTTP/ParseRouteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/Processors/HTTP/ParseRouteTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/Processors/HTTP/Response/ExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/Processors/HTTP/Response/ExceptionTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/Processors/HTTP/Response/NormalizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/Processors/HTTP/Response/NormalizeTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/Processors/HTTP/Response/NotFoundTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/Processors/HTTP/Response/NotFoundTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/Framework/ProcessorsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/Framework/ProcessorsTest.php -------------------------------------------------------------------------------- /tests/PHPixie/Tests/FrameworkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/Framework/HEAD/tests/PHPixie/Tests/FrameworkTest.php -------------------------------------------------------------------------------- /tests/phpunit.php: -------------------------------------------------------------------------------- 1 |