├── .env.example ├── .github ├── FUNDING.yml └── workflows │ └── php.yml ├── .gitignore ├── .htaccess ├── CONTRIBUTING.md ├── LICENSE.MD ├── README.md ├── SECURITY.md ├── apps ├── .htaccess ├── api │ ├── api_lokasi_indonesia.php │ ├── api_management_user.php │ └── readme.md ├── config │ ├── autoload.php │ ├── config.php │ ├── constant.php │ ├── database.php │ ├── debug.php │ ├── email.php │ ├── functions.php │ ├── migrations.php │ ├── session.php │ ├── timezone.php │ └── variabel.php ├── controllers │ ├── Welcome.php │ └── email │ │ └── mailer.php ├── core │ ├── API_Handling.php │ ├── Autoload.php │ ├── Controller.php │ ├── Database.php │ ├── Error_Handling.php │ ├── Request.php │ ├── Routes.php │ └── Security.php ├── error │ ├── Error_404.php │ ├── Error_Message.php │ └── pages │ │ ├── error_404_v1.php │ │ ├── error_404_v2.php │ │ ├── error_404_v3.php │ │ └── error_message.php ├── index.html ├── init.php ├── libraries │ ├── Agent.php │ ├── office.php │ └── template.php ├── middleware │ └── readme.md ├── models │ └── User_model.php ├── routes │ ├── Api.php │ ├── Web.php │ └── mail.php └── views │ ├── Welcome.php │ ├── email │ ├── confirmation.php │ └── password_reset.php │ └── markdown │ └── example.md ├── boostrap.php ├── codeception.yml ├── composer.json ├── composer.lock ├── database ├── .htaccess ├── cheatsheet-phinx.md ├── cheatsheet_mysql.md ├── index.html ├── migrations │ ├── 20210518181405_user.php │ └── index.html └── seeds │ ├── MyNewSeeder.php │ └── index.html ├── index.php ├── nagara ├── public ├── css │ ├── fontfamily.css │ ├── index.html │ ├── style.min.css │ └── style.min.css.map ├── image │ ├── ico │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── index.html │ │ └── site.webmanifest │ └── index.html ├── index.php ├── js │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ └── index.html └── site.webmanifest ├── storage ├── .htaccess ├── csv │ └── index.html ├── doc │ └── index.html ├── img │ └── index.html ├── index.html └── pdf │ └── index.html ├── system ├── .htaccess ├── _init.php ├── commands │ ├── ClearcacheCommand.php │ ├── ServerCommand.php │ ├── TestCommand.php │ ├── about │ │ ├── AuthorCommand.php │ │ └── DeskriptionCommand.php │ ├── generate │ │ ├── CopyEnvirotmentCommand.php │ │ └── EnvirotmentCommand.php │ ├── make │ │ ├── MakeControllerCommand.php │ │ ├── MakeLibrariesCommand.php │ │ ├── MakeModelsCommands.php │ │ └── MakeViewCommand.php │ ├── migration │ │ ├── MakeMigrationCommand.php │ │ ├── MakeSeedMigrationCommand.php │ │ ├── MigrationCommand.php │ │ ├── MigrationHelpCommand.php │ │ ├── RoolbackMigrationCommand.php │ │ └── SeedRunMigrationCommand.php │ └── unit-test │ │ ├── UnitTestBootsrapCommnad.php │ │ ├── UnitTestBuildCommnad.php │ │ ├── UnitTestRunCommand.php │ │ └── UnitTestScenenarioCommand.php ├── config │ ├── autoload.php │ ├── config.php │ ├── constant.php │ ├── function.php │ ├── header.php │ └── iniset.php ├── defaults │ ├── controller │ │ └── BasicController.stubs │ ├── database │ │ └── BasicDatabase.stubs │ ├── libraries │ │ └── BasicLibraries.stubs │ ├── models │ │ └── BasicModels.stubs │ └── views │ │ └── BasicView.stubs ├── error │ ├── _500_error.html │ ├── _maintenance.html │ ├── _warning_development.html │ └── _warning_local.html ├── filesystem │ ├── FileSystem.php │ └── Storage.php ├── index.html ├── mail │ ├── Mailer.php │ └── html │ │ └── basic_template.php └── readme.md ├── temp ├── index.html └── readme.md └── tests ├── _data ├── .gitkeep └── scenarios │ └── acceptance │ ├── Signin.sign_In_Successfully.txt │ └── Signin.try_To_Test.txt ├── _output └── .gitignore ├── _support ├── AcceptanceTester.php ├── FunctionalTester.php ├── Helper │ ├── Acceptance.php │ ├── Functional.php │ └── Unit.php ├── UnitTester.php └── _generated │ └── .gitignore ├── acceptance.suite.yml ├── acceptance └── SigninCest.php ├── functional.suite.yml └── unit.suite.yml /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/.htaccess -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/.htaccess -------------------------------------------------------------------------------- /apps/api/api_lokasi_indonesia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/api/api_lokasi_indonesia.php -------------------------------------------------------------------------------- /apps/api/api_management_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/api/api_management_user.php -------------------------------------------------------------------------------- /apps/api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/api/readme.md -------------------------------------------------------------------------------- /apps/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/autoload.php -------------------------------------------------------------------------------- /apps/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/config.php -------------------------------------------------------------------------------- /apps/config/constant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/constant.php -------------------------------------------------------------------------------- /apps/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/database.php -------------------------------------------------------------------------------- /apps/config/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/debug.php -------------------------------------------------------------------------------- /apps/config/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/email.php -------------------------------------------------------------------------------- /apps/config/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/functions.php -------------------------------------------------------------------------------- /apps/config/migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/migrations.php -------------------------------------------------------------------------------- /apps/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/session.php -------------------------------------------------------------------------------- /apps/config/timezone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/timezone.php -------------------------------------------------------------------------------- /apps/config/variabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/config/variabel.php -------------------------------------------------------------------------------- /apps/controllers/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/controllers/Welcome.php -------------------------------------------------------------------------------- /apps/controllers/email/mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/controllers/email/mailer.php -------------------------------------------------------------------------------- /apps/core/API_Handling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/core/API_Handling.php -------------------------------------------------------------------------------- /apps/core/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/core/Autoload.php -------------------------------------------------------------------------------- /apps/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/core/Controller.php -------------------------------------------------------------------------------- /apps/core/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/core/Database.php -------------------------------------------------------------------------------- /apps/core/Error_Handling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/core/Error_Handling.php -------------------------------------------------------------------------------- /apps/core/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/core/Request.php -------------------------------------------------------------------------------- /apps/core/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/core/Routes.php -------------------------------------------------------------------------------- /apps/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/core/Security.php -------------------------------------------------------------------------------- /apps/error/Error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/error/Error_404.php -------------------------------------------------------------------------------- /apps/error/Error_Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/error/Error_Message.php -------------------------------------------------------------------------------- /apps/error/pages/error_404_v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/error/pages/error_404_v1.php -------------------------------------------------------------------------------- /apps/error/pages/error_404_v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/error/pages/error_404_v2.php -------------------------------------------------------------------------------- /apps/error/pages/error_404_v3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/error/pages/error_404_v3.php -------------------------------------------------------------------------------- /apps/error/pages/error_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/error/pages/error_message.php -------------------------------------------------------------------------------- /apps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/index.html -------------------------------------------------------------------------------- /apps/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/init.php -------------------------------------------------------------------------------- /apps/libraries/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/libraries/Agent.php -------------------------------------------------------------------------------- /apps/libraries/office.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/libraries/office.php -------------------------------------------------------------------------------- /apps/libraries/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/libraries/template.php -------------------------------------------------------------------------------- /apps/middleware/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/middleware/readme.md -------------------------------------------------------------------------------- /apps/models/User_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/models/User_model.php -------------------------------------------------------------------------------- /apps/routes/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/routes/Api.php -------------------------------------------------------------------------------- /apps/routes/Web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/routes/Web.php -------------------------------------------------------------------------------- /apps/routes/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/routes/mail.php -------------------------------------------------------------------------------- /apps/views/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/views/Welcome.php -------------------------------------------------------------------------------- /apps/views/email/confirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/views/email/confirmation.php -------------------------------------------------------------------------------- /apps/views/email/password_reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/apps/views/email/password_reset.php -------------------------------------------------------------------------------- /apps/views/markdown/example.md: -------------------------------------------------------------------------------- 1 | ### this is example 2 | 3 |
markdown file basic
4 | -------------------------------------------------------------------------------- /boostrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/boostrap.php -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/composer.lock -------------------------------------------------------------------------------- /database/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /database/cheatsheet-phinx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/database/cheatsheet-phinx.md -------------------------------------------------------------------------------- /database/cheatsheet_mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/database/cheatsheet_mysql.md -------------------------------------------------------------------------------- /database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/database/index.html -------------------------------------------------------------------------------- /database/migrations/20210518181405_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/database/migrations/20210518181405_user.php -------------------------------------------------------------------------------- /database/migrations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/database/migrations/index.html -------------------------------------------------------------------------------- /database/seeds/MyNewSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/database/seeds/MyNewSeeder.php -------------------------------------------------------------------------------- /database/seeds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/database/seeds/index.html -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/index.php -------------------------------------------------------------------------------- /nagara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/nagara -------------------------------------------------------------------------------- /public/css/fontfamily.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/css/fontfamily.css -------------------------------------------------------------------------------- /public/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/css/index.html -------------------------------------------------------------------------------- /public/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/css/style.min.css -------------------------------------------------------------------------------- /public/css/style.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/css/style.min.css.map -------------------------------------------------------------------------------- /public/image/ico/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/image/ico/about.txt -------------------------------------------------------------------------------- /public/image/ico/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/image/ico/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/image/ico/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/image/ico/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/image/ico/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/image/ico/apple-touch-icon.png -------------------------------------------------------------------------------- /public/image/ico/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/image/ico/favicon-16x16.png -------------------------------------------------------------------------------- /public/image/ico/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/image/ico/favicon-32x32.png -------------------------------------------------------------------------------- /public/image/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/image/ico/favicon.ico -------------------------------------------------------------------------------- /public/image/ico/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/image/ico/index.html -------------------------------------------------------------------------------- /public/image/ico/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/image/ico/site.webmanifest -------------------------------------------------------------------------------- /public/image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/image/index.html -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /public/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /public/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/js/index.html -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /storage/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/storage/.htaccess -------------------------------------------------------------------------------- /storage/csv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/storage/csv/index.html -------------------------------------------------------------------------------- /storage/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/storage/doc/index.html -------------------------------------------------------------------------------- /storage/img/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/storage/img/index.html -------------------------------------------------------------------------------- /storage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/storage/index.html -------------------------------------------------------------------------------- /storage/pdf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/storage/pdf/index.html -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /system/_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/_init.php -------------------------------------------------------------------------------- /system/commands/ClearcacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/ClearcacheCommand.php -------------------------------------------------------------------------------- /system/commands/ServerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/ServerCommand.php -------------------------------------------------------------------------------- /system/commands/TestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/TestCommand.php -------------------------------------------------------------------------------- /system/commands/about/AuthorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/about/AuthorCommand.php -------------------------------------------------------------------------------- /system/commands/about/DeskriptionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/about/DeskriptionCommand.php -------------------------------------------------------------------------------- /system/commands/generate/CopyEnvirotmentCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/generate/CopyEnvirotmentCommand.php -------------------------------------------------------------------------------- /system/commands/generate/EnvirotmentCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/generate/EnvirotmentCommand.php -------------------------------------------------------------------------------- /system/commands/make/MakeControllerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/make/MakeControllerCommand.php -------------------------------------------------------------------------------- /system/commands/make/MakeLibrariesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/make/MakeLibrariesCommand.php -------------------------------------------------------------------------------- /system/commands/make/MakeModelsCommands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/make/MakeModelsCommands.php -------------------------------------------------------------------------------- /system/commands/make/MakeViewCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/make/MakeViewCommand.php -------------------------------------------------------------------------------- /system/commands/migration/MakeMigrationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/migration/MakeMigrationCommand.php -------------------------------------------------------------------------------- /system/commands/migration/MakeSeedMigrationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/migration/MakeSeedMigrationCommand.php -------------------------------------------------------------------------------- /system/commands/migration/MigrationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/migration/MigrationCommand.php -------------------------------------------------------------------------------- /system/commands/migration/MigrationHelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/migration/MigrationHelpCommand.php -------------------------------------------------------------------------------- /system/commands/migration/RoolbackMigrationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/migration/RoolbackMigrationCommand.php -------------------------------------------------------------------------------- /system/commands/migration/SeedRunMigrationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/migration/SeedRunMigrationCommand.php -------------------------------------------------------------------------------- /system/commands/unit-test/UnitTestBootsrapCommnad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/unit-test/UnitTestBootsrapCommnad.php -------------------------------------------------------------------------------- /system/commands/unit-test/UnitTestBuildCommnad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/unit-test/UnitTestBuildCommnad.php -------------------------------------------------------------------------------- /system/commands/unit-test/UnitTestRunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/unit-test/UnitTestRunCommand.php -------------------------------------------------------------------------------- /system/commands/unit-test/UnitTestScenenarioCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/commands/unit-test/UnitTestScenenarioCommand.php -------------------------------------------------------------------------------- /system/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/config/autoload.php -------------------------------------------------------------------------------- /system/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/config/config.php -------------------------------------------------------------------------------- /system/config/constant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/config/constant.php -------------------------------------------------------------------------------- /system/config/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/config/function.php -------------------------------------------------------------------------------- /system/config/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/config/header.php -------------------------------------------------------------------------------- /system/config/iniset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/config/iniset.php -------------------------------------------------------------------------------- /system/defaults/controller/BasicController.stubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/defaults/controller/BasicController.stubs -------------------------------------------------------------------------------- /system/defaults/database/BasicDatabase.stubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/defaults/database/BasicDatabase.stubs -------------------------------------------------------------------------------- /system/defaults/libraries/BasicLibraries.stubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/defaults/libraries/BasicLibraries.stubs -------------------------------------------------------------------------------- /system/defaults/models/BasicModels.stubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/defaults/models/BasicModels.stubs -------------------------------------------------------------------------------- /system/defaults/views/BasicView.stubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/defaults/views/BasicView.stubs -------------------------------------------------------------------------------- /system/error/_500_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/error/_500_error.html -------------------------------------------------------------------------------- /system/error/_maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/error/_maintenance.html -------------------------------------------------------------------------------- /system/error/_warning_development.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/error/_warning_development.html -------------------------------------------------------------------------------- /system/error/_warning_local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/error/_warning_local.html -------------------------------------------------------------------------------- /system/filesystem/FileSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/filesystem/FileSystem.php -------------------------------------------------------------------------------- /system/filesystem/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/filesystem/Storage.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/index.html -------------------------------------------------------------------------------- /system/mail/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/mail/Mailer.php -------------------------------------------------------------------------------- /system/mail/html/basic_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/mail/html/basic_template.php -------------------------------------------------------------------------------- /system/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/system/readme.md -------------------------------------------------------------------------------- /temp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/temp/index.html -------------------------------------------------------------------------------- /temp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/temp/readme.md -------------------------------------------------------------------------------- /tests/_data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_data/scenarios/acceptance/Signin.sign_In_Successfully.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/_data/scenarios/acceptance/Signin.sign_In_Successfully.txt -------------------------------------------------------------------------------- /tests/_data/scenarios/acceptance/Signin.try_To_Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/_data/scenarios/acceptance/Signin.try_To_Test.txt -------------------------------------------------------------------------------- /tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_support/AcceptanceTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/_support/AcceptanceTester.php -------------------------------------------------------------------------------- /tests/_support/FunctionalTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/_support/FunctionalTester.php -------------------------------------------------------------------------------- /tests/_support/Helper/Acceptance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/_support/Helper/Acceptance.php -------------------------------------------------------------------------------- /tests/_support/Helper/Functional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/_support/Helper/Functional.php -------------------------------------------------------------------------------- /tests/_support/Helper/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/_support/Helper/Unit.php -------------------------------------------------------------------------------- /tests/_support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/_support/UnitTester.php -------------------------------------------------------------------------------- /tests/_support/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/acceptance.suite.yml -------------------------------------------------------------------------------- /tests/acceptance/SigninCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/acceptance/SigninCest.php -------------------------------------------------------------------------------- /tests/functional.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/functional.suite.yml -------------------------------------------------------------------------------- /tests/unit.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naagaraa/mini-mvc-php-native/HEAD/tests/unit.suite.yml --------------------------------------------------------------------------------