├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── .idea └── icon.svg ├── .php-cs-fixer.dist.php ├── .phpstorm.meta.php ├── App.php ├── README.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 ├── ps-meta ├── rev └── setup ├── boot └── app.php ├── composer.json ├── config ├── .gitignore ├── anti-csrf.php ├── autoloader.php ├── cache.php ├── console.php ├── crypto.php ├── database.php ├── exceptions.php ├── language.php ├── locator.php ├── logger.php ├── mailer.php ├── request.php ├── response.php ├── router.php ├── routes.php ├── session.php ├── validation.php └── view.php ├── docker-compose.yml ├── documentation.md ├── extra ├── .gitignore ├── constants.php ├── helpers.php ├── init.php └── routes.php ├── guide ├── config │ ├── anti-csrf.rst │ ├── autoloader.rst │ ├── cache.rst │ ├── console.rst │ ├── crypto.rst │ ├── database.rst │ ├── exceptions.rst │ ├── index.rst │ ├── language.rst │ ├── locator.rst │ ├── logger.rst │ ├── mailer.rst │ ├── request.rst │ ├── response.rst │ ├── router.rst │ ├── routes.rst │ ├── session.rst │ ├── validation.rst │ └── view.rst ├── image.png └── index.rst ├── php-server.ini ├── phpdoc.dist.xml ├── phpmd.xml ├── phpstan.neon.dist ├── phpunit.xml.dist ├── preload.php ├── public └── index.php ├── storage ├── cache │ └── .gitignore ├── logs │ └── .gitignore ├── sessions │ └── .gitignore └── uploads │ └── .gitignore └── tests ├── AppTest.php ├── TestCase.php ├── app ├── Commands │ └── IndexTest.php ├── Controllers │ └── HomeTest.php └── Languages │ └── LanguagesTest.php └── extra └── RoutesTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.idea/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/.idea/icon.svg -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/.phpstorm.meta.php -------------------------------------------------------------------------------- /App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/App.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/README.md -------------------------------------------------------------------------------- /app/Commands/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/app/Commands/Index.php -------------------------------------------------------------------------------- /app/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/app/Controllers/Home.php -------------------------------------------------------------------------------- /app/Languages/en/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/app/Languages/en/home.php -------------------------------------------------------------------------------- /app/Languages/es/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/app/Languages/es/home.php -------------------------------------------------------------------------------- /app/Languages/pt-br/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/app/Languages/pt-br/home.php -------------------------------------------------------------------------------- /app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Views/_layouts/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/app/Views/_layouts/default.php -------------------------------------------------------------------------------- /app/Views/errors/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/app/Views/errors/404.php -------------------------------------------------------------------------------- /app/Views/home/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/app/Views/home/index.php -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/bin/console -------------------------------------------------------------------------------- /bin/ps-meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/bin/ps-meta -------------------------------------------------------------------------------- /bin/rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/bin/rev -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/bin/setup -------------------------------------------------------------------------------- /boot/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/boot/app.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/composer.json -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | _config.php 2 | -------------------------------------------------------------------------------- /config/anti-csrf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/anti-csrf.php -------------------------------------------------------------------------------- /config/autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/autoloader.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/console.php -------------------------------------------------------------------------------- /config/crypto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/crypto.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/database.php -------------------------------------------------------------------------------- /config/exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/exceptions.php -------------------------------------------------------------------------------- /config/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/language.php -------------------------------------------------------------------------------- /config/locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/locator.php -------------------------------------------------------------------------------- /config/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/logger.php -------------------------------------------------------------------------------- /config/mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/mailer.php -------------------------------------------------------------------------------- /config/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/request.php -------------------------------------------------------------------------------- /config/response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/response.php -------------------------------------------------------------------------------- /config/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/router.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/routes.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/session.php -------------------------------------------------------------------------------- /config/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/validation.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/config/view.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/documentation.md -------------------------------------------------------------------------------- /extra/.gitignore: -------------------------------------------------------------------------------- 1 | _extra.php 2 | -------------------------------------------------------------------------------- /extra/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/extra/constants.php -------------------------------------------------------------------------------- /extra/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/extra/helpers.php -------------------------------------------------------------------------------- /extra/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/extra/init.php -------------------------------------------------------------------------------- /extra/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/extra/routes.php -------------------------------------------------------------------------------- /guide/config/anti-csrf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/anti-csrf.rst -------------------------------------------------------------------------------- /guide/config/autoloader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/autoloader.rst -------------------------------------------------------------------------------- /guide/config/cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/cache.rst -------------------------------------------------------------------------------- /guide/config/console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/console.rst -------------------------------------------------------------------------------- /guide/config/crypto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/crypto.rst -------------------------------------------------------------------------------- /guide/config/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/database.rst -------------------------------------------------------------------------------- /guide/config/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/exceptions.rst -------------------------------------------------------------------------------- /guide/config/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/index.rst -------------------------------------------------------------------------------- /guide/config/language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/language.rst -------------------------------------------------------------------------------- /guide/config/locator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/locator.rst -------------------------------------------------------------------------------- /guide/config/logger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/logger.rst -------------------------------------------------------------------------------- /guide/config/mailer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/mailer.rst -------------------------------------------------------------------------------- /guide/config/request.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/request.rst -------------------------------------------------------------------------------- /guide/config/response.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/response.rst -------------------------------------------------------------------------------- /guide/config/router.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/router.rst -------------------------------------------------------------------------------- /guide/config/routes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/routes.rst -------------------------------------------------------------------------------- /guide/config/session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/session.rst -------------------------------------------------------------------------------- /guide/config/validation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/validation.rst -------------------------------------------------------------------------------- /guide/config/view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/config/view.rst -------------------------------------------------------------------------------- /guide/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/image.png -------------------------------------------------------------------------------- /guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/guide/index.rst -------------------------------------------------------------------------------- /php-server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/php-server.ini -------------------------------------------------------------------------------- /phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/phpdoc.dist.xml -------------------------------------------------------------------------------- /phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/phpmd.xml -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/preload.php -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/public/index.php -------------------------------------------------------------------------------- /storage/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/uploads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/AppTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/tests/AppTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/app/Commands/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/tests/app/Commands/IndexTest.php -------------------------------------------------------------------------------- /tests/app/Controllers/HomeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/tests/app/Controllers/HomeTest.php -------------------------------------------------------------------------------- /tests/app/Languages/LanguagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/tests/app/Languages/LanguagesTest.php -------------------------------------------------------------------------------- /tests/extra/RoutesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplus-developer/app/HEAD/tests/extra/RoutesTest.php --------------------------------------------------------------------------------