├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cli ├── cache-classmap ├── cache-config ├── make-test └── server ├── composer.json ├── config ├── default.php └── test.php ├── meta ├── authors.csv ├── changes.txt ├── description.txt ├── keywords.csv ├── require.csv └── summary.txt ├── scripts ├── router.php └── skelgen-bootstrap.php ├── src.php ├── src └── Aura │ └── Framework │ ├── Autoload │ └── Loader.php │ ├── Bootstrap │ ├── Cli.php │ ├── Factory.php │ └── Web.php │ ├── Cli │ ├── AbstractCommand.php │ ├── CacheClassmap │ │ └── Command.php │ ├── CacheConfig │ │ └── Command.php │ ├── Factory.php │ └── Server │ │ └── Command.php │ ├── Exception.php │ ├── Exception │ └── NoClassForController.php │ ├── Inflect.php │ ├── Input │ └── Filter.php │ ├── Intl │ ├── Translator.php │ └── TranslatorFactory.php │ ├── Signal │ └── Manager.php │ ├── System.php │ ├── Test │ └── WiringAssertionsTrait.php │ ├── View │ └── Helper │ │ ├── AssetHref.php │ │ └── Route.php │ └── Web │ ├── Asset │ └── Page.php │ ├── Controller │ ├── AbstractPage.php │ ├── Factory.php │ └── Front.php │ ├── NotFound │ └── Page.php │ └── Renderer │ └── AuraViewTwoStep.php └── tests ├── Aura └── Framework │ ├── Bootstrap │ └── FactoryTest.php │ ├── Cli │ ├── AbstractCommandTest.php │ └── MockCommand.php │ ├── InflectTest.php │ ├── Mock │ ├── Bootstrap.php │ ├── Controller.php │ ├── NotFound.php │ ├── Page.php │ ├── layouts │ │ └── default.php │ └── views │ │ └── index.php │ ├── SystemTest.php │ ├── View │ └── Helper │ │ └── RouteTest.php │ └── Web │ ├── Controller │ ├── AbstractPageTest.php │ ├── FactoryTest.php │ └── FrontTest.php │ ├── NotFound │ └── PageTest.php │ └── Renderer │ └── AuraViewTwoStepTest.php ├── WiringTest.php ├── bootstrap.php └── phpunit.xml /.gitignore: -------------------------------------------------------------------------------- 1 | tests/tmp -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/README.md -------------------------------------------------------------------------------- /cli/cache-classmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/cli/cache-classmap -------------------------------------------------------------------------------- /cli/cache-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/cli/cache-config -------------------------------------------------------------------------------- /cli/make-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/cli/make-test -------------------------------------------------------------------------------- /cli/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/cli/server -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/composer.json -------------------------------------------------------------------------------- /config/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/config/default.php -------------------------------------------------------------------------------- /config/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/config/test.php -------------------------------------------------------------------------------- /meta/authors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/meta/authors.csv -------------------------------------------------------------------------------- /meta/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/meta/changes.txt -------------------------------------------------------------------------------- /meta/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/meta/description.txt -------------------------------------------------------------------------------- /meta/keywords.csv: -------------------------------------------------------------------------------- 1 | framework -------------------------------------------------------------------------------- /meta/require.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/meta/require.csv -------------------------------------------------------------------------------- /meta/summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/meta/summary.txt -------------------------------------------------------------------------------- /scripts/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/scripts/router.php -------------------------------------------------------------------------------- /scripts/skelgen-bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/scripts/skelgen-bootstrap.php -------------------------------------------------------------------------------- /src.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src.php -------------------------------------------------------------------------------- /src/Aura/Framework/Autoload/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Autoload/Loader.php -------------------------------------------------------------------------------- /src/Aura/Framework/Bootstrap/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Bootstrap/Cli.php -------------------------------------------------------------------------------- /src/Aura/Framework/Bootstrap/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Bootstrap/Factory.php -------------------------------------------------------------------------------- /src/Aura/Framework/Bootstrap/Web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Bootstrap/Web.php -------------------------------------------------------------------------------- /src/Aura/Framework/Cli/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Cli/AbstractCommand.php -------------------------------------------------------------------------------- /src/Aura/Framework/Cli/CacheClassmap/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Cli/CacheClassmap/Command.php -------------------------------------------------------------------------------- /src/Aura/Framework/Cli/CacheConfig/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Cli/CacheConfig/Command.php -------------------------------------------------------------------------------- /src/Aura/Framework/Cli/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Cli/Factory.php -------------------------------------------------------------------------------- /src/Aura/Framework/Cli/Server/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Cli/Server/Command.php -------------------------------------------------------------------------------- /src/Aura/Framework/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Exception.php -------------------------------------------------------------------------------- /src/Aura/Framework/Exception/NoClassForController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Exception/NoClassForController.php -------------------------------------------------------------------------------- /src/Aura/Framework/Inflect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Inflect.php -------------------------------------------------------------------------------- /src/Aura/Framework/Input/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Input/Filter.php -------------------------------------------------------------------------------- /src/Aura/Framework/Intl/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Intl/Translator.php -------------------------------------------------------------------------------- /src/Aura/Framework/Intl/TranslatorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Intl/TranslatorFactory.php -------------------------------------------------------------------------------- /src/Aura/Framework/Signal/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Signal/Manager.php -------------------------------------------------------------------------------- /src/Aura/Framework/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/System.php -------------------------------------------------------------------------------- /src/Aura/Framework/Test/WiringAssertionsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Test/WiringAssertionsTrait.php -------------------------------------------------------------------------------- /src/Aura/Framework/View/Helper/AssetHref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/View/Helper/AssetHref.php -------------------------------------------------------------------------------- /src/Aura/Framework/View/Helper/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/View/Helper/Route.php -------------------------------------------------------------------------------- /src/Aura/Framework/Web/Asset/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Web/Asset/Page.php -------------------------------------------------------------------------------- /src/Aura/Framework/Web/Controller/AbstractPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Web/Controller/AbstractPage.php -------------------------------------------------------------------------------- /src/Aura/Framework/Web/Controller/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Web/Controller/Factory.php -------------------------------------------------------------------------------- /src/Aura/Framework/Web/Controller/Front.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Web/Controller/Front.php -------------------------------------------------------------------------------- /src/Aura/Framework/Web/NotFound/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Web/NotFound/Page.php -------------------------------------------------------------------------------- /src/Aura/Framework/Web/Renderer/AuraViewTwoStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/src/Aura/Framework/Web/Renderer/AuraViewTwoStep.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Bootstrap/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Bootstrap/FactoryTest.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Cli/AbstractCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Cli/AbstractCommandTest.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Cli/MockCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Cli/MockCommand.php -------------------------------------------------------------------------------- /tests/Aura/Framework/InflectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/InflectTest.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Mock/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Mock/Bootstrap.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Mock/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Mock/Controller.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Mock/NotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Mock/NotFound.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Mock/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Mock/Page.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Mock/layouts/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Mock/layouts/default.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Mock/views/index.php: -------------------------------------------------------------------------------- 1 | mock view -------------------------------------------------------------------------------- /tests/Aura/Framework/SystemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/SystemTest.php -------------------------------------------------------------------------------- /tests/Aura/Framework/View/Helper/RouteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/View/Helper/RouteTest.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Web/Controller/AbstractPageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Web/Controller/AbstractPageTest.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Web/Controller/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Web/Controller/FactoryTest.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Web/Controller/FrontTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Web/Controller/FrontTest.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Web/NotFound/PageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Web/NotFound/PageTest.php -------------------------------------------------------------------------------- /tests/Aura/Framework/Web/Renderer/AuraViewTwoStepTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/Aura/Framework/Web/Renderer/AuraViewTwoStepTest.php -------------------------------------------------------------------------------- /tests/WiringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/WiringTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auraphp/Aura.Framework/HEAD/tests/phpunit.xml --------------------------------------------------------------------------------