gitextract_403vn0ul/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .gitlab-ci.yml ├── .htaccess ├── .php-cs-fixer.dist.php ├── App.php ├── README.md ├── SECURITY.md ├── app/ │ ├── Commands/ │ │ └── Index.php │ ├── Controllers/ │ │ └── Home.php │ ├── Languages/ │ │ ├── en/ │ │ │ └── home.php │ │ ├── es/ │ │ │ └── home.php │ │ └── pt-br/ │ │ └── home.php │ ├── Models/ │ │ └── .gitkeep │ └── Views/ │ ├── _layouts/ │ │ └── default.php │ ├── errors/ │ │ └── 404.php │ └── home/ │ └── index.php ├── bin/ │ └── console ├── boot/ │ ├── app.php │ ├── constants.php │ ├── helpers.php │ ├── init.php │ └── routes.php ├── composer.json ├── config/ │ ├── antiCsrf.php │ ├── autoloader.php │ ├── cache.php │ ├── console.php │ ├── database.php │ ├── debugger.php │ ├── exceptionHandler.php │ ├── language.php │ ├── locator.php │ ├── logger.php │ ├── mailer.php │ ├── migrator.php │ ├── request.php │ ├── response.php │ ├── router.php │ ├── session.php │ ├── validation.php │ └── view.php ├── docker-compose.yml ├── guide/ │ └── index.rst ├── php-server.ini ├── phpdoc.dist.xml ├── phpmd.xml ├── phpstan.neon.dist ├── phpunit.xml.dist ├── preload.php ├── public/ │ ├── .htaccess │ ├── index.php │ └── robots.txt ├── storage/ │ ├── cache/ │ │ └── .gitignore │ ├── logs/ │ │ └── .gitignore │ ├── sessions/ │ │ └── .gitignore │ └── uploads/ │ └── .gitignore └── tests/ ├── AppTest.php ├── TestCase.php ├── app/ │ ├── Commands/ │ │ └── IndexTest.php │ ├── Controllers/ │ │ └── HomeTest.php │ └── Languages/ │ └── LanguagesTest.php ├── bin/ │ └── ConsoleTest.php ├── boot/ │ ├── AppTest.php │ ├── ConstantsTest.php │ ├── HelpersTest.php │ ├── InitTest.php │ └── RoutesTest.php ├── config/ │ └── ConfigsTest.php ├── public/ │ └── IndexTest.php └── support/ ├── Helpers/ │ └── tests.php ├── Models/ │ └── UsersModel.php └── routes.php