├── LICENSE ├── application ├── App │ ├── ContainerFactory.php │ ├── Controllers │ │ ├── AbstractController.php │ │ ├── AbstractTwigController.php │ │ ├── ExceptionDemoController.php │ │ ├── HelloController.php │ │ └── HomeController.php │ └── Preferences.php ├── config │ ├── container-controllers.php │ └── container-definitions.php └── templates │ ├── hello.twig │ ├── home.twig │ └── html.twig ├── cache └── README.md ├── composer.json ├── logs └── README.md ├── phpunit.xml.dist ├── public ├── .htaccess └── index.php └── tests ├── ContainerFactoryTest.php ├── Controllers ├── ExceptionDemoControllerTest.php ├── HelloControllerTest.php └── HomeControllerTest.php ├── PreferencesTest.php ├── TestCase.php └── bootstrap.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/LICENSE -------------------------------------------------------------------------------- /application/App/ContainerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/App/ContainerFactory.php -------------------------------------------------------------------------------- /application/App/Controllers/AbstractController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/App/Controllers/AbstractController.php -------------------------------------------------------------------------------- /application/App/Controllers/AbstractTwigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/App/Controllers/AbstractTwigController.php -------------------------------------------------------------------------------- /application/App/Controllers/ExceptionDemoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/App/Controllers/ExceptionDemoController.php -------------------------------------------------------------------------------- /application/App/Controllers/HelloController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/App/Controllers/HelloController.php -------------------------------------------------------------------------------- /application/App/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/App/Controllers/HomeController.php -------------------------------------------------------------------------------- /application/App/Preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/App/Preferences.php -------------------------------------------------------------------------------- /application/config/container-controllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/config/container-controllers.php -------------------------------------------------------------------------------- /application/config/container-definitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/config/container-definitions.php -------------------------------------------------------------------------------- /application/templates/hello.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/templates/hello.twig -------------------------------------------------------------------------------- /application/templates/home.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/templates/home.twig -------------------------------------------------------------------------------- /application/templates/html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/application/templates/html.twig -------------------------------------------------------------------------------- /cache/README.md: -------------------------------------------------------------------------------- 1 | This directory would contain cache files. 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/composer.json -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- 1 | This directory would contain log files. 2 | -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/public/index.php -------------------------------------------------------------------------------- /tests/ContainerFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/tests/ContainerFactoryTest.php -------------------------------------------------------------------------------- /tests/Controllers/ExceptionDemoControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/tests/Controllers/ExceptionDemoControllerTest.php -------------------------------------------------------------------------------- /tests/Controllers/HelloControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/tests/Controllers/HelloControllerTest.php -------------------------------------------------------------------------------- /tests/Controllers/HomeControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/tests/Controllers/HomeControllerTest.php -------------------------------------------------------------------------------- /tests/PreferencesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/tests/PreferencesTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriansuter/Slim4-Skeleton/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |