├── app ├── Filters │ └── .gitkeep ├── Helpers │ ├── .gitkeep │ └── phpjwt_helper.php ├── Language │ └── .gitkeep ├── Libraries │ └── .gitkeep ├── Models │ └── .gitkeep ├── ThirdParty │ └── .gitkeep ├── Database │ ├── Seeds │ │ └── .gitkeep │ └── Migrations │ │ └── .gitkeep ├── Config │ ├── ForeignCharacters.php │ ├── Honeypot.php │ ├── Images.php │ ├── Boot │ │ ├── production.php │ │ ├── testing.php │ │ └── development.php │ ├── Filters.php │ ├── Services.php │ ├── Pager.php │ ├── Encryption.php │ ├── View.php │ ├── Exceptions.php │ ├── Events.php │ ├── Migrations.php │ ├── ContentSecurityPolicy.php │ ├── Modules.php │ ├── Validation.php │ ├── Format.php │ └── DocTypes.php ├── .htaccess ├── Views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── production.php │ │ │ └── error_exception.php │ │ └── html │ │ │ ├── production.php │ │ │ └── error_404.php │ ├── posts │ │ └── post.php │ ├── templates │ │ └── footer.php │ ├── welcome_message.php │ └── login.php ├── index.html ├── Common.php └── Controllers │ ├── Home.php │ ├── BaseController.php │ └── Login.php ├── tests └── _support │ ├── HTTP │ ├── Files │ │ ├── CookiesHolder.txt │ │ └── tmp │ │ │ ├── fileA.txt │ │ │ └── fileB.txt │ ├── MockIncomingRequest.php │ ├── MockResponse.php │ └── MockCURLRequest.php │ ├── View │ ├── Views │ │ ├── simpler.php │ │ └── simple.php │ ├── MockTable.php │ └── SampleClass.php │ ├── Autoloader │ └── UnnamespacedClass.php │ ├── Images │ ├── ci-logo.gif │ ├── ci-logo.jpeg │ ├── ci-logo.png │ ├── EXIFsamples │ │ ├── up.jpg │ │ ├── down.jpg │ │ ├── left.jpg │ │ ├── right.jpg │ │ ├── up-mirrored.jpg │ │ ├── down-mirrored.jpg │ │ ├── left-mirrored.jpg │ │ └── right-mirrored.jpg │ └── Steveston_dusk.JPG │ ├── Database │ ├── MockTestClass.php │ ├── MockQuery.php │ ├── MockBuilder.php │ ├── SupportMigrations │ │ └── 001_Some_migration.php │ ├── Seeds │ │ └── CITestSeeder.php │ └── MockResult.php │ ├── Validation │ ├── uploads │ │ └── phpUxc0ty │ └── TestRules.php │ ├── CIUnitTestCase.php │ ├── CIDatabaseTestCase.php │ ├── Language │ ├── ru │ │ └── Language.php │ ├── ab │ │ └── Allin.php │ ├── en-ZZ │ │ └── More.php │ ├── en │ │ ├── Allin.php │ │ ├── More.php │ │ └── Core.php │ ├── ab-CD │ │ └── Allin.php │ ├── SecondMockLanguage.php │ └── MockLanguage.php │ ├── Config │ ├── Routes.php │ ├── BadRegistrar.php │ ├── Registrar.php │ ├── MockAutoload.php │ ├── MockServices.php │ ├── MockCLIConfig.php │ └── MockAppConfig.php │ ├── Files │ ├── able │ │ ├── apple.php │ │ ├── fig_3.php │ │ └── prune_ripe.php │ └── baker │ │ └── banana.php │ ├── SomeEntity.php │ ├── MockCodeIgniter.php │ ├── RESTful │ ├── Worker.php │ ├── Worker2.php │ ├── MockResourcePresenter.php │ └── MockResourceController.php │ ├── Commands │ ├── AbstractInfo.php │ ├── CommandsTestStreamFilter.php │ └── AppInfo.php │ ├── Models │ ├── SimpleEntity.php │ ├── SecondaryModel.php │ ├── JobModel.php │ ├── EntityModel.php │ ├── UserModel.php │ ├── ValidErrorsModel.php │ ├── ValidModel.php │ └── EventModel.php │ ├── Security │ └── MockSecurity.php │ ├── Log │ ├── Handlers │ │ ├── MockChromeHandler.php │ │ ├── MockFileHandler.php │ │ └── TestHandler.php │ └── TestLogger.php │ ├── MigrationTestMigrations │ └── Database │ │ └── Migrations │ │ ├── 2018-01-24-102301_Some_migration.php │ │ ├── 2018-01-24-102300_Another_migration.py │ │ └── 2018-01-24-102302_Another_migration.php │ ├── MockCommon.php │ ├── _bootstrap.php │ ├── Controllers │ └── Popcorn.php │ ├── Services.php │ ├── Session │ └── MockSession.php │ └── Events │ └── MockEvents.php ├── public ├── robots.txt ├── favicon.ico ├── favicon-16x16.png ├── favicon-32x32.png ├── apple-touch-icon.png ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── chosen │ └── chosen_v1.8.7 │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── docsupport │ │ ├── chosen.png │ │ ├── oss-credit.png │ │ ├── init.js │ │ ├── init.proto.js │ │ └── prism.css │ │ ├── composer.json │ │ └── LICENSE.md ├── manifest.json ├── ckeditor5 │ ├── package.json │ ├── src │ │ └── ckeditor.js │ ├── LICENSE.md │ └── webpack.config.js ├── index.php └── .htaccess ├── system ├── Validation │ ├── Views │ │ ├── single.php │ │ └── list.php │ └── Exceptions │ │ └── ValidationException.php ├── ThirdParty │ ├── Kint │ │ └── kint.php │ ├── PSR │ │ └── Log │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareTrait.php │ │ │ └── NullLogger.php │ └── ZendEscaper │ │ └── Exception │ │ ├── ExceptionInterface.php │ │ ├── RuntimeException.php │ │ └── InvalidArgumentException.php ├── .htaccess ├── Exceptions │ ├── EmergencyError.php │ ├── AlertError.php │ ├── CriticalError.php │ ├── ExceptionInterface.php │ ├── ConfigException.php │ ├── ModelException.php │ ├── PageNotFoundException.php │ ├── FrameworkException.php │ ├── DownloadException.php │ └── CastException.php ├── index.html ├── Router │ └── Exceptions │ │ ├── RedirectException.php │ │ └── RouterException.php ├── Cache │ └── Exceptions │ │ ├── ExceptionInterface.php │ │ └── CacheException.php ├── Files │ └── Exceptions │ │ ├── FileNotFoundException.php │ │ └── FileException.php ├── Database │ ├── Exceptions │ │ ├── ExceptionInterface.php │ │ ├── DataException.php │ │ └── DatabaseException.php │ ├── MySQLi │ │ ├── Builder.php │ │ └── Utils.php │ └── SQLite3 │ │ └── Utils.php ├── Debug │ └── Toolbar │ │ ├── Views │ │ ├── _files.tpl │ │ ├── _database.tpl │ │ ├── _events.tpl │ │ ├── _logs.tpl │ │ ├── _history.tpl │ │ ├── _routes.tpl │ │ └── _config.tpl │ │ └── Collectors │ │ └── Config.php ├── Security │ └── Exceptions │ │ └── SecurityException.php ├── Log │ └── Exceptions │ │ └── LogException.php ├── CLI │ └── Exceptions │ │ └── CLIException.php ├── Pager │ ├── Views │ │ ├── default_head.php │ │ ├── default_simple.php │ │ └── default_full.php │ └── Exceptions │ │ └── PagerException.php ├── Language │ └── en │ │ ├── Log.php │ │ ├── RESTful.php │ │ ├── Entity.php │ │ ├── Redirect.php │ │ ├── Files.php │ │ ├── Language.php │ │ ├── Format.php │ │ ├── Filters.php │ │ ├── Router.php │ │ ├── CLI.php │ │ ├── Cache.php │ │ ├── Core.php │ │ ├── Number.php │ │ ├── Cast.php │ │ ├── Encryption.php │ │ ├── View.php │ │ ├── Pager.php │ │ ├── Session.php │ │ ├── Time.php │ │ ├── Database.php │ │ ├── Email.php │ │ ├── Images.php │ │ └── Migrations.php ├── Filters │ └── Exceptions │ │ └── FilterException.php ├── Format │ ├── Exceptions │ │ └── FormatException.php │ ├── FormatterInterface.php │ └── JSONFormatter.php ├── Honeypot │ └── Exceptions │ │ └── HoneypotException.php ├── Session │ └── Exceptions │ │ └── SessionException.php ├── Encryption │ ├── Exceptions │ │ └── EncryptionException.php │ └── EncrypterInterface.php ├── I18n │ └── Exceptions │ │ └── I18nException.php ├── Commands │ ├── Server │ │ └── rewrite.php │ └── Sessions │ │ └── Views │ │ └── migration.tpl.php ├── View │ └── Exceptions │ │ └── ViewException.php └── Images │ └── Exceptions │ └── ImageException.php ├── writable ├── .htaccess ├── cache │ └── index.html ├── logs │ └── index.html ├── session │ └── index.html └── uploads │ └── index.html ├── phpunit.xml.dist ├── README.md ├── composer.json ├── spark └── .gitignore /app/Filters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ThirdParty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_support/HTTP/Files/CookiesHolder.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/_support/HTTP/Files/tmp/fileA.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/_support/HTTP/Files/tmp/fileB.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /tests/_support/View/Views/simpler.php: -------------------------------------------------------------------------------- 1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /tests/_support/Config/Routes.php: -------------------------------------------------------------------------------- 1 | add('testing', 'TestController::index'); 8 | -------------------------------------------------------------------------------- /system/Exceptions/EmergencyError.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /writable/uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /tests/_support/Language/en-ZZ/More.php: -------------------------------------------------------------------------------- 1 | 'These are not the droids you are looking for', 4 | 'notaMoon' => "It's made of cheese", 5 | 'wisdom' => 'There is no try', 6 | ]; 7 | -------------------------------------------------------------------------------- /system/Exceptions/AlertError.php: -------------------------------------------------------------------------------- 1 | 'four calling birds', 5 | 'fiv' => 'five golden rings', 6 | 'six' => 'six geese a laying', 7 | 'sev' => 'seven swans a swimming', 8 | ]; 9 | -------------------------------------------------------------------------------- /system/Router/Exceptions/RedirectException.php: -------------------------------------------------------------------------------- 1 | null, 11 | 'bar' => null, 12 | ]; 13 | 14 | } 15 | -------------------------------------------------------------------------------- /tests/_support/Language/ab-CD/Allin.php: -------------------------------------------------------------------------------- 1 | 'Pyramid of Giza', 5 | 'tre' => 'Colossus of Rhodes', 6 | 'fiv' => 'Temple of Artemis', 7 | 'sev' => 'Hanging Gardens of Babylon', 8 | ]; 9 | -------------------------------------------------------------------------------- /tests/_support/Language/en/More.php: -------------------------------------------------------------------------------- 1 | 'These are not the droids you are looking for', 5 | 'notaMoon' => "That's no moon... it's a space station", 6 | 'cannotMove' => 'I have a very bad feeling about this', 7 | ]; 8 | -------------------------------------------------------------------------------- /system/Validation/Views/list.php: -------------------------------------------------------------------------------- 1 | 2 || Time | 5 |Query String | 6 |
|---|---|
| {duration} | 12 |{! sql !} | 13 |
| Time | 5 |Event Name | 6 |Times Called | 7 |
|---|---|---|
| { duration } ms | 13 |{event} | 14 |{count} | 15 |
Nothing was logged. If you were expecting logged items, ensure that LoggerConfig file has the correct threshold set.
3 | { else } 4 || Severity | 8 |Message | 9 |
|---|---|
| {level} | 15 |{msg} | 16 |
We seem to have hit a snag. Please try again later...
20 | 21 |