From aaf5e6f432134567287e7d105a787df7b06197cb Mon Sep 17 00:00:00 2001 From: Olu Amey Date: Sun, 20 Nov 2022 07:52:04 -0500 Subject: [PATCH] delete_files --- www-api/.gitignore | 5 - www-api/LICENSE | 22 - www-api/README.md | 56 - www-api/app/.htaccess | 6 - www-api/app/Common.php | 15 - www-api/app/Config/App.php | 466 -- www-api/app/Config/Autoload.php | 87 - www-api/app/Config/Boot/development.php | 32 - www-api/app/Config/Boot/production.php | 21 - www-api/app/Config/Boot/testing.php | 32 - www-api/app/Config/CURLRequest.php | 22 - www-api/app/Config/Cache.php | 181 - www-api/app/Config/Constants.php | 94 - www-api/app/Config/ContentSecurityPolicy.php | 188 - www-api/app/Config/Cookie.php | 119 - www-api/app/Config/Database.php | 91 - www-api/app/Config/DocTypes.php | 33 - www-api/app/Config/Email.php | 170 - www-api/app/Config/Encryption.php | 67 - www-api/app/Config/Events.php | 48 - www-api/app/Config/Exceptions.php | 60 - www-api/app/Config/Feature.php | 32 - www-api/app/Config/Filters.php | 72 - www-api/app/Config/ForeignCharacters.php | 9 - www-api/app/Config/Format.php | 77 - www-api/app/Config/Generators.php | 40 - www-api/app/Config/Honeypot.php | 43 - www-api/app/Config/Images.php | 35 - www-api/app/Config/Kint.php | 51 - www-api/app/Config/Logger.php | 154 - www-api/app/Config/Migrations.php | 55 - www-api/app/Config/Mimes.php | 532 --- www-api/app/Config/Modules.php | 53 - www-api/app/Config/Pager.php | 39 - www-api/app/Config/Paths.php | 85 - www-api/app/Config/Publisher.php | 28 - www-api/app/Config/Routes.php | 55 - www-api/app/Config/Security.php | 117 - www-api/app/Config/Services.php | 32 - www-api/app/Config/Toolbar.php | 99 - www-api/app/Config/UserAgents.php | 252 - www-api/app/Config/Validation.php | 44 - www-api/app/Config/View.php | 56 - www-api/app/Controllers/BaseController.php | 52 - www-api/app/Controllers/Home.php | 11 - www-api/app/Database/Migrations/.gitkeep | 0 www-api/app/Database/Seeds/.gitkeep | 0 www-api/app/Filters/.gitkeep | 0 www-api/app/Helpers/.gitkeep | 0 www-api/app/Language/.gitkeep | 0 www-api/app/Language/en/Validation.php | 4 - www-api/app/Libraries/.gitkeep | 0 www-api/app/Models/.gitkeep | 0 www-api/app/ThirdParty/.gitkeep | 0 www-api/app/Views/errors/cli/error_404.php | 7 - .../app/Views/errors/cli/error_exception.php | 65 - www-api/app/Views/errors/cli/production.php | 5 - www-api/app/Views/errors/html/debug.css | 197 - www-api/app/Views/errors/html/debug.js | 116 - www-api/app/Views/errors/html/error_404.php | 84 - .../app/Views/errors/html/error_exception.php | 397 -- www-api/app/Views/errors/html/production.php | 25 - www-api/app/Views/welcome_message.php | 325 -- www-api/app/index.html | 11 - www-api/composer.json | 64 - www-api/composer.lock | 4154 ----------------- www-api/docker/apache/Dockerfile | 6 +- www-api/env | 140 - www-api/haproxy/haproxy.cfg | 0 www-api/phpunit.xml.dist | 57 - www-api/spark | 102 - www-api/system/.htaccess | 6 - www-api/system/API/ResponseTrait.php | 362 -- www-api/system/Autoloader/Autoloader.php | 374 -- www-api/system/Autoloader/FileLocator.php | 373 -- www-api/system/BaseModel.php | 1726 ------- www-api/system/CLI/BaseCommand.php | 220 - www-api/system/CLI/CLI.php | 1018 ---- www-api/system/CLI/CommandRunner.php | 75 - www-api/system/CLI/Commands.php | 181 - www-api/system/CLI/Console.php | 63 - .../system/CLI/Exceptions/CLIException.php | 34 - www-api/system/CLI/GeneratorTrait.php | 352 -- www-api/system/Cache/CacheFactory.php | 84 - www-api/system/Cache/CacheInterface.php | 106 - .../Cache/Exceptions/CacheException.php | 64 - .../Cache/Exceptions/ExceptionInterface.php | 24 - www-api/system/Cache/Handlers/BaseHandler.php | 106 - .../system/Cache/Handlers/DummyHandler.php | 115 - www-api/system/Cache/Handlers/FileHandler.php | 423 -- .../Cache/Handlers/MemcachedHandler.php | 267 -- .../system/Cache/Handlers/PredisHandler.php | 227 - .../system/Cache/Handlers/RedisHandler.php | 259 - .../system/Cache/Handlers/WincacheHandler.php | 144 - www-api/system/CodeIgniter.php | 1141 ----- www-api/system/Commands/Cache/ClearCache.php | 87 - www-api/system/Commands/Cache/InfoCache.php | 88 - .../Commands/Database/CreateDatabase.php | 155 - www-api/system/Commands/Database/Migrate.php | 102 - .../Commands/Database/MigrateRefresh.php | 87 - .../Commands/Database/MigrateRollback.php | 110 - .../Commands/Database/MigrateStatus.php | 165 - www-api/system/Commands/Database/Seed.php | 82 - .../Commands/Database/ShowTableInfo.php | 283 -- .../Commands/Encryption/GenerateKey.php | 188 - .../Commands/Generators/CommandGenerator.php | 119 - .../Commands/Generators/ConfigGenerator.php | 98 - .../Generators/ControllerGenerator.php | 134 - .../Commands/Generators/EntityGenerator.php | 84 - .../Commands/Generators/FilterGenerator.php | 84 - .../Commands/Generators/MigrateCreate.php | 90 - .../Generators/MigrationGenerator.php | 121 - .../Commands/Generators/ModelGenerator.php | 134 - .../Commands/Generators/ScaffoldGenerator.php | 121 - .../Commands/Generators/SeederGenerator.php | 84 - .../Generators/SessionMigrationGenerator.php | 110 - .../Generators/ValidationGenerator.php | 84 - .../Commands/Generators/Views/command.tpl.php | 76 - .../Commands/Generators/Views/config.tpl.php | 10 - .../Generators/Views/controller.tpl.php | 177 - .../Commands/Generators/Views/entity.tpl.php | 12 - .../Commands/Generators/Views/filter.tpl.php | 47 - .../Generators/Views/migration.tpl.php | 50 - .../Commands/Generators/Views/model.tpl.php | 42 - .../Commands/Generators/Views/seeder.tpl.php | 13 - .../Generators/Views/validation.tpl.php | 11 - www-api/system/Commands/Help.php | 85 - .../Commands/Housekeeping/ClearDebugbar.php | 70 - .../Commands/Housekeeping/ClearLogs.php | 91 - www-api/system/Commands/ListCommands.php | 134 - www-api/system/Commands/Server/Serve.php | 117 - www-api/system/Commands/Server/rewrite.php | 47 - .../system/Commands/Utilities/Environment.php | 155 - .../system/Commands/Utilities/Namespaces.php | 95 - www-api/system/Commands/Utilities/Publish.php | 104 - www-api/system/Commands/Utilities/Routes.php | 159 - .../Utilities/Routes/AutoRouteCollector.php | 66 - .../AutoRouterImproved/AutoRouteCollector.php | 138 - .../ControllerMethodReader.php | 182 - .../Utilities/Routes/ControllerFinder.php | 76 - .../Routes/ControllerMethodReader.php | 176 - .../Utilities/Routes/FilterCollector.php | 79 - .../Utilities/Routes/FilterFinder.php | 78 - .../Utilities/Routes/SampleURIGenerator.php | 61 - www-api/system/Common.php | 1224 ----- www-api/system/ComposerScripts.php | 161 - www-api/system/Config/AutoloadConfig.php | 151 - www-api/system/Config/BaseConfig.php | 216 - www-api/system/Config/BaseService.php | 384 -- www-api/system/Config/Config.php | 50 - www-api/system/Config/DotEnv.php | 234 - www-api/system/Config/Factories.php | 335 -- www-api/system/Config/Factory.php | 48 - www-api/system/Config/ForeignCharacters.php | 113 - www-api/system/Config/Publisher.php | 42 - www-api/system/Config/Routes.php | 23 - www-api/system/Config/Services.php | 777 --- www-api/system/Config/View.php | 115 - www-api/system/Controller.php | 186 - .../Cookie/CloneableCookieInterface.php | 109 - www-api/system/Cookie/Cookie.php | 783 ---- www-api/system/Cookie/CookieInterface.php | 168 - www-api/system/Cookie/CookieStore.php | 256 - .../Cookie/Exceptions/CookieException.php | 127 - www-api/system/Database/BaseBuilder.php | 2965 ------------ www-api/system/Database/BaseConnection.php | 1690 ------- www-api/system/Database/BasePreparedQuery.php | 189 - www-api/system/Database/BaseResult.php | 512 -- www-api/system/Database/BaseUtils.php | 321 -- www-api/system/Database/Config.php | 151 - .../system/Database/ConnectionInterface.php | 157 - www-api/system/Database/Database.php | 138 - .../Database/Exceptions/DataException.php | 85 - .../Database/Exceptions/DatabaseException.php | 24 - .../Exceptions/ExceptionInterface.php | 22 - www-api/system/Database/Forge.php | 1085 ----- www-api/system/Database/Migration.php | 73 - www-api/system/Database/MigrationRunner.php | 872 ---- www-api/system/Database/ModelFactory.php | 52 - www-api/system/Database/MySQLi/Builder.php | 56 - www-api/system/Database/MySQLi/Connection.php | 611 --- www-api/system/Database/MySQLi/Forge.php | 239 - .../system/Database/MySQLi/PreparedQuery.php | 87 - www-api/system/Database/MySQLi/Result.php | 162 - www-api/system/Database/MySQLi/Utils.php | 45 - www-api/system/Database/OCI8/Builder.php | 230 - www-api/system/Database/OCI8/Connection.php | 725 --- www-api/system/Database/OCI8/Forge.php | 303 -- .../system/Database/OCI8/PreparedQuery.php | 108 - www-api/system/Database/OCI8/Result.php | 114 - www-api/system/Database/OCI8/Utils.php | 38 - www-api/system/Database/Postgre/Builder.php | 329 -- .../system/Database/Postgre/Connection.php | 528 --- www-api/system/Database/Postgre/Forge.php | 193 - .../system/Database/Postgre/PreparedQuery.php | 111 - www-api/system/Database/Postgre/Result.php | 128 - www-api/system/Database/Postgre/Utils.php | 45 - .../Database/PreparedQueryInterface.php | 54 - www-api/system/Database/Query.php | 429 -- www-api/system/Database/QueryInterface.php | 87 - www-api/system/Database/RawSql.php | 49 - www-api/system/Database/ResultInterface.php | 164 - www-api/system/Database/SQLSRV/Builder.php | 638 --- www-api/system/Database/SQLSRV/Connection.php | 547 --- www-api/system/Database/SQLSRV/Forge.php | 396 -- .../system/Database/SQLSRV/PreparedQuery.php | 105 - www-api/system/Database/SQLSRV/Result.php | 170 - www-api/system/Database/SQLSRV/Utils.php | 53 - www-api/system/Database/SQLite3/Builder.php | 73 - .../system/Database/SQLite3/Connection.php | 423 -- www-api/system/Database/SQLite3/Forge.php | 253 - .../system/Database/SQLite3/PreparedQuery.php | 91 - www-api/system/Database/SQLite3/Result.php | 152 - www-api/system/Database/SQLite3/Table.php | 380 -- www-api/system/Database/SQLite3/Utils.php | 38 - www-api/system/Database/Seeder.php | 192 - www-api/system/Debug/Exceptions.php | 536 --- www-api/system/Debug/Iterator.php | 130 - www-api/system/Debug/Timer.php | 129 - www-api/system/Debug/Toolbar.php | 531 --- .../Toolbar/Collectors/BaseCollector.php | 232 - .../Debug/Toolbar/Collectors/Config.php | 41 - .../Debug/Toolbar/Collectors/Database.php | 251 - .../Debug/Toolbar/Collectors/Events.php | 141 - .../system/Debug/Toolbar/Collectors/Files.php | 102 - .../Debug/Toolbar/Collectors/History.php | 139 - .../system/Debug/Toolbar/Collectors/Logs.php | 93 - .../Debug/Toolbar/Collectors/Routes.php | 157 - .../Debug/Toolbar/Collectors/Timers.php | 71 - .../system/Debug/Toolbar/Collectors/Views.php | 147 - .../system/Debug/Toolbar/Views/_config.tpl | 48 - .../system/Debug/Toolbar/Views/_database.tpl | 26 - .../system/Debug/Toolbar/Views/_events.tpl | 18 - www-api/system/Debug/Toolbar/Views/_files.tpl | 16 - .../system/Debug/Toolbar/Views/_history.tpl | 28 - www-api/system/Debug/Toolbar/Views/_logs.tpl | 20 - .../system/Debug/Toolbar/Views/_routes.tpl | 52 - .../system/Debug/Toolbar/Views/toolbar.css | 798 ---- www-api/system/Debug/Toolbar/Views/toolbar.js | 687 --- .../Debug/Toolbar/Views/toolbar.tpl.php | 271 -- .../Debug/Toolbar/Views/toolbarloader.js | 87 - www-api/system/Email/Email.php | 2226 --------- .../system/Encryption/EncrypterInterface.php | 46 - www-api/system/Encryption/Encryption.php | 172 - .../Exceptions/EncryptionException.php | 86 - .../Encryption/Handlers/BaseHandler.php | 84 - .../Encryption/Handlers/OpenSSLHandler.php | 110 - .../Encryption/Handlers/SodiumHandler.php | 137 - www-api/system/Entity.php | 23 - www-api/system/Entity/Cast/ArrayCast.php | 38 - www-api/system/Entity/Cast/BaseCast.php | 44 - www-api/system/Entity/Cast/BooleanCast.php | 26 - www-api/system/Entity/Cast/CSVCast.php | 34 - www-api/system/Entity/Cast/CastInterface.php | 38 - www-api/system/Entity/Cast/DatetimeCast.php | 50 - www-api/system/Entity/Cast/FloatCast.php | 26 - www-api/system/Entity/Cast/IntegerCast.php | 26 - www-api/system/Entity/Cast/JsonCast.php | 65 - www-api/system/Entity/Cast/ObjectCast.php | 26 - www-api/system/Entity/Cast/StringCast.php | 26 - www-api/system/Entity/Cast/TimestampCast.php | 34 - www-api/system/Entity/Cast/URICast.php | 28 - www-api/system/Entity/Entity.php | 571 --- .../Entity/Exceptions/CastException.php | 82 - www-api/system/Events/Events.php | 273 -- www-api/system/Exceptions/AlertError.php | 21 - www-api/system/Exceptions/CastException.php | 54 - www-api/system/Exceptions/ConfigException.php | 32 - www-api/system/Exceptions/CriticalError.php | 21 - .../system/Exceptions/DebugTraceableTrait.php | 41 - .../system/Exceptions/DownloadException.php | 47 - www-api/system/Exceptions/EmergencyError.php | 21 - .../system/Exceptions/ExceptionInterface.php | 22 - .../system/Exceptions/FrameworkException.php | 66 - www-api/system/Exceptions/ModelException.php | 33 - .../Exceptions/PageNotFoundException.php | 63 - www-api/system/Exceptions/TestException.php | 25 - .../system/Files/Exceptions/FileException.php | 46 - .../Exceptions/FileNotFoundException.php | 26 - www-api/system/Files/File.php | 191 - www-api/system/Files/FileCollection.php | 365 -- www-api/system/Filters/CSRF.php | 75 - www-api/system/Filters/DebugToolbar.php | 42 - .../Filters/Exceptions/FilterException.php | 42 - www-api/system/Filters/FilterInterface.php | 49 - www-api/system/Filters/Filters.php | 543 --- www-api/system/Filters/Honeypot.php | 53 - www-api/system/Filters/InvalidChars.php | 124 - www-api/system/Filters/SecureHeaders.php | 71 - .../Format/Exceptions/FormatException.php | 71 - www-api/system/Format/Format.php | 72 - www-api/system/Format/FormatterInterface.php | 27 - www-api/system/Format/JSONFormatter.php | 46 - www-api/system/Format/XMLFormatter.php | 96 - www-api/system/HTTP/CLIRequest.php | 307 -- www-api/system/HTTP/CURLRequest.php | 662 --- www-api/system/HTTP/ContentSecurityPolicy.php | 809 ---- www-api/system/HTTP/DownloadResponse.php | 328 -- .../system/HTTP/Exceptions/HTTPException.php | 218 - www-api/system/HTTP/Files/FileCollection.php | 255 - www-api/system/HTTP/Files/UploadedFile.php | 345 -- .../HTTP/Files/UploadedFileInterface.php | 140 - www-api/system/HTTP/Header.php | 182 - www-api/system/HTTP/IncomingRequest.php | 772 --- www-api/system/HTTP/Message.php | 124 - www-api/system/HTTP/MessageInterface.php | 101 - www-api/system/HTTP/MessageTrait.php | 239 - www-api/system/HTTP/Negotiate.php | 350 -- www-api/system/HTTP/RedirectResponse.php | 172 - www-api/system/HTTP/Request.php | 139 - www-api/system/HTTP/RequestInterface.php | 57 - www-api/system/HTTP/RequestTrait.php | 335 -- www-api/system/HTTP/Response.php | 257 - www-api/system/HTTP/ResponseInterface.php | 383 -- www-api/system/HTTP/ResponseTrait.php | 798 ---- www-api/system/HTTP/URI.php | 1056 ----- www-api/system/HTTP/UserAgent.php | 371 -- www-api/system/Helpers/array_helper.php | 220 - www-api/system/Helpers/cookie_helper.php | 110 - www-api/system/Helpers/date_helper.php | 66 - www-api/system/Helpers/filesystem_helper.php | 450 -- www-api/system/Helpers/form_helper.php | 722 --- www-api/system/Helpers/html_helper.php | 545 --- www-api/system/Helpers/inflector_helper.php | 322 -- www-api/system/Helpers/number_helper.php | 212 - www-api/system/Helpers/security_helper.php | 51 - www-api/system/Helpers/test_helper.php | 68 - www-api/system/Helpers/text_helper.php | 680 --- www-api/system/Helpers/url_helper.php | 567 --- www-api/system/Helpers/xml_helper.php | 59 - .../Honeypot/Exceptions/HoneypotException.php | 38 - www-api/system/Honeypot/Honeypot.php | 95 - .../system/I18n/Exceptions/I18nException.php | 97 - www-api/system/I18n/Time.php | 1182 ----- www-api/system/I18n/TimeDifference.php | 302 -- .../Images/Exceptions/ImageException.php | 68 - .../system/Images/Handlers/BaseHandler.php | 777 --- www-api/system/Images/Handlers/GDHandler.php | 508 -- .../Images/Handlers/ImageMagickHandler.php | 467 -- www-api/system/Images/Image.php | 133 - .../system/Images/ImageHandlerInterface.php | 140 - www-api/system/Language/Language.php | 262 -- www-api/system/Language/en/CLI.php | 48 - www-api/system/Language/en/Cache.php | 18 - www-api/system/Language/en/Cast.php | 23 - www-api/system/Language/en/Cookie.php | 24 - www-api/system/Language/en/Core.php | 20 - www-api/system/Language/en/Database.php | 31 - www-api/system/Language/en/Email.php | 33 - www-api/system/Language/en/Encryption.php | 20 - www-api/system/Language/en/Fabricator.php | 17 - www-api/system/Language/en/Files.php | 18 - www-api/system/Language/en/Filters.php | 16 - www-api/system/Language/en/Format.php | 18 - www-api/system/Language/en/HTTP.php | 78 - www-api/system/Language/en/Images.php | 34 - www-api/system/Language/en/Log.php | 16 - www-api/system/Language/en/Migrations.php | 58 - www-api/system/Language/en/Number.php | 26 - www-api/system/Language/en/Pager.php | 23 - www-api/system/Language/en/Publisher.php | 22 - www-api/system/Language/en/RESTful.php | 15 - www-api/system/Language/en/Router.php | 18 - www-api/system/Language/en/Security.php | 18 - www-api/system/Language/en/Session.php | 22 - www-api/system/Language/en/Test.php | 15 - www-api/system/Language/en/Time.php | 33 - www-api/system/Language/en/Validation.php | 74 - www-api/system/Language/en/View.php | 21 - .../system/Log/Exceptions/LogException.php | 27 - www-api/system/Log/Handlers/BaseHandler.php | 59 - .../Log/Handlers/ChromeLoggerHandler.php | 166 - .../system/Log/Handlers/ErrorlogHandler.php | 84 - www-api/system/Log/Handlers/FileHandler.php | 122 - .../system/Log/Handlers/HandlerInterface.php | 42 - www-api/system/Log/Logger.php | 427 -- www-api/system/Model.php | 859 ---- www-api/system/Modules/Modules.php | 53 - .../Pager/Exceptions/PagerException.php | 27 - www-api/system/Pager/Pager.php | 435 -- www-api/system/Pager/PagerInterface.php | 118 - www-api/system/Pager/PagerRenderer.php | 378 -- www-api/system/Pager/Views/default_full.php | 47 - www-api/system/Pager/Views/default_head.php | 27 - www-api/system/Pager/Views/default_simple.php | 23 - .../Exceptions/PublisherException.php | 49 - www-api/system/Publisher/Publisher.php | 438 -- www-api/system/RESTful/BaseResource.php | 61 - www-api/system/RESTful/ResourceController.php | 113 - www-api/system/RESTful/ResourcePresenter.php | 112 - www-api/system/Router/AutoRouter.php | 293 -- www-api/system/Router/AutoRouterImproved.php | 320 -- www-api/system/Router/AutoRouterInterface.php | 25 - .../Router/Exceptions/RedirectException.php | 27 - .../Router/Exceptions/RouterException.php | 81 - www-api/system/Router/RouteCollection.php | 1481 ------ .../Router/RouteCollectionInterface.php | 188 - www-api/system/Router/Router.php | 659 --- www-api/system/Router/RouterInterface.php | 70 - .../Security/Exceptions/SecurityException.php | 48 - www-api/system/Security/Security.php | 617 --- www-api/system/Security/SecurityInterface.php | 78 - .../Session/Exceptions/SessionException.php | 52 - .../system/Session/Handlers/ArrayHandler.php | 91 - .../system/Session/Handlers/BaseHandler.php | 183 - .../Handlers/Database/MySQLiHandler.php | 53 - .../Handlers/Database/PostgreHandler.php | 100 - .../Session/Handlers/DatabaseHandler.php | 294 -- .../system/Session/Handlers/FileHandler.php | 339 -- .../Session/Handlers/MemcachedHandler.php | 303 -- .../system/Session/Handlers/RedisHandler.php | 339 -- www-api/system/Session/Session.php | 929 ---- www-api/system/Session/SessionInterface.php | 184 - www-api/system/Test/CIDatabaseTestCase.php | 24 - www-api/system/Test/CIUnitTestCase.php | 513 -- www-api/system/Test/ConfigFromArrayTrait.php | 46 - .../system/Test/Constraints/SeeInDatabase.php | 118 - www-api/system/Test/ControllerResponse.php | 99 - www-api/system/Test/ControllerTestTrait.php | 297 -- www-api/system/Test/ControllerTester.php | 293 -- www-api/system/Test/DOMParser.php | 283 -- www-api/system/Test/DatabaseTestTrait.php | 344 -- www-api/system/Test/Fabricator.php | 542 --- www-api/system/Test/FeatureResponse.php | 25 - www-api/system/Test/FeatureTestCase.php | 398 -- www-api/system/Test/FeatureTestTrait.php | 393 -- www-api/system/Test/FilterTestTrait.php | 266 -- .../Test/Filters/CITestStreamFilter.php | 50 - .../Test/Interfaces/FabricatorModel.php | 84 - www-api/system/Test/Mock/MockAppConfig.php | 42 - www-api/system/Test/Mock/MockAutoload.php | 26 - www-api/system/Test/Mock/MockBuilder.php | 23 - www-api/system/Test/Mock/MockCLIConfig.php | 40 - www-api/system/Test/Mock/MockCURLRequest.php | 54 - www-api/system/Test/Mock/MockCache.php | 297 -- www-api/system/Test/Mock/MockCodeIgniter.php | 24 - www-api/system/Test/Mock/MockCommon.php | 32 - www-api/system/Test/Mock/MockConnection.php | 243 - www-api/system/Test/Mock/MockEmail.php | 40 - www-api/system/Test/Mock/MockEvents.php | 40 - www-api/system/Test/Mock/MockFileLogger.php | 34 - .../system/Test/Mock/MockIncomingRequest.php | 22 - www-api/system/Test/Mock/MockLanguage.php | 56 - www-api/system/Test/Mock/MockLogger.php | 103 - www-api/system/Test/Mock/MockQuery.php | 18 - .../Test/Mock/MockResourceController.php | 32 - .../Test/Mock/MockResourcePresenter.php | 35 - www-api/system/Test/Mock/MockResponse.php | 39 - www-api/system/Test/Mock/MockResult.php | 96 - www-api/system/Test/Mock/MockSecurity.php | 30 - .../system/Test/Mock/MockSecurityConfig.php | 31 - www-api/system/Test/Mock/MockServices.php | 34 - www-api/system/Test/Mock/MockSession.php | 70 - www-api/system/Test/Mock/MockTable.php | 28 - www-api/system/Test/ReflectionHelper.php | 96 - www-api/system/Test/TestLogger.php | 84 - www-api/system/Test/TestResponse.php | 498 -- www-api/system/Test/bootstrap.php | 99 - www-api/system/ThirdParty/Escaper/Escaper.php | 412 -- .../Escaper/Exception/ExceptionInterface.php | 11 - .../Exception/InvalidArgumentException.php | 13 - .../Escaper/Exception/RuntimeException.php | 13 - www-api/system/ThirdParty/Escaper/LICENSE.md | 26 - www-api/system/ThirdParty/Kint/CallFinder.php | 517 -- www-api/system/ThirdParty/Kint/Kint.php | 729 --- www-api/system/ThirdParty/Kint/LICENSE | 20 - .../Kint/Parser/ArrayLimitPlugin.php | 142 - .../Kint/Parser/ArrayObjectPlugin.php | 63 - .../ThirdParty/Kint/Parser/Base64Plugin.php | 94 - .../ThirdParty/Kint/Parser/BinaryPlugin.php | 49 - .../Kint/Parser/BlacklistPlugin.php | 91 - .../Kint/Parser/ClassMethodsPlugin.php | 113 - .../Kint/Parser/ClassStaticsPlugin.php | 134 - .../ThirdParty/Kint/Parser/ClosurePlugin.php | 94 - .../ThirdParty/Kint/Parser/ColorPlugin.php | 63 - .../Kint/Parser/DOMDocumentPlugin.php | 337 -- .../ThirdParty/Kint/Parser/DateTimePlugin.php | 55 - .../ThirdParty/Kint/Parser/EnumPlugin.php | 86 - .../ThirdParty/Kint/Parser/FsPathPlugin.php | 72 - .../ThirdParty/Kint/Parser/IteratorPlugin.php | 105 - .../ThirdParty/Kint/Parser/JsonPlugin.php | 73 - .../Kint/Parser/MicrotimePlugin.php | 105 - .../ThirdParty/Kint/Parser/MysqliPlugin.php | 189 - .../system/ThirdParty/Kint/Parser/Parser.php | 632 --- .../system/ThirdParty/Kint/Parser/Plugin.php | 55 - .../ThirdParty/Kint/Parser/ProxyPlugin.php | 66 - .../Kint/Parser/SerializePlugin.php | 108 - .../Kint/Parser/SimpleXMLElementPlugin.php | 217 - .../Kint/Parser/SplFileInfoPlugin.php | 55 - .../Kint/Parser/SplObjectStoragePlugin.php | 54 - .../ThirdParty/Kint/Parser/StreamPlugin.php | 81 - .../ThirdParty/Kint/Parser/TablePlugin.php | 87 - .../Kint/Parser/ThrowablePlugin.php | 60 - .../Kint/Parser/TimestampPlugin.php | 75 - .../ThirdParty/Kint/Parser/ToStringPlugin.php | 67 - .../ThirdParty/Kint/Parser/TracePlugin.php | 120 - .../ThirdParty/Kint/Parser/XmlPlugin.php | 157 - .../ThirdParty/Kint/Renderer/CliRenderer.php | 183 - .../Kint/Renderer/PlainRenderer.php | 237 - .../ThirdParty/Kint/Renderer/Renderer.php | 185 - .../Kint/Renderer/Rich/ArrayLimitPlugin.php | 36 - .../Kint/Renderer/Rich/BinaryPlugin.php | 56 - .../Kint/Renderer/Rich/BlacklistPlugin.php | 36 - .../Kint/Renderer/Rich/CallablePlugin.php | 174 - .../Kint/Renderer/Rich/ClosurePlugin.php | 59 - .../Kint/Renderer/Rich/ColorPlugin.php | 100 - .../Kint/Renderer/Rich/DepthLimitPlugin.php | 36 - .../Kint/Renderer/Rich/DocstringPlugin.php | 70 - .../Kint/Renderer/Rich/MicrotimePlugin.php | 68 - .../ThirdParty/Kint/Renderer/Rich/Plugin.php | 89 - .../Kint/Renderer/Rich/PluginInterface.php | 33 - .../Kint/Renderer/Rich/RecursionPlugin.php | 36 - .../Renderer/Rich/SimpleXMLElementPlugin.php | 77 - .../Kint/Renderer/Rich/SourcePlugin.php | 79 - .../Kint/Renderer/Rich/TabPluginInterface.php | 36 - .../Kint/Renderer/Rich/TablePlugin.php | 133 - .../Kint/Renderer/Rich/TimestampPlugin.php | 42 - .../Kint/Renderer/Rich/TraceFramePlugin.php | 68 - .../Renderer/Rich/ValuePluginInterface.php | 36 - .../ThirdParty/Kint/Renderer/RichRenderer.php | 633 --- .../Kint/Renderer/Text/ArrayLimitPlugin.php | 44 - .../Kint/Renderer/Text/BlacklistPlugin.php | 44 - .../Kint/Renderer/Text/DepthLimitPlugin.php | 44 - .../Kint/Renderer/Text/EnumPlugin.php | 44 - .../Kint/Renderer/Text/MicrotimePlugin.php | 128 - .../ThirdParty/Kint/Renderer/Text/Plugin.php | 44 - .../Kint/Renderer/Text/RecursionPlugin.php | 44 - .../Kint/Renderer/Text/TracePlugin.php | 111 - .../ThirdParty/Kint/Renderer/TextRenderer.php | 352 -- www-api/system/ThirdParty/Kint/Utils.php | 275 -- .../system/ThirdParty/Kint/Zval/BlobValue.php | 177 - .../ThirdParty/Kint/Zval/ClosureValue.php | 68 - .../ThirdParty/Kint/Zval/DateTimeValue.php | 53 - .../system/ThirdParty/Kint/Zval/EnumValue.php | 62 - .../ThirdParty/Kint/Zval/InstanceValue.php | 78 - .../ThirdParty/Kint/Zval/MethodValue.php | 253 - .../ThirdParty/Kint/Zval/ParameterValue.php | 99 - .../Representation/ColorRepresentation.php | 573 --- .../DocstringRepresentation.php | 73 - .../MicrotimeRepresentation.php | 71 - .../Zval/Representation/Representation.php | 71 - .../Representation/SourceRepresentation.php | 72 - .../SplFileInfoRepresentation.php | 177 - .../ThirdParty/Kint/Zval/ResourceValue.php | 49 - .../Kint/Zval/SimpleXMLElementValue.php | 48 - .../ThirdParty/Kint/Zval/StreamValue.php | 54 - .../ThirdParty/Kint/Zval/ThrowableValue.php | 54 - .../ThirdParty/Kint/Zval/TraceFrameValue.php | 105 - .../ThirdParty/Kint/Zval/TraceValue.php | 45 - www-api/system/ThirdParty/Kint/Zval/Value.php | 248 - www-api/system/ThirdParty/Kint/init.php | 64 - .../system/ThirdParty/Kint/init_helpers.php | 86 - .../Kint/resources/compiled/aante-light.css | 1 - .../Kint/resources/compiled/microtime.js | 1 - .../Kint/resources/compiled/original.css | 1 - .../Kint/resources/compiled/plain.css | 1 - .../Kint/resources/compiled/plain.js | 1 - .../Kint/resources/compiled/rich.js | 1 - .../Kint/resources/compiled/shared.js | 1 - .../resources/compiled/solarized-dark.css | 1 - .../Kint/resources/compiled/solarized.css | 1 - .../ThirdParty/PSR/Log/AbstractLogger.php | 128 - .../PSR/Log/InvalidArgumentException.php | 7 - www-api/system/ThirdParty/PSR/Log/LICENSE | 19 - .../system/ThirdParty/PSR/Log/LogLevel.php | 18 - .../PSR/Log/LoggerAwareInterface.php | 18 - .../ThirdParty/PSR/Log/LoggerAwareTrait.php | 26 - .../ThirdParty/PSR/Log/LoggerInterface.php | 125 - .../system/ThirdParty/PSR/Log/LoggerTrait.php | 142 - .../system/ThirdParty/PSR/Log/NullLogger.php | 30 - www-api/system/Throttle/Throttler.php | 181 - .../system/Throttle/ThrottlerInterface.php | 44 - www-api/system/Typography/Typography.php | 335 -- www-api/system/Validation/CreditCardRules.php | 282 -- .../Exceptions/ValidationException.php | 42 - www-api/system/Validation/FileRules.php | 255 - www-api/system/Validation/FormatRules.php | 358 -- www-api/system/Validation/Rules.php | 328 -- .../StrictRules/CreditCardRules.php | 54 - .../Validation/StrictRules/FileRules.php | 23 - .../Validation/StrictRules/FormatRules.php | 409 -- .../system/Validation/StrictRules/Rules.php | 313 -- www-api/system/Validation/Validation.php | 831 ---- .../system/Validation/ValidationInterface.php | 85 - www-api/system/Validation/Views/list.php | 9 - www-api/system/Validation/Views/single.php | 1 - www-api/system/View/Cell.php | 213 - .../system/View/Exceptions/ViewException.php | 52 - www-api/system/View/Filters.php | 248 - www-api/system/View/Parser.php | 711 --- www-api/system/View/Plugins.php | 122 - www-api/system/View/RendererInterface.php | 71 - www-api/system/View/Table.php | 495 -- www-api/system/View/View.php | 465 -- .../system/View/ViewDecoratorInterface.php | 26 - www-api/system/View/ViewDecoratorTrait.php | 36 - www-api/system/bootstrap.php | 122 - www-api/system/index.html | 11 - www-api/writable/.htaccess | 6 - www-api/writable/debugbar/.gitkeep | 0 www-api/writable/uploads/index.html | 11 - 601 files changed, 4 insertions(+), 107964 deletions(-) delete mode 100644 www-api/.gitignore delete mode 100644 www-api/LICENSE delete mode 100644 www-api/README.md delete mode 100644 www-api/app/.htaccess delete mode 100644 www-api/app/Common.php delete mode 100644 www-api/app/Config/App.php delete mode 100644 www-api/app/Config/Autoload.php delete mode 100644 www-api/app/Config/Boot/development.php delete mode 100644 www-api/app/Config/Boot/production.php delete mode 100644 www-api/app/Config/Boot/testing.php delete mode 100644 www-api/app/Config/CURLRequest.php delete mode 100644 www-api/app/Config/Cache.php delete mode 100644 www-api/app/Config/Constants.php delete mode 100644 www-api/app/Config/ContentSecurityPolicy.php delete mode 100644 www-api/app/Config/Cookie.php delete mode 100644 www-api/app/Config/Database.php delete mode 100644 www-api/app/Config/DocTypes.php delete mode 100644 www-api/app/Config/Email.php delete mode 100644 www-api/app/Config/Encryption.php delete mode 100644 www-api/app/Config/Events.php delete mode 100644 www-api/app/Config/Exceptions.php delete mode 100644 www-api/app/Config/Feature.php delete mode 100644 www-api/app/Config/Filters.php delete mode 100644 www-api/app/Config/ForeignCharacters.php delete mode 100644 www-api/app/Config/Format.php delete mode 100644 www-api/app/Config/Generators.php delete mode 100644 www-api/app/Config/Honeypot.php delete mode 100644 www-api/app/Config/Images.php delete mode 100644 www-api/app/Config/Kint.php delete mode 100644 www-api/app/Config/Logger.php delete mode 100644 www-api/app/Config/Migrations.php delete mode 100644 www-api/app/Config/Mimes.php delete mode 100644 www-api/app/Config/Modules.php delete mode 100644 www-api/app/Config/Pager.php delete mode 100644 www-api/app/Config/Paths.php delete mode 100644 www-api/app/Config/Publisher.php delete mode 100644 www-api/app/Config/Routes.php delete mode 100644 www-api/app/Config/Security.php delete mode 100644 www-api/app/Config/Services.php delete mode 100644 www-api/app/Config/Toolbar.php delete mode 100644 www-api/app/Config/UserAgents.php delete mode 100644 www-api/app/Config/Validation.php delete mode 100644 www-api/app/Config/View.php delete mode 100644 www-api/app/Controllers/BaseController.php delete mode 100644 www-api/app/Controllers/Home.php delete mode 100644 www-api/app/Database/Migrations/.gitkeep delete mode 100644 www-api/app/Database/Seeds/.gitkeep delete mode 100644 www-api/app/Filters/.gitkeep delete mode 100644 www-api/app/Helpers/.gitkeep delete mode 100644 www-api/app/Language/.gitkeep delete mode 100644 www-api/app/Language/en/Validation.php delete mode 100644 www-api/app/Libraries/.gitkeep delete mode 100644 www-api/app/Models/.gitkeep delete mode 100644 www-api/app/ThirdParty/.gitkeep delete mode 100644 www-api/app/Views/errors/cli/error_404.php delete mode 100644 www-api/app/Views/errors/cli/error_exception.php delete mode 100644 www-api/app/Views/errors/cli/production.php delete mode 100644 www-api/app/Views/errors/html/debug.css delete mode 100644 www-api/app/Views/errors/html/debug.js delete mode 100644 www-api/app/Views/errors/html/error_404.php delete mode 100644 www-api/app/Views/errors/html/error_exception.php delete mode 100644 www-api/app/Views/errors/html/production.php delete mode 100644 www-api/app/Views/welcome_message.php delete mode 100644 www-api/app/index.html delete mode 100644 www-api/composer.json delete mode 100644 www-api/composer.lock delete mode 100644 www-api/env delete mode 100644 www-api/haproxy/haproxy.cfg delete mode 100644 www-api/phpunit.xml.dist delete mode 100644 www-api/spark delete mode 100644 www-api/system/.htaccess delete mode 100644 www-api/system/API/ResponseTrait.php delete mode 100644 www-api/system/Autoloader/Autoloader.php delete mode 100644 www-api/system/Autoloader/FileLocator.php delete mode 100644 www-api/system/BaseModel.php delete mode 100644 www-api/system/CLI/BaseCommand.php delete mode 100644 www-api/system/CLI/CLI.php delete mode 100644 www-api/system/CLI/CommandRunner.php delete mode 100644 www-api/system/CLI/Commands.php delete mode 100644 www-api/system/CLI/Console.php delete mode 100644 www-api/system/CLI/Exceptions/CLIException.php delete mode 100644 www-api/system/CLI/GeneratorTrait.php delete mode 100644 www-api/system/Cache/CacheFactory.php delete mode 100644 www-api/system/Cache/CacheInterface.php delete mode 100644 www-api/system/Cache/Exceptions/CacheException.php delete mode 100644 www-api/system/Cache/Exceptions/ExceptionInterface.php delete mode 100644 www-api/system/Cache/Handlers/BaseHandler.php delete mode 100644 www-api/system/Cache/Handlers/DummyHandler.php delete mode 100644 www-api/system/Cache/Handlers/FileHandler.php delete mode 100644 www-api/system/Cache/Handlers/MemcachedHandler.php delete mode 100644 www-api/system/Cache/Handlers/PredisHandler.php delete mode 100644 www-api/system/Cache/Handlers/RedisHandler.php delete mode 100644 www-api/system/Cache/Handlers/WincacheHandler.php delete mode 100644 www-api/system/CodeIgniter.php delete mode 100644 www-api/system/Commands/Cache/ClearCache.php delete mode 100644 www-api/system/Commands/Cache/InfoCache.php delete mode 100644 www-api/system/Commands/Database/CreateDatabase.php delete mode 100644 www-api/system/Commands/Database/Migrate.php delete mode 100644 www-api/system/Commands/Database/MigrateRefresh.php delete mode 100644 www-api/system/Commands/Database/MigrateRollback.php delete mode 100644 www-api/system/Commands/Database/MigrateStatus.php delete mode 100644 www-api/system/Commands/Database/Seed.php delete mode 100644 www-api/system/Commands/Database/ShowTableInfo.php delete mode 100644 www-api/system/Commands/Encryption/GenerateKey.php delete mode 100644 www-api/system/Commands/Generators/CommandGenerator.php delete mode 100644 www-api/system/Commands/Generators/ConfigGenerator.php delete mode 100644 www-api/system/Commands/Generators/ControllerGenerator.php delete mode 100644 www-api/system/Commands/Generators/EntityGenerator.php delete mode 100644 www-api/system/Commands/Generators/FilterGenerator.php delete mode 100644 www-api/system/Commands/Generators/MigrateCreate.php delete mode 100644 www-api/system/Commands/Generators/MigrationGenerator.php delete mode 100644 www-api/system/Commands/Generators/ModelGenerator.php delete mode 100644 www-api/system/Commands/Generators/ScaffoldGenerator.php delete mode 100644 www-api/system/Commands/Generators/SeederGenerator.php delete mode 100644 www-api/system/Commands/Generators/SessionMigrationGenerator.php delete mode 100644 www-api/system/Commands/Generators/ValidationGenerator.php delete mode 100644 www-api/system/Commands/Generators/Views/command.tpl.php delete mode 100644 www-api/system/Commands/Generators/Views/config.tpl.php delete mode 100644 www-api/system/Commands/Generators/Views/controller.tpl.php delete mode 100644 www-api/system/Commands/Generators/Views/entity.tpl.php delete mode 100644 www-api/system/Commands/Generators/Views/filter.tpl.php delete mode 100644 www-api/system/Commands/Generators/Views/migration.tpl.php delete mode 100644 www-api/system/Commands/Generators/Views/model.tpl.php delete mode 100644 www-api/system/Commands/Generators/Views/seeder.tpl.php delete mode 100644 www-api/system/Commands/Generators/Views/validation.tpl.php delete mode 100644 www-api/system/Commands/Help.php delete mode 100644 www-api/system/Commands/Housekeeping/ClearDebugbar.php delete mode 100644 www-api/system/Commands/Housekeeping/ClearLogs.php delete mode 100644 www-api/system/Commands/ListCommands.php delete mode 100644 www-api/system/Commands/Server/Serve.php delete mode 100644 www-api/system/Commands/Server/rewrite.php delete mode 100644 www-api/system/Commands/Utilities/Environment.php delete mode 100644 www-api/system/Commands/Utilities/Namespaces.php delete mode 100644 www-api/system/Commands/Utilities/Publish.php delete mode 100644 www-api/system/Commands/Utilities/Routes.php delete mode 100644 www-api/system/Commands/Utilities/Routes/AutoRouteCollector.php delete mode 100644 www-api/system/Commands/Utilities/Routes/AutoRouterImproved/AutoRouteCollector.php delete mode 100644 www-api/system/Commands/Utilities/Routes/AutoRouterImproved/ControllerMethodReader.php delete mode 100644 www-api/system/Commands/Utilities/Routes/ControllerFinder.php delete mode 100644 www-api/system/Commands/Utilities/Routes/ControllerMethodReader.php delete mode 100644 www-api/system/Commands/Utilities/Routes/FilterCollector.php delete mode 100644 www-api/system/Commands/Utilities/Routes/FilterFinder.php delete mode 100644 www-api/system/Commands/Utilities/Routes/SampleURIGenerator.php delete mode 100644 www-api/system/Common.php delete mode 100644 www-api/system/ComposerScripts.php delete mode 100644 www-api/system/Config/AutoloadConfig.php delete mode 100644 www-api/system/Config/BaseConfig.php delete mode 100644 www-api/system/Config/BaseService.php delete mode 100644 www-api/system/Config/Config.php delete mode 100644 www-api/system/Config/DotEnv.php delete mode 100644 www-api/system/Config/Factories.php delete mode 100644 www-api/system/Config/Factory.php delete mode 100644 www-api/system/Config/ForeignCharacters.php delete mode 100644 www-api/system/Config/Publisher.php delete mode 100644 www-api/system/Config/Routes.php delete mode 100644 www-api/system/Config/Services.php delete mode 100644 www-api/system/Config/View.php delete mode 100644 www-api/system/Controller.php delete mode 100644 www-api/system/Cookie/CloneableCookieInterface.php delete mode 100644 www-api/system/Cookie/Cookie.php delete mode 100644 www-api/system/Cookie/CookieInterface.php delete mode 100644 www-api/system/Cookie/CookieStore.php delete mode 100644 www-api/system/Cookie/Exceptions/CookieException.php delete mode 100644 www-api/system/Database/BaseBuilder.php delete mode 100644 www-api/system/Database/BaseConnection.php delete mode 100644 www-api/system/Database/BasePreparedQuery.php delete mode 100644 www-api/system/Database/BaseResult.php delete mode 100644 www-api/system/Database/BaseUtils.php delete mode 100644 www-api/system/Database/Config.php delete mode 100644 www-api/system/Database/ConnectionInterface.php delete mode 100644 www-api/system/Database/Database.php delete mode 100644 www-api/system/Database/Exceptions/DataException.php delete mode 100644 www-api/system/Database/Exceptions/DatabaseException.php delete mode 100644 www-api/system/Database/Exceptions/ExceptionInterface.php delete mode 100644 www-api/system/Database/Forge.php delete mode 100644 www-api/system/Database/Migration.php delete mode 100644 www-api/system/Database/MigrationRunner.php delete mode 100644 www-api/system/Database/ModelFactory.php delete mode 100644 www-api/system/Database/MySQLi/Builder.php delete mode 100644 www-api/system/Database/MySQLi/Connection.php delete mode 100644 www-api/system/Database/MySQLi/Forge.php delete mode 100644 www-api/system/Database/MySQLi/PreparedQuery.php delete mode 100644 www-api/system/Database/MySQLi/Result.php delete mode 100644 www-api/system/Database/MySQLi/Utils.php delete mode 100644 www-api/system/Database/OCI8/Builder.php delete mode 100644 www-api/system/Database/OCI8/Connection.php delete mode 100644 www-api/system/Database/OCI8/Forge.php delete mode 100644 www-api/system/Database/OCI8/PreparedQuery.php delete mode 100644 www-api/system/Database/OCI8/Result.php delete mode 100644 www-api/system/Database/OCI8/Utils.php delete mode 100644 www-api/system/Database/Postgre/Builder.php delete mode 100644 www-api/system/Database/Postgre/Connection.php delete mode 100644 www-api/system/Database/Postgre/Forge.php delete mode 100644 www-api/system/Database/Postgre/PreparedQuery.php delete mode 100644 www-api/system/Database/Postgre/Result.php delete mode 100644 www-api/system/Database/Postgre/Utils.php delete mode 100644 www-api/system/Database/PreparedQueryInterface.php delete mode 100644 www-api/system/Database/Query.php delete mode 100644 www-api/system/Database/QueryInterface.php delete mode 100644 www-api/system/Database/RawSql.php delete mode 100644 www-api/system/Database/ResultInterface.php delete mode 100644 www-api/system/Database/SQLSRV/Builder.php delete mode 100644 www-api/system/Database/SQLSRV/Connection.php delete mode 100644 www-api/system/Database/SQLSRV/Forge.php delete mode 100644 www-api/system/Database/SQLSRV/PreparedQuery.php delete mode 100644 www-api/system/Database/SQLSRV/Result.php delete mode 100644 www-api/system/Database/SQLSRV/Utils.php delete mode 100644 www-api/system/Database/SQLite3/Builder.php delete mode 100644 www-api/system/Database/SQLite3/Connection.php delete mode 100644 www-api/system/Database/SQLite3/Forge.php delete mode 100644 www-api/system/Database/SQLite3/PreparedQuery.php delete mode 100644 www-api/system/Database/SQLite3/Result.php delete mode 100644 www-api/system/Database/SQLite3/Table.php delete mode 100644 www-api/system/Database/SQLite3/Utils.php delete mode 100644 www-api/system/Database/Seeder.php delete mode 100644 www-api/system/Debug/Exceptions.php delete mode 100644 www-api/system/Debug/Iterator.php delete mode 100644 www-api/system/Debug/Timer.php delete mode 100644 www-api/system/Debug/Toolbar.php delete mode 100644 www-api/system/Debug/Toolbar/Collectors/BaseCollector.php delete mode 100644 www-api/system/Debug/Toolbar/Collectors/Config.php delete mode 100644 www-api/system/Debug/Toolbar/Collectors/Database.php delete mode 100644 www-api/system/Debug/Toolbar/Collectors/Events.php delete mode 100644 www-api/system/Debug/Toolbar/Collectors/Files.php delete mode 100644 www-api/system/Debug/Toolbar/Collectors/History.php delete mode 100644 www-api/system/Debug/Toolbar/Collectors/Logs.php delete mode 100644 www-api/system/Debug/Toolbar/Collectors/Routes.php delete mode 100644 www-api/system/Debug/Toolbar/Collectors/Timers.php delete mode 100644 www-api/system/Debug/Toolbar/Collectors/Views.php delete mode 100644 www-api/system/Debug/Toolbar/Views/_config.tpl delete mode 100644 www-api/system/Debug/Toolbar/Views/_database.tpl delete mode 100644 www-api/system/Debug/Toolbar/Views/_events.tpl delete mode 100644 www-api/system/Debug/Toolbar/Views/_files.tpl delete mode 100644 www-api/system/Debug/Toolbar/Views/_history.tpl delete mode 100644 www-api/system/Debug/Toolbar/Views/_logs.tpl delete mode 100644 www-api/system/Debug/Toolbar/Views/_routes.tpl delete mode 100644 www-api/system/Debug/Toolbar/Views/toolbar.css delete mode 100644 www-api/system/Debug/Toolbar/Views/toolbar.js delete mode 100644 www-api/system/Debug/Toolbar/Views/toolbar.tpl.php delete mode 100644 www-api/system/Debug/Toolbar/Views/toolbarloader.js delete mode 100644 www-api/system/Email/Email.php delete mode 100644 www-api/system/Encryption/EncrypterInterface.php delete mode 100644 www-api/system/Encryption/Encryption.php delete mode 100644 www-api/system/Encryption/Exceptions/EncryptionException.php delete mode 100644 www-api/system/Encryption/Handlers/BaseHandler.php delete mode 100644 www-api/system/Encryption/Handlers/OpenSSLHandler.php delete mode 100644 www-api/system/Encryption/Handlers/SodiumHandler.php delete mode 100644 www-api/system/Entity.php delete mode 100644 www-api/system/Entity/Cast/ArrayCast.php delete mode 100644 www-api/system/Entity/Cast/BaseCast.php delete mode 100644 www-api/system/Entity/Cast/BooleanCast.php delete mode 100644 www-api/system/Entity/Cast/CSVCast.php delete mode 100644 www-api/system/Entity/Cast/CastInterface.php delete mode 100644 www-api/system/Entity/Cast/DatetimeCast.php delete mode 100644 www-api/system/Entity/Cast/FloatCast.php delete mode 100644 www-api/system/Entity/Cast/IntegerCast.php delete mode 100644 www-api/system/Entity/Cast/JsonCast.php delete mode 100644 www-api/system/Entity/Cast/ObjectCast.php delete mode 100644 www-api/system/Entity/Cast/StringCast.php delete mode 100644 www-api/system/Entity/Cast/TimestampCast.php delete mode 100644 www-api/system/Entity/Cast/URICast.php delete mode 100644 www-api/system/Entity/Entity.php delete mode 100644 www-api/system/Entity/Exceptions/CastException.php delete mode 100644 www-api/system/Events/Events.php delete mode 100644 www-api/system/Exceptions/AlertError.php delete mode 100644 www-api/system/Exceptions/CastException.php delete mode 100644 www-api/system/Exceptions/ConfigException.php delete mode 100644 www-api/system/Exceptions/CriticalError.php delete mode 100644 www-api/system/Exceptions/DebugTraceableTrait.php delete mode 100644 www-api/system/Exceptions/DownloadException.php delete mode 100644 www-api/system/Exceptions/EmergencyError.php delete mode 100644 www-api/system/Exceptions/ExceptionInterface.php delete mode 100644 www-api/system/Exceptions/FrameworkException.php delete mode 100644 www-api/system/Exceptions/ModelException.php delete mode 100644 www-api/system/Exceptions/PageNotFoundException.php delete mode 100644 www-api/system/Exceptions/TestException.php delete mode 100644 www-api/system/Files/Exceptions/FileException.php delete mode 100644 www-api/system/Files/Exceptions/FileNotFoundException.php delete mode 100644 www-api/system/Files/File.php delete mode 100644 www-api/system/Files/FileCollection.php delete mode 100644 www-api/system/Filters/CSRF.php delete mode 100644 www-api/system/Filters/DebugToolbar.php delete mode 100644 www-api/system/Filters/Exceptions/FilterException.php delete mode 100644 www-api/system/Filters/FilterInterface.php delete mode 100644 www-api/system/Filters/Filters.php delete mode 100644 www-api/system/Filters/Honeypot.php delete mode 100644 www-api/system/Filters/InvalidChars.php delete mode 100644 www-api/system/Filters/SecureHeaders.php delete mode 100644 www-api/system/Format/Exceptions/FormatException.php delete mode 100644 www-api/system/Format/Format.php delete mode 100644 www-api/system/Format/FormatterInterface.php delete mode 100644 www-api/system/Format/JSONFormatter.php delete mode 100644 www-api/system/Format/XMLFormatter.php delete mode 100644 www-api/system/HTTP/CLIRequest.php delete mode 100644 www-api/system/HTTP/CURLRequest.php delete mode 100644 www-api/system/HTTP/ContentSecurityPolicy.php delete mode 100644 www-api/system/HTTP/DownloadResponse.php delete mode 100644 www-api/system/HTTP/Exceptions/HTTPException.php delete mode 100644 www-api/system/HTTP/Files/FileCollection.php delete mode 100644 www-api/system/HTTP/Files/UploadedFile.php delete mode 100644 www-api/system/HTTP/Files/UploadedFileInterface.php delete mode 100644 www-api/system/HTTP/Header.php delete mode 100644 www-api/system/HTTP/IncomingRequest.php delete mode 100644 www-api/system/HTTP/Message.php delete mode 100644 www-api/system/HTTP/MessageInterface.php delete mode 100644 www-api/system/HTTP/MessageTrait.php delete mode 100644 www-api/system/HTTP/Negotiate.php delete mode 100644 www-api/system/HTTP/RedirectResponse.php delete mode 100644 www-api/system/HTTP/Request.php delete mode 100644 www-api/system/HTTP/RequestInterface.php delete mode 100644 www-api/system/HTTP/RequestTrait.php delete mode 100644 www-api/system/HTTP/Response.php delete mode 100644 www-api/system/HTTP/ResponseInterface.php delete mode 100644 www-api/system/HTTP/ResponseTrait.php delete mode 100644 www-api/system/HTTP/URI.php delete mode 100644 www-api/system/HTTP/UserAgent.php delete mode 100644 www-api/system/Helpers/array_helper.php delete mode 100644 www-api/system/Helpers/cookie_helper.php delete mode 100644 www-api/system/Helpers/date_helper.php delete mode 100644 www-api/system/Helpers/filesystem_helper.php delete mode 100644 www-api/system/Helpers/form_helper.php delete mode 100644 www-api/system/Helpers/html_helper.php delete mode 100644 www-api/system/Helpers/inflector_helper.php delete mode 100644 www-api/system/Helpers/number_helper.php delete mode 100644 www-api/system/Helpers/security_helper.php delete mode 100644 www-api/system/Helpers/test_helper.php delete mode 100644 www-api/system/Helpers/text_helper.php delete mode 100644 www-api/system/Helpers/url_helper.php delete mode 100644 www-api/system/Helpers/xml_helper.php delete mode 100644 www-api/system/Honeypot/Exceptions/HoneypotException.php delete mode 100644 www-api/system/Honeypot/Honeypot.php delete mode 100644 www-api/system/I18n/Exceptions/I18nException.php delete mode 100644 www-api/system/I18n/Time.php delete mode 100644 www-api/system/I18n/TimeDifference.php delete mode 100644 www-api/system/Images/Exceptions/ImageException.php delete mode 100644 www-api/system/Images/Handlers/BaseHandler.php delete mode 100644 www-api/system/Images/Handlers/GDHandler.php delete mode 100644 www-api/system/Images/Handlers/ImageMagickHandler.php delete mode 100644 www-api/system/Images/Image.php delete mode 100644 www-api/system/Images/ImageHandlerInterface.php delete mode 100644 www-api/system/Language/Language.php delete mode 100644 www-api/system/Language/en/CLI.php delete mode 100644 www-api/system/Language/en/Cache.php delete mode 100644 www-api/system/Language/en/Cast.php delete mode 100644 www-api/system/Language/en/Cookie.php delete mode 100644 www-api/system/Language/en/Core.php delete mode 100644 www-api/system/Language/en/Database.php delete mode 100644 www-api/system/Language/en/Email.php delete mode 100644 www-api/system/Language/en/Encryption.php delete mode 100644 www-api/system/Language/en/Fabricator.php delete mode 100644 www-api/system/Language/en/Files.php delete mode 100644 www-api/system/Language/en/Filters.php delete mode 100644 www-api/system/Language/en/Format.php delete mode 100644 www-api/system/Language/en/HTTP.php delete mode 100644 www-api/system/Language/en/Images.php delete mode 100644 www-api/system/Language/en/Log.php delete mode 100644 www-api/system/Language/en/Migrations.php delete mode 100644 www-api/system/Language/en/Number.php delete mode 100644 www-api/system/Language/en/Pager.php delete mode 100644 www-api/system/Language/en/Publisher.php delete mode 100644 www-api/system/Language/en/RESTful.php delete mode 100644 www-api/system/Language/en/Router.php delete mode 100644 www-api/system/Language/en/Security.php delete mode 100644 www-api/system/Language/en/Session.php delete mode 100644 www-api/system/Language/en/Test.php delete mode 100644 www-api/system/Language/en/Time.php delete mode 100644 www-api/system/Language/en/Validation.php delete mode 100644 www-api/system/Language/en/View.php delete mode 100644 www-api/system/Log/Exceptions/LogException.php delete mode 100644 www-api/system/Log/Handlers/BaseHandler.php delete mode 100644 www-api/system/Log/Handlers/ChromeLoggerHandler.php delete mode 100644 www-api/system/Log/Handlers/ErrorlogHandler.php delete mode 100644 www-api/system/Log/Handlers/FileHandler.php delete mode 100644 www-api/system/Log/Handlers/HandlerInterface.php delete mode 100644 www-api/system/Log/Logger.php delete mode 100644 www-api/system/Model.php delete mode 100644 www-api/system/Modules/Modules.php delete mode 100644 www-api/system/Pager/Exceptions/PagerException.php delete mode 100644 www-api/system/Pager/Pager.php delete mode 100644 www-api/system/Pager/PagerInterface.php delete mode 100644 www-api/system/Pager/PagerRenderer.php delete mode 100644 www-api/system/Pager/Views/default_full.php delete mode 100644 www-api/system/Pager/Views/default_head.php delete mode 100644 www-api/system/Pager/Views/default_simple.php delete mode 100644 www-api/system/Publisher/Exceptions/PublisherException.php delete mode 100644 www-api/system/Publisher/Publisher.php delete mode 100644 www-api/system/RESTful/BaseResource.php delete mode 100644 www-api/system/RESTful/ResourceController.php delete mode 100644 www-api/system/RESTful/ResourcePresenter.php delete mode 100644 www-api/system/Router/AutoRouter.php delete mode 100644 www-api/system/Router/AutoRouterImproved.php delete mode 100644 www-api/system/Router/AutoRouterInterface.php delete mode 100644 www-api/system/Router/Exceptions/RedirectException.php delete mode 100644 www-api/system/Router/Exceptions/RouterException.php delete mode 100644 www-api/system/Router/RouteCollection.php delete mode 100644 www-api/system/Router/RouteCollectionInterface.php delete mode 100644 www-api/system/Router/Router.php delete mode 100644 www-api/system/Router/RouterInterface.php delete mode 100644 www-api/system/Security/Exceptions/SecurityException.php delete mode 100644 www-api/system/Security/Security.php delete mode 100644 www-api/system/Security/SecurityInterface.php delete mode 100644 www-api/system/Session/Exceptions/SessionException.php delete mode 100644 www-api/system/Session/Handlers/ArrayHandler.php delete mode 100644 www-api/system/Session/Handlers/BaseHandler.php delete mode 100644 www-api/system/Session/Handlers/Database/MySQLiHandler.php delete mode 100644 www-api/system/Session/Handlers/Database/PostgreHandler.php delete mode 100644 www-api/system/Session/Handlers/DatabaseHandler.php delete mode 100644 www-api/system/Session/Handlers/FileHandler.php delete mode 100644 www-api/system/Session/Handlers/MemcachedHandler.php delete mode 100644 www-api/system/Session/Handlers/RedisHandler.php delete mode 100644 www-api/system/Session/Session.php delete mode 100644 www-api/system/Session/SessionInterface.php delete mode 100644 www-api/system/Test/CIDatabaseTestCase.php delete mode 100644 www-api/system/Test/CIUnitTestCase.php delete mode 100644 www-api/system/Test/ConfigFromArrayTrait.php delete mode 100644 www-api/system/Test/Constraints/SeeInDatabase.php delete mode 100644 www-api/system/Test/ControllerResponse.php delete mode 100644 www-api/system/Test/ControllerTestTrait.php delete mode 100644 www-api/system/Test/ControllerTester.php delete mode 100644 www-api/system/Test/DOMParser.php delete mode 100644 www-api/system/Test/DatabaseTestTrait.php delete mode 100644 www-api/system/Test/Fabricator.php delete mode 100644 www-api/system/Test/FeatureResponse.php delete mode 100644 www-api/system/Test/FeatureTestCase.php delete mode 100644 www-api/system/Test/FeatureTestTrait.php delete mode 100644 www-api/system/Test/FilterTestTrait.php delete mode 100644 www-api/system/Test/Filters/CITestStreamFilter.php delete mode 100644 www-api/system/Test/Interfaces/FabricatorModel.php delete mode 100644 www-api/system/Test/Mock/MockAppConfig.php delete mode 100644 www-api/system/Test/Mock/MockAutoload.php delete mode 100644 www-api/system/Test/Mock/MockBuilder.php delete mode 100644 www-api/system/Test/Mock/MockCLIConfig.php delete mode 100644 www-api/system/Test/Mock/MockCURLRequest.php delete mode 100644 www-api/system/Test/Mock/MockCache.php delete mode 100644 www-api/system/Test/Mock/MockCodeIgniter.php delete mode 100644 www-api/system/Test/Mock/MockCommon.php delete mode 100644 www-api/system/Test/Mock/MockConnection.php delete mode 100644 www-api/system/Test/Mock/MockEmail.php delete mode 100644 www-api/system/Test/Mock/MockEvents.php delete mode 100644 www-api/system/Test/Mock/MockFileLogger.php delete mode 100644 www-api/system/Test/Mock/MockIncomingRequest.php delete mode 100644 www-api/system/Test/Mock/MockLanguage.php delete mode 100644 www-api/system/Test/Mock/MockLogger.php delete mode 100644 www-api/system/Test/Mock/MockQuery.php delete mode 100644 www-api/system/Test/Mock/MockResourceController.php delete mode 100644 www-api/system/Test/Mock/MockResourcePresenter.php delete mode 100644 www-api/system/Test/Mock/MockResponse.php delete mode 100644 www-api/system/Test/Mock/MockResult.php delete mode 100644 www-api/system/Test/Mock/MockSecurity.php delete mode 100644 www-api/system/Test/Mock/MockSecurityConfig.php delete mode 100644 www-api/system/Test/Mock/MockServices.php delete mode 100644 www-api/system/Test/Mock/MockSession.php delete mode 100644 www-api/system/Test/Mock/MockTable.php delete mode 100644 www-api/system/Test/ReflectionHelper.php delete mode 100644 www-api/system/Test/TestLogger.php delete mode 100644 www-api/system/Test/TestResponse.php delete mode 100644 www-api/system/Test/bootstrap.php delete mode 100644 www-api/system/ThirdParty/Escaper/Escaper.php delete mode 100644 www-api/system/ThirdParty/Escaper/Exception/ExceptionInterface.php delete mode 100644 www-api/system/ThirdParty/Escaper/Exception/InvalidArgumentException.php delete mode 100644 www-api/system/ThirdParty/Escaper/Exception/RuntimeException.php delete mode 100644 www-api/system/ThirdParty/Escaper/LICENSE.md delete mode 100644 www-api/system/ThirdParty/Kint/CallFinder.php delete mode 100644 www-api/system/ThirdParty/Kint/Kint.php delete mode 100644 www-api/system/ThirdParty/Kint/LICENSE delete mode 100644 www-api/system/ThirdParty/Kint/Parser/ArrayLimitPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/ArrayObjectPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/Base64Plugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/BinaryPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/BlacklistPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/ClassMethodsPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/ClassStaticsPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/ClosurePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/ColorPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/DOMDocumentPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/DateTimePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/EnumPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/FsPathPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/IteratorPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/JsonPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/MicrotimePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/MysqliPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/Parser.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/Plugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/ProxyPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/SerializePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/SimpleXMLElementPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/SplFileInfoPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/SplObjectStoragePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/StreamPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/TablePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/ThrowablePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/TimestampPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/ToStringPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/TracePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Parser/XmlPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/CliRenderer.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/PlainRenderer.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Renderer.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/ArrayLimitPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/BinaryPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/BlacklistPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/CallablePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/ClosurePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/ColorPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/DepthLimitPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/DocstringPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/MicrotimePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/Plugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/PluginInterface.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/RecursionPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/SimpleXMLElementPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/SourcePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/TabPluginInterface.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/TablePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/TimestampPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/TraceFramePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/ValuePluginInterface.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/RichRenderer.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/ArrayLimitPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/BlacklistPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/DepthLimitPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/EnumPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/MicrotimePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/Plugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/RecursionPlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/TracePlugin.php delete mode 100644 www-api/system/ThirdParty/Kint/Renderer/TextRenderer.php delete mode 100644 www-api/system/ThirdParty/Kint/Utils.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/BlobValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/ClosureValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/DateTimeValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/EnumValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/InstanceValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/MethodValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/ParameterValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/ColorRepresentation.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/DocstringRepresentation.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/MicrotimeRepresentation.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/Representation.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/SourceRepresentation.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/SplFileInfoRepresentation.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/ResourceValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/SimpleXMLElementValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/StreamValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/ThrowableValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/TraceFrameValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/TraceValue.php delete mode 100644 www-api/system/ThirdParty/Kint/Zval/Value.php delete mode 100644 www-api/system/ThirdParty/Kint/init.php delete mode 100644 www-api/system/ThirdParty/Kint/init_helpers.php delete mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/aante-light.css delete mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/microtime.js delete mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/original.css delete mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/plain.css delete mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/plain.js delete mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/rich.js delete mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/shared.js delete mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/solarized-dark.css delete mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/solarized.css delete mode 100644 www-api/system/ThirdParty/PSR/Log/AbstractLogger.php delete mode 100644 www-api/system/ThirdParty/PSR/Log/InvalidArgumentException.php delete mode 100644 www-api/system/ThirdParty/PSR/Log/LICENSE delete mode 100644 www-api/system/ThirdParty/PSR/Log/LogLevel.php delete mode 100644 www-api/system/ThirdParty/PSR/Log/LoggerAwareInterface.php delete mode 100644 www-api/system/ThirdParty/PSR/Log/LoggerAwareTrait.php delete mode 100644 www-api/system/ThirdParty/PSR/Log/LoggerInterface.php delete mode 100644 www-api/system/ThirdParty/PSR/Log/LoggerTrait.php delete mode 100644 www-api/system/ThirdParty/PSR/Log/NullLogger.php delete mode 100644 www-api/system/Throttle/Throttler.php delete mode 100644 www-api/system/Throttle/ThrottlerInterface.php delete mode 100644 www-api/system/Typography/Typography.php delete mode 100644 www-api/system/Validation/CreditCardRules.php delete mode 100644 www-api/system/Validation/Exceptions/ValidationException.php delete mode 100644 www-api/system/Validation/FileRules.php delete mode 100644 www-api/system/Validation/FormatRules.php delete mode 100644 www-api/system/Validation/Rules.php delete mode 100644 www-api/system/Validation/StrictRules/CreditCardRules.php delete mode 100644 www-api/system/Validation/StrictRules/FileRules.php delete mode 100644 www-api/system/Validation/StrictRules/FormatRules.php delete mode 100644 www-api/system/Validation/StrictRules/Rules.php delete mode 100644 www-api/system/Validation/Validation.php delete mode 100644 www-api/system/Validation/ValidationInterface.php delete mode 100644 www-api/system/Validation/Views/list.php delete mode 100644 www-api/system/Validation/Views/single.php delete mode 100644 www-api/system/View/Cell.php delete mode 100644 www-api/system/View/Exceptions/ViewException.php delete mode 100644 www-api/system/View/Filters.php delete mode 100644 www-api/system/View/Parser.php delete mode 100644 www-api/system/View/Plugins.php delete mode 100644 www-api/system/View/RendererInterface.php delete mode 100644 www-api/system/View/Table.php delete mode 100644 www-api/system/View/View.php delete mode 100644 www-api/system/View/ViewDecoratorInterface.php delete mode 100644 www-api/system/View/ViewDecoratorTrait.php delete mode 100644 www-api/system/bootstrap.php delete mode 100644 www-api/system/index.html delete mode 100644 www-api/writable/.htaccess delete mode 100644 www-api/writable/debugbar/.gitkeep delete mode 100644 www-api/writable/uploads/index.html diff --git a/www-api/.gitignore b/www-api/.gitignore deleted file mode 100644 index 46a3aeae..00000000 --- a/www-api/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -/apache_log -/writable/logs/* -/writable/cache/* -/writable/session/* -/logs/* \ No newline at end of file diff --git a/www-api/LICENSE b/www-api/LICENSE deleted file mode 100644 index 31425034..00000000 --- a/www-api/LICENSE +++ /dev/null @@ -1,22 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2014-2019 British Columbia Institute of Technology -Copyright (c) 2019-2022 CodeIgniter Foundation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/www-api/README.md b/www-api/README.md deleted file mode 100644 index ebc758ed..00000000 --- a/www-api/README.md +++ /dev/null @@ -1,56 +0,0 @@ -# CodeIgniter 4 Framework - -## What is CodeIgniter? - -CodeIgniter is a PHP full-stack web framework that is light, fast, flexible and secure. -More information can be found at the [official site](http://codeigniter.com). - -This repository holds the distributable version of the framework, -including the user guide. It has been built from the -[development repository](https://github.com/codeigniter4/CodeIgniter4). - -More information about the plans for version 4 can be found in [the announcement](http://forum.codeigniter.com/thread-62615.html) on the forums. - -The user guide corresponding to this version of the framework can be found -[here](https://codeigniter4.github.io/userguide/). - - -## Important Change with index.php - -`index.php` is no longer in the root of the project! It has been moved inside the *public* folder, -for better security and separation of components. - -This means that you should configure your web server to "point" to your project's *public* folder, and -not to the project root. A better practice would be to configure a virtual host to point there. A poor practice would be to point your web server to the project root and expect to enter *public/...*, as the rest of your logic and the -framework are exposed. - -**Please** read the user guide for a better explanation of how CI4 works! - -## Repository Management - -We use GitHub issues, in our main repository, to track **BUGS** and to track approved **DEVELOPMENT** work packages. -We use our [forum](http://forum.codeigniter.com) to provide SUPPORT and to discuss -FEATURE REQUESTS. - -This repository is a "distribution" one, built by our release preparation script. -Problems with it can be raised on our forum, or as issues in the main repository. - -## Contributing - -We welcome contributions from the community. - -Please read the [*Contributing to CodeIgniter*](https://github.com/codeigniter4/CodeIgniter4/blob/develop/CONTRIBUTING.md) section in the development repository. - -## Server Requirements - -PHP version 7.4 or higher is required, with the following extensions installed: - -- [intl](http://php.net/manual/en/intl.requirements.php) -- [libcurl](http://php.net/manual/en/curl.requirements.php) if you plan to use the HTTP\CURLRequest library - -Additionally, make sure that the following extensions are enabled in your PHP: - -- json (enabled by default - don't turn it off) -- [mbstring](http://php.net/manual/en/mbstring.installation.php) -- [mysqlnd](http://php.net/manual/en/mysqlnd.install.php) -- xml (enabled by default - don't turn it off) diff --git a/www-api/app/.htaccess b/www-api/app/.htaccess deleted file mode 100644 index f24db0ac..00000000 --- a/www-api/app/.htaccess +++ /dev/null @@ -1,6 +0,0 @@ - - Require all denied - - - Deny from all - diff --git a/www-api/app/Common.php b/www-api/app/Common.php deleted file mode 100644 index 23e3e614..00000000 --- a/www-api/app/Common.php +++ /dev/null @@ -1,15 +0,0 @@ - SYSTEMPATH, - * 'App' => APPPATH - * ]; - *``` - * - * @var array - */ - public $psr4 = [ - APP_NAMESPACE => APPPATH, // For custom app namespace - 'Config' => APPPATH . 'Config', - ]; - - /** - * ------------------------------------------------------------------- - * Class Map - * ------------------------------------------------------------------- - * The class map provides a map of class names and their exact - * location on the drive. Classes loaded in this manner will have - * slightly faster performance because they will not have to be - * searched for within one or more directories as they would if they - * were being autoloaded through a namespace. - * - * Prototype: - *``` - * $classmap = [ - * 'MyClass' => '/path/to/class/file.php' - * ]; - *``` - * - * @var array - */ - public $classmap = []; - - /** - * ------------------------------------------------------------------- - * Files - * ------------------------------------------------------------------- - * The files array provides a list of paths to __non-class__ files - * that will be autoloaded. This can be useful for bootstrap operations - * or for loading functions. - * - * Prototype: - * ``` - * $files = [ - * '/path/to/my/file.php', - * ]; - * ``` - * - * @var array - */ - public $files = []; -} diff --git a/www-api/app/Config/Boot/development.php b/www-api/app/Config/Boot/development.php deleted file mode 100644 index 05a86125..00000000 --- a/www-api/app/Config/Boot/development.php +++ /dev/null @@ -1,32 +0,0 @@ - - */ - public $file = [ - 'storePath' => WRITEPATH . 'cache/', - 'mode' => 0640, - ]; - - /** - * ------------------------------------------------------------------------- - * Memcached settings - * ------------------------------------------------------------------------- - * Your Memcached servers can be specified below, if you are using - * the Memcached drivers. - * - * @see https://codeigniter.com/user_guide/libraries/caching.html#memcached - * - * @var array - */ - public $memcached = [ - 'host' => '127.0.0.1', - 'port' => 11211, - 'weight' => 1, - 'raw' => false, - ]; - - /** - * ------------------------------------------------------------------------- - * Redis settings - * ------------------------------------------------------------------------- - * Your Redis server can be specified below, if you are using - * the Redis or Predis drivers. - * - * @var array - */ - public $redis = [ - 'host' => '127.0.0.1', - 'password' => null, - 'port' => 6379, - 'timeout' => 0, - 'database' => 0, - ]; - - /** - * -------------------------------------------------------------------------- - * Available Cache Handlers - * -------------------------------------------------------------------------- - * - * This is an array of cache engine alias' and class names. Only engines - * that are listed here are allowed to be used. - * - * @var array - */ - public $validHandlers = [ - 'dummy' => DummyHandler::class, - 'file' => FileHandler::class, - 'memcached' => MemcachedHandler::class, - 'predis' => PredisHandler::class, - 'redis' => RedisHandler::class, - 'wincache' => WincacheHandler::class, - ]; -} diff --git a/www-api/app/Config/Constants.php b/www-api/app/Config/Constants.php deleted file mode 100644 index 47b92f83..00000000 --- a/www-api/app/Config/Constants.php +++ /dev/null @@ -1,94 +0,0 @@ -` element. - * - * Will default to self if not overridden - * - * @var string|string[]|null - */ - public $baseURI; - - /** - * Lists the URLs for workers and embedded frame contents - * - * @var string|string[] - */ - public $childSrc = 'self'; - - /** - * Limits the origins that you can connect to (via XHR, - * WebSockets, and EventSource). - * - * @var string|string[] - */ - public $connectSrc = 'self'; - - /** - * Specifies the origins that can serve web fonts. - * - * @var string|string[] - */ - public $fontSrc; - - /** - * Lists valid endpoints for submission from `
` tags. - * - * @var string|string[] - */ - public $formAction = 'self'; - - /** - * Specifies the sources that can embed the current page. - * This directive applies to ``, `