From 76ba89b3b23774f101d1d7738c0f91cd30309337 Mon Sep 17 00:00:00 2001 From: acidumirae Date: Sun, 27 Nov 2022 14:44:55 +0800 Subject: [PATCH] CI3 => CI4 --- www-api/.editorconfig | 15 - www-api/Dockerfile | 5 +- www-api/{license.txt => LICENSE} | 3 +- www-api/README.md | 56 + www-api/apache_log/error.log | 15 - www-api/apache_log/other_vhosts_access.log | 18 - www-api/{application => app}/.htaccess | 2 +- 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 ++ .../{application/config => app}/index.html | 2 +- www-api/application/config/autoload.php | 135 - www-api/application/config/config.php | 532 --- www-api/application/config/constants.php | 85 - www-api/application/config/database.php | 96 - www-api/application/config/doctypes.php | 24 - www-api/application/config/foreign_chars.php | 114 - www-api/application/config/hooks.php | 13 - www-api/application/config/memcached.php | 19 - www-api/application/config/migration.php | 84 - www-api/application/config/mimes.php | 186 - www-api/application/config/profiler.php | 14 - www-api/application/config/routes.php | 54 - www-api/application/config/smileys.php | 64 - www-api/application/config/user_agents.php | 222 -- www-api/application/controllers/Welcome.php | 25 - www-api/application/controllers/index.html | 11 - www-api/application/core/index.html | 11 - www-api/application/helpers/index.html | 11 - www-api/application/hooks/index.html | 11 - www-api/application/index.html | 11 - .../application/language/english/index.html | 11 - www-api/application/language/index.html | 11 - www-api/application/libraries/index.html | 11 - www-api/application/logs/index.html | 11 - www-api/application/models/index.html | 11 - www-api/application/third_party/index.html | 11 - .../views/errors/cli/error_404.php | 8 - .../application/views/errors/cli/error_db.php | 8 - .../views/errors/cli/error_exception.php | 21 - .../views/errors/cli/error_general.php | 8 - .../views/errors/cli/error_php.php | 21 - .../application/views/errors/cli/index.html | 11 - .../views/errors/html/error_404.php | 64 - .../views/errors/html/error_db.php | 64 - .../views/errors/html/error_exception.php | 32 - .../views/errors/html/error_general.php | 64 - .../views/errors/html/error_php.php | 33 - .../application/views/errors/html/index.html | 11 - www-api/application/views/errors/index.html | 11 - www-api/application/views/index.html | 11 - www-api/application/views/welcome_message.php | 100 - www-api/composer.json | 95 +- www-api/docker-compose.yml | 2 +- www-api/docker/apache/000-default.conf | 11 - www-api/docker/apache/Dockerfile | 54 - www-api/{.env => env} | 22 +- www-api/index.html | 1 - www-api/index.php | 315 -- www-api/logs/access.log | 9 + www-api/logs/error.log | 59 + www-api/nginx/nginx.conf | 8 +- www-api/phpunit.xml.dist | 57 + www-api/public/.htaccess | 49 + www-api/public/favicon.ico | Bin 0 -> 5430 bytes www-api/public/index.php | 67 + www-api/public/robots.txt | 2 + www-api/{ => public}/svs/api/.htaccess | 0 www-api/{ => public}/svs/api/index.php | 0 .../{ => public}/svs/api/index_backend.php | 0 www-api/{ => public}/svs/bko/.htaccess | 0 www-api/{ => public}/svs/bko/bkove.php | 0 www-api/{ => public}/svs/config.php | 0 www-api/{ => public}/svs/constants.php | 0 www-api/{ => public}/svs/formarter.php | 0 www-api/{ => public}/svs/user/.htaccess | 0 www-api/{ => public}/svs/user/Dconfig.php | 0 www-api/{ => public}/svs/user/Dconstants.php | 0 www-api/{ => public}/svs/user/Dformarter.php | 0 www-api/{ => public}/svs/user/Duserve.php | 0 www-api/{ => public}/svs/user/config.php | 0 www-api/{ => public}/svs/user/constants.php | 0 www-api/{ => public}/svs/user/formarter.php | 0 www-api/{ => public}/svs/user/formerter.php | 0 www-api/{ => public}/svs/user/index.php | 0 www-api/{ => public}/svs/user/userve.php | 2 +- www-api/readme.rst | 71 - www-api/spark | 102 + www-api/system/.htaccess | 2 +- 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/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 ++ .../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 + .../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/core/Benchmark.php | 134 - www-api/system/core/CodeIgniter.php | 560 --- www-api/system/core/Common.php | 849 ----- www-api/system/core/Config.php | 380 -- www-api/system/core/Controller.php | 104 - www-api/system/core/Exceptions.php | 275 -- www-api/system/core/Hooks.php | 267 -- www-api/system/core/Input.php | 937 ----- www-api/system/core/Lang.php | 204 -- www-api/system/core/Loader.php | 1416 -------- www-api/system/core/Log.php | 297 -- www-api/system/core/Model.php | 77 - www-api/system/core/Output.php | 847 ----- www-api/system/core/Router.php | 516 --- www-api/system/core/Security.php | 1111 ------ www-api/system/core/URI.php | 644 ---- www-api/system/core/Utf8.php | 165 - www-api/system/core/compat/hash.php | 255 -- www-api/system/core/compat/index.html | 11 - www-api/system/core/compat/mbstring.php | 150 - www-api/system/core/compat/password.php | 252 -- www-api/system/core/compat/standard.php | 183 - www-api/system/core/index.html | 11 - 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/DB.php | 219 -- www-api/system/database/DB_cache.php | 222 -- www-api/system/database/DB_driver.php | 1999 ----------- www-api/system/database/DB_forge.php | 1034 ------ www-api/system/database/DB_query_builder.php | 2809 --------------- www-api/system/database/DB_result.php | 666 ---- www-api/system/database/DB_utility.php | 425 --- 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 ++ .../database/drivers/cubrid/cubrid_driver.php | 406 --- .../database/drivers/cubrid/cubrid_forge.php | 231 -- .../database/drivers/cubrid/cubrid_result.php | 178 - .../drivers/cubrid/cubrid_utility.php | 80 - .../system/database/drivers/cubrid/index.html | 11 - .../database/drivers/ibase/ibase_driver.php | 414 --- .../database/drivers/ibase/ibase_forge.php | 252 -- .../database/drivers/ibase/ibase_result.php | 162 - .../database/drivers/ibase/ibase_utility.php | 70 - .../system/database/drivers/ibase/index.html | 11 - www-api/system/database/drivers/index.html | 11 - .../system/database/drivers/mssql/index.html | 11 - .../database/drivers/mssql/mssql_driver.php | 519 --- .../database/drivers/mssql/mssql_forge.php | 152 - .../database/drivers/mssql/mssql_result.php | 199 -- .../database/drivers/mssql/mssql_utility.php | 78 - .../system/database/drivers/mysql/index.html | 11 - .../database/drivers/mysql/mysql_driver.php | 495 --- .../database/drivers/mysql/mysql_forge.php | 243 -- .../database/drivers/mysql/mysql_result.php | 200 -- .../database/drivers/mysql/mysql_utility.php | 212 -- .../system/database/drivers/mysqli/index.html | 11 - .../database/drivers/mysqli/mysqli_driver.php | 554 --- .../database/drivers/mysqli/mysqli_forge.php | 245 -- .../database/drivers/mysqli/mysqli_result.php | 233 -- .../drivers/mysqli/mysqli_utility.php | 212 -- .../system/database/drivers/oci8/index.html | 11 - .../database/drivers/oci8/oci8_driver.php | 712 ---- .../database/drivers/oci8/oci8_forge.php | 217 -- .../database/drivers/oci8/oci8_result.php | 230 -- .../database/drivers/oci8/oci8_utility.php | 69 - .../system/database/drivers/odbc/index.html | 11 - .../database/drivers/odbc/odbc_driver.php | 426 --- .../database/drivers/odbc/odbc_forge.php | 87 - .../database/drivers/odbc/odbc_result.php | 269 -- .../database/drivers/odbc/odbc_utility.php | 64 - .../system/database/drivers/pdo/index.html | 11 - .../database/drivers/pdo/pdo_driver.php | 351 -- .../system/database/drivers/pdo/pdo_forge.php | 66 - .../database/drivers/pdo/pdo_result.php | 199 -- .../database/drivers/pdo/pdo_utility.php | 64 - .../drivers/pdo/subdrivers/index.html | 11 - .../drivers/pdo/subdrivers/pdo_4d_driver.php | 201 -- .../drivers/pdo/subdrivers/pdo_4d_forge.php | 218 -- .../pdo/subdrivers/pdo_cubrid_driver.php | 210 -- .../pdo/subdrivers/pdo_cubrid_forge.php | 231 -- .../pdo/subdrivers/pdo_dblib_driver.php | 354 -- .../pdo/subdrivers/pdo_dblib_forge.php | 150 - .../pdo/subdrivers/pdo_firebird_driver.php | 280 -- .../pdo/subdrivers/pdo_firebird_forge.php | 238 -- .../drivers/pdo/subdrivers/pdo_ibm_driver.php | 245 -- .../drivers/pdo/subdrivers/pdo_ibm_forge.php | 155 - .../pdo/subdrivers/pdo_informix_driver.php | 310 -- .../pdo/subdrivers/pdo_informix_forge.php | 164 - .../pdo/subdrivers/pdo_mysql_driver.php | 380 -- .../pdo/subdrivers/pdo_mysql_forge.php | 257 -- .../drivers/pdo/subdrivers/pdo_oci_driver.php | 327 -- .../drivers/pdo/subdrivers/pdo_oci_forge.php | 208 -- .../pdo/subdrivers/pdo_odbc_driver.php | 230 -- .../drivers/pdo/subdrivers/pdo_odbc_forge.php | 71 - .../pdo/subdrivers/pdo_pgsql_driver.php | 385 --- .../pdo/subdrivers/pdo_pgsql_forge.php | 218 -- .../pdo/subdrivers/pdo_sqlite_driver.php | 214 -- .../pdo/subdrivers/pdo_sqlite_forge.php | 239 -- .../pdo/subdrivers/pdo_sqlsrv_driver.php | 370 -- .../pdo/subdrivers/pdo_sqlsrv_forge.php | 150 - .../database/drivers/postgre/index.html | 11 - .../drivers/postgre/postgre_driver.php | 611 ---- .../drivers/postgre/postgre_forge.php | 206 -- .../drivers/postgre/postgre_result.php | 183 - .../drivers/postgre/postgre_utility.php | 79 - .../system/database/drivers/sqlite/index.html | 11 - .../database/drivers/sqlite/sqlite_driver.php | 331 -- .../database/drivers/sqlite/sqlite_forge.php | 206 -- .../database/drivers/sqlite/sqlite_result.php | 165 - .../drivers/sqlite/sqlite_utility.php | 62 - .../database/drivers/sqlite3/index.html | 11 - .../drivers/sqlite3/sqlite3_driver.php | 345 -- .../drivers/sqlite3/sqlite3_forge.php | 226 -- .../drivers/sqlite3/sqlite3_result.php | 195 -- .../drivers/sqlite3/sqlite3_utility.php | 62 - .../system/database/drivers/sqlsrv/index.html | 11 - .../database/drivers/sqlsrv/sqlsrv_driver.php | 544 --- .../database/drivers/sqlsrv/sqlsrv_forge.php | 150 - .../database/drivers/sqlsrv/sqlsrv_result.php | 194 -- .../drivers/sqlsrv/sqlsrv_utility.php | 78 - www-api/system/database/index.html | 11 - www-api/system/fonts/index.html | 11 - www-api/system/fonts/texb.ttf | Bin 143830 -> 0 bytes www-api/system/helpers/array_helper.php | 306 +- www-api/system/helpers/captcha_helper.php | 353 -- www-api/system/helpers/cookie_helper.php | 198 +- www-api/system/helpers/date_helper.php | 777 +---- www-api/system/helpers/directory_helper.php | 102 - www-api/system/helpers/download_helper.php | 159 - www-api/system/helpers/email_helper.php | 85 - www-api/system/helpers/file_helper.php | 454 --- www-api/system/helpers/filesystem_helper.php | 450 +++ www-api/system/helpers/form_helper.php | 1526 ++++----- www-api/system/helpers/html_helper.php | 863 +++-- www-api/system/helpers/index.html | 11 - www-api/system/helpers/inflector_helper.php | 548 +-- www-api/system/helpers/language_helper.php | 76 - www-api/system/helpers/number_helper.php | 287 +- www-api/system/helpers/path_helper.php | 83 - www-api/system/helpers/security_helper.php | 165 +- www-api/system/helpers/smiley_helper.php | 256 -- www-api/system/helpers/string_helper.php | 305 -- www-api/system/helpers/test_helper.php | 68 + www-api/system/helpers/text_helper.php | 1108 +++--- www-api/system/helpers/typography_helper.php | 105 - www-api/system/helpers/url_helper.php | 1019 +++--- www-api/system/helpers/xml_helper.php | 122 +- 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/language/english/calendar_lang.php | 85 - www-api/system/language/english/date_lang.php | 95 - www-api/system/language/english/db_lang.php | 64 - .../system/language/english/email_lang.php | 59 - .../language/english/form_validation_lang.php | 70 - www-api/system/language/english/ftp_lang.php | 52 - .../system/language/english/imglib_lang.php | 58 - www-api/system/language/english/index.html | 11 - .../language/english/migration_lang.php | 48 - .../system/language/english/number_lang.php | 45 - .../language/english/pagination_lang.php | 44 - .../system/language/english/profiler_lang.php | 61 - .../language/english/unit_test_lang.php | 59 - .../system/language/english/upload_lang.php | 56 - www-api/system/language/index.html | 11 - www-api/system/libraries/Cache/Cache.php | 256 -- .../libraries/Cache/drivers/Cache_apc.php | 218 -- .../libraries/Cache/drivers/Cache_dummy.php | 173 - .../libraries/Cache/drivers/Cache_file.php | 287 -- .../Cache/drivers/Cache_memcached.php | 314 -- .../libraries/Cache/drivers/Cache_redis.php | 348 -- .../Cache/drivers/Cache_wincache.php | 218 -- .../system/libraries/Cache/drivers/index.html | 11 - www-api/system/libraries/Cache/index.html | 11 - www-api/system/libraries/Calendar.php | 547 --- www-api/system/libraries/Cart.php | 568 --- www-api/system/libraries/Driver.php | 343 -- www-api/system/libraries/Email.php | 2491 -------------- www-api/system/libraries/Encrypt.php | 522 --- www-api/system/libraries/Encryption.php | 942 ----- www-api/system/libraries/Form_validation.php | 1599 --------- www-api/system/libraries/Ftp.php | 668 ---- www-api/system/libraries/Image_lib.php | 1843 ---------- www-api/system/libraries/Javascript.php | 857 ----- .../system/libraries/Javascript/Jquery.php | 1077 ------ .../system/libraries/Javascript/index.html | 11 - www-api/system/libraries/Migration.php | 478 --- www-api/system/libraries/Pagination.php | 705 ---- www-api/system/libraries/Parser.php | 249 -- www-api/system/libraries/Profiler.php | 575 ---- .../Session/CI_Session_driver_interface.php | 60 - .../libraries/Session/OldSessionWrapper.php | 98 - .../libraries/Session/PHP8SessionWrapper.php | 100 - www-api/system/libraries/Session/Session.php | 1032 ------ .../Session/SessionHandlerInterface.php | 60 - ...SessionUpdateTimestampHandlerInterface.php | 56 - .../libraries/Session/Session_driver.php | 202 -- .../drivers/Session_database_driver.php | 471 --- .../Session/drivers/Session_files_driver.php | 449 --- .../drivers/Session_memcached_driver.php | 414 --- .../Session/drivers/Session_redis_driver.php | 476 --- .../libraries/Session/drivers/index.html | 11 - www-api/system/libraries/Session/index.html | 11 - www-api/system/libraries/Table.php | 539 --- www-api/system/libraries/Trackback.php | 557 --- www-api/system/libraries/Typography.php | 425 --- www-api/system/libraries/Unit_test.php | 407 --- www-api/system/libraries/Upload.php | 1327 ------- www-api/system/libraries/User_agent.php | 682 ---- www-api/system/libraries/Xmlrpc.php | 1921 ----------- www-api/system/libraries/Xmlrpcs.php | 620 ---- www-api/system/libraries/Zip.php | 534 --- www-api/system/libraries/index.html | 11 - www-api/tests/README.md | 122 + .../2020-02-22-222222_example_migration.php | 37 + .../_support/Database/Seeds/ExampleSeeder.php | 41 + .../tests/_support/Libraries/ConfigReader.php | 17 + .../tests/_support/Models/ExampleModel.php | 24 + .../tests/database/ExampleDatabaseTest.php | 45 + www-api/tests/session/ExampleSessionTest.php | 18 + www-api/tests/unit/HealthTest.php | 50 + www-api/vendor/autoload.php | 25 + www-api/vendor/bin/php-parse | 120 + www-api/vendor/bin/phpunit | 123 + www-api/vendor/composer/ClassLoader.php | 572 ++++ www-api/vendor/composer/InstalledVersions.php | 352 ++ www-api/vendor/composer/LICENSE | 21 + www-api/vendor/composer/autoload_classmap.php | 636 ++++ www-api/vendor/composer/autoload_files.php | 11 + .../vendor/composer/autoload_namespaces.php | 10 + www-api/vendor/composer/autoload_psr4.php | 13 + www-api/vendor/composer/autoload_real.php | 57 + www-api/vendor/composer/autoload_static.php | 699 ++++ www-api/vendor/composer/installed.json | 1904 +++++++++++ www-api/vendor/composer/installed.php | 284 ++ www-api/vendor/composer/platform_check.php | 26 + .../instantiator/.doctrine-project.json | 47 + .../doctrine/instantiator/CONTRIBUTING.md | 35 + www-api/vendor/doctrine/instantiator/LICENSE | 19 + .../vendor/doctrine/instantiator/README.md | 38 + .../doctrine/instantiator/composer.json | 48 + .../doctrine/instantiator/docs/en/index.rst | 68 + .../doctrine/instantiator/docs/en/sidebar.rst | 4 + .../vendor/doctrine/instantiator/psalm.xml | 16 + .../Exception/ExceptionInterface.php | 12 + .../Exception/InvalidArgumentException.php | 50 + .../Exception/UnexpectedValueException.php | 59 + .../Doctrine/Instantiator/Instantiator.php | 260 ++ .../Instantiator/InstantiatorInterface.php | 24 + .../vfsstream/.github/workflows/runTests.yml | 75 + .../vendor/mikey179/vfsstream/CHANGELOG.md | 270 ++ www-api/vendor/mikey179/vfsstream/LICENSE | 27 + www-api/vendor/mikey179/vfsstream/README.md | 8 + .../vendor/mikey179/vfsstream/composer.json | 36 + .../mikey179/vfsstream/phpunit.xml.dist | 44 + .../main/php/org/bovigo/vfs/DotDirectory.php | 36 + .../src/main/php/org/bovigo/vfs/Quota.php | 86 + .../org/bovigo/vfs/content/FileContent.php | 71 + .../bovigo/vfs/content/LargeFileContent.php | 167 + .../vfs/content/SeekableFileContent.php | 134 + .../vfs/content/StringBasedFileContent.php | 97 + .../src/main/php/org/bovigo/vfs/vfsStream.php | 479 +++ .../bovigo/vfs/vfsStreamAbstractContent.php | 418 +++ .../php/org/bovigo/vfs/vfsStreamBlock.php | 34 + .../php/org/bovigo/vfs/vfsStreamContainer.php | 61 + .../bovigo/vfs/vfsStreamContainerIterator.php | 98 + .../php/org/bovigo/vfs/vfsStreamContent.php | 213 ++ .../php/org/bovigo/vfs/vfsStreamDirectory.php | 267 ++ .../php/org/bovigo/vfs/vfsStreamException.php | 19 + .../main/php/org/bovigo/vfs/vfsStreamFile.php | 394 +++ .../php/org/bovigo/vfs/vfsStreamWrapper.php | 1018 ++++++ .../vfs/visitor/vfsStreamAbstractVisitor.php | 64 + .../vfs/visitor/vfsStreamPrintVisitor.php | 108 + .../vfs/visitor/vfsStreamStructureVisitor.php | 111 + .../bovigo/vfs/visitor/vfsStreamVisitor.php | 55 + .../mikey179/vfsstream/src/test/bootstrap.php | 84 + .../src/test/patches/php8-return-types.diff | 21 + .../bovigo/vfs/DirectoryIterationTestCase.php | 318 ++ .../php/org/bovigo/vfs/FilenameTestCase.php | 88 + .../php/org/bovigo/vfs/Issue104TestCase.php | 52 + .../org/bovigo/vfs/PermissionsTestCase.php | 118 + .../test/php/org/bovigo/vfs/QuotaTestCase.php | 80 + .../php/org/bovigo/vfs/UnlinkTestCase.php | 58 + .../vfs/content/LargeFileContentTestCase.php | 225 ++ .../StringBasedFileContentTestCase.php | 232 ++ .../proxy/vfsStreamWrapperRecordingProxy.php | 325 ++ .../vfs/vfsStreamAbstractContentTestCase.php | 1053 ++++++ .../org/bovigo/vfs/vfsStreamBlockTestCase.php | 89 + .../vfsStreamContainerIteratorTestCase.php | 111 + .../vfsStreamDirectoryIssue134TestCase.php | 64 + .../vfs/vfsStreamDirectoryIssue18TestCase.php | 80 + .../bovigo/vfs/vfsStreamDirectoryTestCase.php | 334 ++ .../bovigo/vfs/vfsStreamExLockTestCase.php | 55 + .../org/bovigo/vfs/vfsStreamFileTestCase.php | 337 ++ .../org/bovigo/vfs/vfsStreamGlobTestCase.php | 28 + .../vfsStreamResolveIncludePathTestCase.php | 61 + .../php/org/bovigo/vfs/vfsStreamTestCase.php | 780 +++++ .../org/bovigo/vfs/vfsStreamUmaskTestCase.php | 194 ++ ...StreamWrapperAlreadyRegisteredTestCase.php | 62 + .../vfs/vfsStreamWrapperBaseTestCase.php | 98 + .../vfsStreamWrapperDirSeparatorTestCase.php | 72 + .../vfs/vfsStreamWrapperDirTestCase.php | 500 +++ .../vfs/vfsStreamWrapperFileTestCase.php | 457 +++ .../vfs/vfsStreamWrapperFileTimesTestCase.php | 314 ++ .../vfs/vfsStreamWrapperFlockTestCase.php | 439 +++ .../vfs/vfsStreamWrapperLargeFileTestCase.php | 81 + .../vfs/vfsStreamWrapperQuotaTestCase.php | 223 ++ .../vfs/vfsStreamWrapperSetOptionTestCase.php | 75 + .../vfsStreamWrapperStreamSelectTestCase.php | 42 + .../bovigo/vfs/vfsStreamWrapperTestCase.php | 789 +++++ .../vfsStreamWrapperUnregisterTestCase.php | 75 + .../vfsStreamWrapperWithoutRootTestCase.php | 63 + .../org/bovigo/vfs/vfsStreamZipTestCase.php | 52 + .../vfsStreamAbstractVisitorTestCase.php | 98 + .../visitor/vfsStreamPrintVisitorTestCase.php | 102 + .../vfsStreamStructureVisitorTestCase.php | 85 + .../vfsstream/src/test/phpt/bug71287.phpt | 29 + .../filesystemcopy/emptyFolder/.gitignore | 0 .../filesystemcopy/withSubfolders/aFile.txt | 1 + .../withSubfolders/subfolder1/file1.txt | 1 + .../withSubfolders/subfolder2/.gitignore | 0 .../myclabs/deep-copy/.github/FUNDING.yml | 12 + .../deep-copy/.github/workflows/ci.yaml | 101 + www-api/vendor/myclabs/deep-copy/LICENSE | 20 + www-api/vendor/myclabs/deep-copy/README.md | 373 ++ .../vendor/myclabs/deep-copy/composer.json | 42 + .../deep-copy/src/DeepCopy/DeepCopy.php | 303 ++ .../src/DeepCopy/Exception/CloneException.php | 9 + .../DeepCopy/Exception/PropertyException.php | 9 + .../Doctrine/DoctrineCollectionFilter.php | 33 + .../DoctrineEmptyCollectionFilter.php | 28 + .../Filter/Doctrine/DoctrineProxyFilter.php | 22 + .../deep-copy/src/DeepCopy/Filter/Filter.php | 18 + .../src/DeepCopy/Filter/KeepFilter.php | 16 + .../src/DeepCopy/Filter/ReplaceFilter.php | 39 + .../src/DeepCopy/Filter/SetNullFilter.php | 24 + .../Matcher/Doctrine/DoctrineProxyMatcher.php | 22 + .../src/DeepCopy/Matcher/Matcher.php | 14 + .../src/DeepCopy/Matcher/PropertyMatcher.php | 39 + .../DeepCopy/Matcher/PropertyNameMatcher.php | 32 + .../DeepCopy/Matcher/PropertyTypeMatcher.php | 52 + .../DeepCopy/Reflection/ReflectionHelper.php | 78 + .../TypeFilter/Date/DateIntervalFilter.php | 33 + .../src/DeepCopy/TypeFilter/ReplaceFilter.php | 30 + .../DeepCopy/TypeFilter/ShallowCopyFilter.php | 17 + .../TypeFilter/Spl/ArrayObjectFilter.php | 36 + .../TypeFilter/Spl/SplDoublyLinkedList.php | 10 + .../Spl/SplDoublyLinkedListFilter.php | 51 + .../src/DeepCopy/TypeFilter/TypeFilter.php | 13 + .../src/DeepCopy/TypeMatcher/TypeMatcher.php | 29 + .../deep-copy/src/DeepCopy/deep_copy.php | 20 + www-api/vendor/nikic/php-parser/LICENSE | 29 + www-api/vendor/nikic/php-parser/README.md | 225 ++ www-api/vendor/nikic/php-parser/bin/php-parse | 205 ++ www-api/vendor/nikic/php-parser/composer.json | 41 + .../vendor/nikic/php-parser/grammar/README.md | 30 + .../nikic/php-parser/grammar/parser.template | 106 + .../vendor/nikic/php-parser/grammar/php5.y | 1036 ++++++ .../vendor/nikic/php-parser/grammar/php7.y | 1222 +++++++ .../nikic/php-parser/grammar/phpyLang.php | 184 + .../php-parser/grammar/rebuildParsers.php | 81 + .../nikic/php-parser/grammar/tokens.template | 17 + .../vendor/nikic/php-parser/grammar/tokens.y | 115 + .../php-parser/lib/PhpParser/Builder.php | 13 + .../lib/PhpParser/Builder/ClassConst.php | 132 + .../lib/PhpParser/Builder/Class_.php | 146 + .../lib/PhpParser/Builder/Declaration.php | 43 + .../lib/PhpParser/Builder/EnumCase.php | 85 + .../lib/PhpParser/Builder/Enum_.php | 117 + .../lib/PhpParser/Builder/FunctionLike.php | 73 + .../lib/PhpParser/Builder/Function_.php | 67 + .../lib/PhpParser/Builder/Interface_.php | 93 + .../lib/PhpParser/Builder/Method.php | 146 + .../lib/PhpParser/Builder/Namespace_.php | 45 + .../lib/PhpParser/Builder/Param.php | 122 + .../lib/PhpParser/Builder/Property.php | 161 + .../lib/PhpParser/Builder/TraitUse.php | 64 + .../PhpParser/Builder/TraitUseAdaptation.php | 148 + .../lib/PhpParser/Builder/Trait_.php | 78 + .../php-parser/lib/PhpParser/Builder/Use_.php | 49 + .../lib/PhpParser/BuilderFactory.php | 399 +++ .../lib/PhpParser/BuilderHelpers.php | 335 ++ .../php-parser/lib/PhpParser/Comment.php | 239 ++ .../php-parser/lib/PhpParser/Comment/Doc.php | 7 + .../ConstExprEvaluationException.php | 6 + .../lib/PhpParser/ConstExprEvaluator.php | 229 ++ .../nikic/php-parser/lib/PhpParser/Error.php | 180 + .../php-parser/lib/PhpParser/ErrorHandler.php | 13 + .../lib/PhpParser/ErrorHandler/Collecting.php | 46 + .../lib/PhpParser/ErrorHandler/Throwing.php | 18 + .../lib/PhpParser/Internal/DiffElem.php | 27 + .../lib/PhpParser/Internal/Differ.php | 164 + .../Internal/PrintableNewAnonClassNode.php | 61 + .../lib/PhpParser/Internal/TokenStream.php | 286 ++ .../php-parser/lib/PhpParser/JsonDecoder.php | 103 + .../nikic/php-parser/lib/PhpParser/Lexer.php | 560 +++ .../lib/PhpParser/Lexer/Emulative.php | 248 ++ .../Lexer/TokenEmulator/AttributeEmulator.php | 56 + .../CoaleseEqualTokenEmulator.php | 47 + .../Lexer/TokenEmulator/EnumTokenEmulator.php | 31 + .../TokenEmulator/ExplicitOctalEmulator.php | 44 + .../FlexibleDocStringEmulator.php | 76 + .../Lexer/TokenEmulator/FnTokenEmulator.php | 23 + .../Lexer/TokenEmulator/KeywordEmulator.php | 62 + .../TokenEmulator/MatchTokenEmulator.php | 23 + .../TokenEmulator/NullsafeTokenEmulator.php | 67 + .../NumericLiteralSeparatorEmulator.php | 105 + .../TokenEmulator/ReadonlyTokenEmulator.php | 36 + .../Lexer/TokenEmulator/ReverseEmulator.php | 36 + .../Lexer/TokenEmulator/TokenEmulator.php | 25 + .../php-parser/lib/PhpParser/NameContext.php | 285 ++ .../nikic/php-parser/lib/PhpParser/Node.php | 151 + .../php-parser/lib/PhpParser/Node/Arg.php | 46 + .../lib/PhpParser/Node/Attribute.php | 34 + .../lib/PhpParser/Node/AttributeGroup.php | 29 + .../lib/PhpParser/Node/ComplexType.php | 14 + .../php-parser/lib/PhpParser/Node/Const_.php | 37 + .../php-parser/lib/PhpParser/Node/Expr.php | 9 + .../lib/PhpParser/Node/Expr/ArrayDimFetch.php | 34 + .../lib/PhpParser/Node/Expr/ArrayItem.php | 41 + .../lib/PhpParser/Node/Expr/Array_.php | 34 + .../lib/PhpParser/Node/Expr/ArrowFunction.php | 79 + .../lib/PhpParser/Node/Expr/Assign.php | 34 + .../lib/PhpParser/Node/Expr/AssignOp.php | 30 + .../Node/Expr/AssignOp/BitwiseAnd.php | 12 + .../Node/Expr/AssignOp/BitwiseOr.php | 12 + .../Node/Expr/AssignOp/BitwiseXor.php | 12 + .../PhpParser/Node/Expr/AssignOp/Coalesce.php | 12 + .../PhpParser/Node/Expr/AssignOp/Concat.php | 12 + .../lib/PhpParser/Node/Expr/AssignOp/Div.php | 12 + .../PhpParser/Node/Expr/AssignOp/Minus.php | 12 + .../lib/PhpParser/Node/Expr/AssignOp/Mod.php | 12 + .../lib/PhpParser/Node/Expr/AssignOp/Mul.php | 12 + .../lib/PhpParser/Node/Expr/AssignOp/Plus.php | 12 + .../lib/PhpParser/Node/Expr/AssignOp/Pow.php | 12 + .../Node/Expr/AssignOp/ShiftLeft.php | 12 + .../Node/Expr/AssignOp/ShiftRight.php | 12 + .../lib/PhpParser/Node/Expr/AssignRef.php | 34 + .../lib/PhpParser/Node/Expr/BinaryOp.php | 40 + .../Node/Expr/BinaryOp/BitwiseAnd.php | 16 + .../Node/Expr/BinaryOp/BitwiseOr.php | 16 + .../Node/Expr/BinaryOp/BitwiseXor.php | 16 + .../Node/Expr/BinaryOp/BooleanAnd.php | 16 + .../Node/Expr/BinaryOp/BooleanOr.php | 16 + .../PhpParser/Node/Expr/BinaryOp/Coalesce.php | 16 + .../PhpParser/Node/Expr/BinaryOp/Concat.php | 16 + .../lib/PhpParser/Node/Expr/BinaryOp/Div.php | 16 + .../PhpParser/Node/Expr/BinaryOp/Equal.php | 16 + .../PhpParser/Node/Expr/BinaryOp/Greater.php | 16 + .../Node/Expr/BinaryOp/GreaterOrEqual.php | 16 + .../Node/Expr/BinaryOp/Identical.php | 16 + .../Node/Expr/BinaryOp/LogicalAnd.php | 16 + .../Node/Expr/BinaryOp/LogicalOr.php | 16 + .../Node/Expr/BinaryOp/LogicalXor.php | 16 + .../PhpParser/Node/Expr/BinaryOp/Minus.php | 16 + .../lib/PhpParser/Node/Expr/BinaryOp/Mod.php | 16 + .../lib/PhpParser/Node/Expr/BinaryOp/Mul.php | 16 + .../PhpParser/Node/Expr/BinaryOp/NotEqual.php | 16 + .../Node/Expr/BinaryOp/NotIdentical.php | 16 + .../lib/PhpParser/Node/Expr/BinaryOp/Plus.php | 16 + .../lib/PhpParser/Node/Expr/BinaryOp/Pow.php | 16 + .../Node/Expr/BinaryOp/ShiftLeft.php | 16 + .../Node/Expr/BinaryOp/ShiftRight.php | 16 + .../PhpParser/Node/Expr/BinaryOp/Smaller.php | 16 + .../Node/Expr/BinaryOp/SmallerOrEqual.php | 16 + .../Node/Expr/BinaryOp/Spaceship.php | 16 + .../lib/PhpParser/Node/Expr/BitwiseNot.php | 30 + .../lib/PhpParser/Node/Expr/BooleanNot.php | 30 + .../lib/PhpParser/Node/Expr/CallLike.php | 39 + .../lib/PhpParser/Node/Expr/Cast.php | 26 + .../lib/PhpParser/Node/Expr/Cast/Array_.php | 12 + .../lib/PhpParser/Node/Expr/Cast/Bool_.php | 12 + .../lib/PhpParser/Node/Expr/Cast/Double.php | 17 + .../lib/PhpParser/Node/Expr/Cast/Int_.php | 12 + .../lib/PhpParser/Node/Expr/Cast/Object_.php | 12 + .../lib/PhpParser/Node/Expr/Cast/String_.php | 12 + .../lib/PhpParser/Node/Expr/Cast/Unset_.php | 12 + .../PhpParser/Node/Expr/ClassConstFetch.php | 36 + .../lib/PhpParser/Node/Expr/Clone_.php | 30 + .../lib/PhpParser/Node/Expr/Closure.php | 79 + .../lib/PhpParser/Node/Expr/ClosureUse.php | 34 + .../lib/PhpParser/Node/Expr/ConstFetch.php | 31 + .../lib/PhpParser/Node/Expr/Empty_.php | 30 + .../lib/PhpParser/Node/Expr/Error.php | 31 + .../lib/PhpParser/Node/Expr/ErrorSuppress.php | 30 + .../lib/PhpParser/Node/Expr/Eval_.php | 30 + .../lib/PhpParser/Node/Expr/Exit_.php | 34 + .../lib/PhpParser/Node/Expr/FuncCall.php | 39 + .../lib/PhpParser/Node/Expr/Include_.php | 39 + .../lib/PhpParser/Node/Expr/Instanceof_.php | 35 + .../lib/PhpParser/Node/Expr/Isset_.php | 30 + .../lib/PhpParser/Node/Expr/List_.php | 30 + .../lib/PhpParser/Node/Expr/Match_.php | 31 + .../lib/PhpParser/Node/Expr/MethodCall.php | 45 + .../lib/PhpParser/Node/Expr/New_.php | 41 + .../Node/Expr/NullsafeMethodCall.php | 45 + .../Node/Expr/NullsafePropertyFetch.php | 35 + .../lib/PhpParser/Node/Expr/PostDec.php | 30 + .../lib/PhpParser/Node/Expr/PostInc.php | 30 + .../lib/PhpParser/Node/Expr/PreDec.php | 30 + .../lib/PhpParser/Node/Expr/PreInc.php | 30 + .../lib/PhpParser/Node/Expr/Print_.php | 30 + .../lib/PhpParser/Node/Expr/PropertyFetch.php | 35 + .../lib/PhpParser/Node/Expr/ShellExec.php | 30 + .../lib/PhpParser/Node/Expr/StaticCall.php | 46 + .../Node/Expr/StaticPropertyFetch.php | 36 + .../lib/PhpParser/Node/Expr/Ternary.php | 38 + .../lib/PhpParser/Node/Expr/Throw_.php | 30 + .../lib/PhpParser/Node/Expr/UnaryMinus.php | 30 + .../lib/PhpParser/Node/Expr/UnaryPlus.php | 30 + .../lib/PhpParser/Node/Expr/Variable.php | 30 + .../lib/PhpParser/Node/Expr/YieldFrom.php | 30 + .../lib/PhpParser/Node/Expr/Yield_.php | 34 + .../lib/PhpParser/Node/FunctionLike.php | 43 + .../lib/PhpParser/Node/Identifier.php | 75 + .../lib/PhpParser/Node/IntersectionType.php | 30 + .../lib/PhpParser/Node/MatchArm.php | 31 + .../php-parser/lib/PhpParser/Node/Name.php | 242 ++ .../PhpParser/Node/Name/FullyQualified.php | 50 + .../lib/PhpParser/Node/Name/Relative.php | 50 + .../lib/PhpParser/Node/NullableType.php | 28 + .../php-parser/lib/PhpParser/Node/Param.php | 60 + .../php-parser/lib/PhpParser/Node/Scalar.php | 7 + .../lib/PhpParser/Node/Scalar/DNumber.php | 77 + .../lib/PhpParser/Node/Scalar/Encapsed.php | 31 + .../Node/Scalar/EncapsedStringPart.php | 30 + .../lib/PhpParser/Node/Scalar/LNumber.php | 80 + .../lib/PhpParser/Node/Scalar/MagicConst.php | 28 + .../Node/Scalar/MagicConst/Class_.php | 16 + .../PhpParser/Node/Scalar/MagicConst/Dir.php | 16 + .../PhpParser/Node/Scalar/MagicConst/File.php | 16 + .../Node/Scalar/MagicConst/Function_.php | 16 + .../PhpParser/Node/Scalar/MagicConst/Line.php | 16 + .../Node/Scalar/MagicConst/Method.php | 16 + .../Node/Scalar/MagicConst/Namespace_.php | 16 + .../Node/Scalar/MagicConst/Trait_.php | 16 + .../lib/PhpParser/Node/Scalar/String_.php | 157 + .../php-parser/lib/PhpParser/Node/Stmt.php | 9 + .../lib/PhpParser/Node/Stmt/Break_.php | 30 + .../lib/PhpParser/Node/Stmt/Case_.php | 34 + .../lib/PhpParser/Node/Stmt/Catch_.php | 41 + .../lib/PhpParser/Node/Stmt/ClassConst.php | 80 + .../lib/PhpParser/Node/Stmt/ClassLike.php | 109 + .../lib/PhpParser/Node/Stmt/ClassMethod.php | 161 + .../lib/PhpParser/Node/Stmt/Class_.php | 137 + .../lib/PhpParser/Node/Stmt/Const_.php | 30 + .../lib/PhpParser/Node/Stmt/Continue_.php | 30 + .../PhpParser/Node/Stmt/DeclareDeclare.php | 34 + .../lib/PhpParser/Node/Stmt/Declare_.php | 34 + .../lib/PhpParser/Node/Stmt/Do_.php | 34 + .../lib/PhpParser/Node/Stmt/Echo_.php | 30 + .../lib/PhpParser/Node/Stmt/ElseIf_.php | 34 + .../lib/PhpParser/Node/Stmt/Else_.php | 30 + .../lib/PhpParser/Node/Stmt/EnumCase.php | 37 + .../lib/PhpParser/Node/Stmt/Enum_.php | 40 + .../lib/PhpParser/Node/Stmt/Expression.php | 33 + .../lib/PhpParser/Node/Stmt/Finally_.php | 30 + .../lib/PhpParser/Node/Stmt/For_.php | 43 + .../lib/PhpParser/Node/Stmt/Foreach_.php | 47 + .../lib/PhpParser/Node/Stmt/Function_.php | 77 + .../lib/PhpParser/Node/Stmt/Global_.php | 30 + .../lib/PhpParser/Node/Stmt/Goto_.php | 31 + .../lib/PhpParser/Node/Stmt/GroupUse.php | 39 + .../lib/PhpParser/Node/Stmt/HaltCompiler.php | 30 + .../lib/PhpParser/Node/Stmt/If_.php | 43 + .../lib/PhpParser/Node/Stmt/InlineHTML.php | 30 + .../lib/PhpParser/Node/Stmt/Interface_.php | 37 + .../lib/PhpParser/Node/Stmt/Label.php | 31 + .../lib/PhpParser/Node/Stmt/Namespace_.php | 38 + .../lib/PhpParser/Node/Stmt/Nop.php | 17 + .../lib/PhpParser/Node/Stmt/Property.php | 91 + .../PhpParser/Node/Stmt/PropertyProperty.php | 34 + .../lib/PhpParser/Node/Stmt/Return_.php | 30 + .../lib/PhpParser/Node/Stmt/StaticVar.php | 37 + .../lib/PhpParser/Node/Stmt/Static_.php | 30 + .../lib/PhpParser/Node/Stmt/Switch_.php | 34 + .../lib/PhpParser/Node/Stmt/Throw_.php | 30 + .../lib/PhpParser/Node/Stmt/TraitUse.php | 34 + .../Node/Stmt/TraitUseAdaptation.php | 13 + .../Node/Stmt/TraitUseAdaptation/Alias.php | 38 + .../Stmt/TraitUseAdaptation/Precedence.php | 34 + .../lib/PhpParser/Node/Stmt/Trait_.php | 32 + .../lib/PhpParser/Node/Stmt/TryCatch.php | 38 + .../lib/PhpParser/Node/Stmt/Unset_.php | 30 + .../lib/PhpParser/Node/Stmt/UseUse.php | 52 + .../lib/PhpParser/Node/Stmt/Use_.php | 47 + .../lib/PhpParser/Node/Stmt/While_.php | 34 + .../lib/PhpParser/Node/UnionType.php | 28 + .../lib/PhpParser/Node/VarLikeIdentifier.php | 17 + .../PhpParser/Node/VariadicPlaceholder.php | 27 + .../php-parser/lib/PhpParser/NodeAbstract.php | 178 + .../php-parser/lib/PhpParser/NodeDumper.php | 206 ++ .../php-parser/lib/PhpParser/NodeFinder.php | 81 + .../lib/PhpParser/NodeTraverser.php | 291 ++ .../lib/PhpParser/NodeTraverserInterface.php | 29 + .../php-parser/lib/PhpParser/NodeVisitor.php | 72 + .../PhpParser/NodeVisitor/CloningVisitor.php | 20 + .../PhpParser/NodeVisitor/FindingVisitor.php | 48 + .../NodeVisitor/FirstFindingVisitor.php | 50 + .../PhpParser/NodeVisitor/NameResolver.php | 257 ++ .../NodeVisitor/NodeConnectingVisitor.php | 52 + .../NodeVisitor/ParentConnectingVisitor.php | 41 + .../lib/PhpParser/NodeVisitorAbstract.php | 25 + .../nikic/php-parser/lib/PhpParser/Parser.php | 18 + .../lib/PhpParser/Parser/Multiple.php | 55 + .../php-parser/lib/PhpParser/Parser/Php5.php | 2672 +++++++++++++++ .../php-parser/lib/PhpParser/Parser/Php7.php | 2856 ++++++++++++++++ .../lib/PhpParser/Parser/Tokens.php | 148 + .../lib/PhpParser/ParserAbstract.php | 1039 ++++++ .../lib/PhpParser/ParserFactory.php | 44 + .../lib/PhpParser/PrettyPrinter/Standard.php | 1113 ++++++ .../lib/PhpParser/PrettyPrinterAbstract.php | 1521 +++++++++ www-api/vendor/phar-io/manifest/CHANGELOG.md | 36 + www-api/vendor/phar-io/manifest/LICENSE | 31 + www-api/vendor/phar-io/manifest/README.md | 30 + www-api/vendor/phar-io/manifest/composer.json | 42 + www-api/vendor/phar-io/manifest/composer.lock | 70 + .../manifest/src/ManifestDocumentMapper.php | 150 + .../phar-io/manifest/src/ManifestLoader.php | 44 + .../manifest/src/ManifestSerializer.php | 168 + .../exceptions/ElementCollectionException.php | 13 + .../manifest/src/exceptions/Exception.php | 13 + .../InvalidApplicationNameException.php | 14 + .../src/exceptions/InvalidEmailException.php | 13 + .../src/exceptions/InvalidUrlException.php | 13 + .../exceptions/ManifestDocumentException.php | 5 + .../ManifestDocumentLoadingException.php | 45 + .../ManifestDocumentMapperException.php | 5 + .../exceptions/ManifestElementException.php | 5 + .../exceptions/ManifestLoaderException.php | 5 + .../manifest/src/values/Application.php | 16 + .../manifest/src/values/ApplicationName.php | 37 + .../phar-io/manifest/src/values/Author.php | 39 + .../manifest/src/values/AuthorCollection.php | 34 + .../src/values/AuthorCollectionIterator.php | 42 + .../manifest/src/values/BundledComponent.php | 33 + .../src/values/BundledComponentCollection.php | 34 + .../BundledComponentCollectionIterator.php | 42 + .../src/values/CopyrightInformation.php | 31 + .../phar-io/manifest/src/values/Email.php | 31 + .../phar-io/manifest/src/values/Extension.php | 46 + .../phar-io/manifest/src/values/Library.php | 16 + .../phar-io/manifest/src/values/License.php | 31 + .../phar-io/manifest/src/values/Manifest.php | 92 + .../src/values/PhpExtensionRequirement.php | 23 + .../src/values/PhpVersionRequirement.php | 25 + .../manifest/src/values/Requirement.php | 13 + .../src/values/RequirementCollection.php | 34 + .../values/RequirementCollectionIterator.php | 42 + .../phar-io/manifest/src/values/Type.php | 41 + .../phar-io/manifest/src/values/Url.php | 36 + .../manifest/src/xml/AuthorElement.php | 20 + .../src/xml/AuthorElementCollection.php | 18 + .../manifest/src/xml/BundlesElement.php | 18 + .../manifest/src/xml/ComponentElement.php | 20 + .../src/xml/ComponentElementCollection.php | 18 + .../manifest/src/xml/ContainsElement.php | 30 + .../manifest/src/xml/CopyrightElement.php | 24 + .../manifest/src/xml/ElementCollection.php | 61 + .../phar-io/manifest/src/xml/ExtElement.php | 16 + .../manifest/src/xml/ExtElementCollection.php | 18 + .../manifest/src/xml/ExtensionElement.php | 20 + .../manifest/src/xml/LicenseElement.php | 20 + .../manifest/src/xml/ManifestDocument.php | 103 + .../manifest/src/xml/ManifestElement.php | 66 + .../phar-io/manifest/src/xml/PhpElement.php | 26 + .../manifest/src/xml/RequiresElement.php | 18 + www-api/vendor/phar-io/version/CHANGELOG.md | 142 + www-api/vendor/phar-io/version/LICENSE | 29 + www-api/vendor/phar-io/version/README.md | 61 + www-api/vendor/phar-io/version/composer.json | 34 + .../phar-io/version/src/BuildMetaData.php | 28 + .../phar-io/version/src/PreReleaseSuffix.php | 82 + .../vendor/phar-io/version/src/Version.php | 208 ++ .../version/src/VersionConstraintParser.php | 115 + .../version/src/VersionConstraintValue.php | 88 + .../phar-io/version/src/VersionNumber.php | 28 + .../constraints/AbstractVersionConstraint.php | 23 + .../constraints/AndVersionConstraintGroup.php | 34 + .../src/constraints/AnyVersionConstraint.php | 20 + .../constraints/ExactVersionConstraint.php | 22 + .../GreaterThanOrEqualToVersionConstraint.php | 26 + .../constraints/OrVersionConstraintGroup.php | 35 + ...SpecificMajorAndMinorVersionConstraint.php | 33 + .../SpecificMajorVersionConstraint.php | 25 + .../src/constraints/VersionConstraint.php | 16 + .../version/src/exceptions/Exception.php | 15 + .../InvalidPreReleaseSuffixException.php | 5 + .../exceptions/InvalidVersionException.php | 5 + .../exceptions/NoBuildMetaDataException.php | 5 + .../NoPreReleaseSuffixException.php | 5 + .../UnsupportedVersionConstraintException.php | 13 + .../phpunit/php-code-coverage/ChangeLog.md | 487 +++ .../vendor/phpunit/php-code-coverage/LICENSE | 33 + .../phpunit/php-code-coverage/README.md | 48 + .../phpunit/php-code-coverage/composer.json | 68 + .../php-code-coverage/src/CodeCoverage.php | 675 ++++ .../php-code-coverage/src/Driver/Driver.php | 167 + .../src/Driver/PcovDriver.php | 75 + .../src/Driver/PhpdbgDriver.php | 93 + .../php-code-coverage/src/Driver/Selector.php | 79 + .../src/Driver/Xdebug2Driver.php | 128 + .../src/Driver/Xdebug3Driver.php | 119 + ...chAndPathCoverageNotSupportedException.php | 16 + ...DeadCodeDetectionNotSupportedException.php | 16 + .../DirectoryCouldNotBeCreatedException.php | 17 + .../src/Exception/Exception.php | 16 + .../Exception/InvalidArgumentException.php | 14 + ...NoCodeCoverageDriverAvailableException.php | 20 + ...hPathCoverageSupportAvailableException.php | 20 + .../src/Exception/ParserException.php | 16 + .../PathExistsButIsNotDirectoryException.php | 22 + .../Exception/PcovNotAvailableException.php | 21 + .../Exception/PhpdbgNotAvailableException.php | 21 + .../src/Exception/ReflectionException.php | 16 + .../ReportAlreadyFinalizedException.php | 20 + ...ticAnalysisCacheNotConfiguredException.php | 16 + .../src/Exception/TestIdMissingException.php | 20 + .../UnintentionallyCoveredCodeException.php | 43 + .../WriteOperationFailedException.php | 22 + .../Exception/WrongXdebugVersionException.php | 17 + .../Exception/Xdebug2NotEnabledException.php | 21 + .../Exception/Xdebug3NotEnabledException.php | 21 + .../Exception/XdebugNotAvailableException.php | 21 + .../src/Exception/XmlException.php | 16 + .../phpunit/php-code-coverage/src/Filter.php | 118 + .../src/Node/AbstractNode.php | 253 ++ .../php-code-coverage/src/Node/Builder.php | 264 ++ .../php-code-coverage/src/Node/CrapIndex.php | 50 + .../php-code-coverage/src/Node/Directory.php | 440 +++ .../php-code-coverage/src/Node/File.php | 651 ++++ .../php-code-coverage/src/Node/Iterator.php | 90 + .../src/ProcessedCodeCoverageData.php | 255 ++ .../src/RawCodeCoverageData.php | 238 ++ .../php-code-coverage/src/Report/Clover.php | 255 ++ .../src/Report/Cobertura.php | 306 ++ .../php-code-coverage/src/Report/Crap4j.php | 153 + .../src/Report/Html/Facade.php | 147 + .../src/Report/Html/Renderer.php | 314 ++ .../src/Report/Html/Renderer/Dashboard.php | 288 ++ .../src/Report/Html/Renderer/Directory.php | 113 + .../src/Report/Html/Renderer/File.php | 1162 +++++++ .../Html/Renderer/Template/branches.html.dist | 9 + .../Renderer/Template/coverage_bar.html.dist | 5 + .../Template/coverage_bar_branch.html.dist | 5 + .../Renderer/Template/css/bootstrap.min.css | 7 + .../Html/Renderer/Template/css/custom.css | 0 .../Html/Renderer/Template/css/nv.d3.min.css | 1 + .../Html/Renderer/Template/css/octicons.css | 5 + .../Html/Renderer/Template/css/style.css | 130 + .../Renderer/Template/dashboard.html.dist | 281 ++ .../Template/dashboard_branch.html.dist | 281 ++ .../Renderer/Template/directory.html.dist | 60 + .../Template/directory_branch.html.dist | 62 + .../Template/directory_item.html.dist | 13 + .../Template/directory_item_branch.html.dist | 19 + .../Html/Renderer/Template/file.html.dist | 65 + .../Renderer/Template/file_branch.html.dist | 67 + .../Renderer/Template/file_item.html.dist | 14 + .../Template/file_item_branch.html.dist | 20 + .../Renderer/Template/icons/file-code.svg | 1 + .../Template/icons/file-directory.svg | 1 + .../Renderer/Template/js/bootstrap.min.js | 7 + .../Html/Renderer/Template/js/d3.min.js | 5 + .../Report/Html/Renderer/Template/js/file.js | 62 + .../Html/Renderer/Template/js/jquery.min.js | 2 + .../Html/Renderer/Template/js/nv.d3.min.js | 8 + .../Html/Renderer/Template/js/popper.min.js | 5 + .../Html/Renderer/Template/line.html.dist | 1 + .../Html/Renderer/Template/lines.html.dist | 5 + .../Renderer/Template/method_item.html.dist | 12 + .../Template/method_item_branch.html.dist | 18 + .../Html/Renderer/Template/paths.html.dist | 9 + .../php-code-coverage/src/Report/PHP.php | 43 + .../php-code-coverage/src/Report/Text.php | 341 ++ .../src/Report/Xml/BuildInformation.php | 88 + .../src/Report/Xml/Coverage.php | 74 + .../src/Report/Xml/Directory.php | 17 + .../src/Report/Xml/Facade.php | 315 ++ .../php-code-coverage/src/Report/Xml/File.php | 87 + .../src/Report/Xml/Method.php | 61 + .../php-code-coverage/src/Report/Xml/Node.php | 93 + .../src/Report/Xml/Project.php | 90 + .../src/Report/Xml/Report.php | 99 + .../src/Report/Xml/Source.php | 42 + .../src/Report/Xml/Tests.php | 51 + .../src/Report/Xml/Totals.php | 146 + .../php-code-coverage/src/Report/Xml/Unit.php | 78 + .../src/StaticAnalysis/CacheWarmer.php | 30 + .../StaticAnalysis/CachingFileAnalyser.php | 184 + .../StaticAnalysis/CodeUnitFindingVisitor.php | 326 ++ .../ExecutableLinesFindingVisitor.php | 341 ++ .../src/StaticAnalysis/FileAnalyser.php | 31 + .../IgnoredLinesFindingVisitor.php | 119 + .../StaticAnalysis/ParsingFileAnalyser.php | 253 ++ .../php-code-coverage/src/Util/Filesystem.php | 37 + .../php-code-coverage/src/Util/Percentage.php | 66 + .../phpunit/php-code-coverage/src/Version.php | 30 + .../php-file-iterator/.psalm/baseline.xml | 8 + .../php-file-iterator/.psalm/config.xml | 16 + .../phpunit/php-file-iterator/ChangeLog.md | 144 + .../vendor/phpunit/php-file-iterator/LICENSE | 33 + .../phpunit/php-file-iterator/README.md | 14 + .../phpunit/php-file-iterator/composer.json | 45 + .../phpunit/php-file-iterator/src/Facade.php | 115 + .../phpunit/php-file-iterator/src/Factory.php | 91 + .../php-file-iterator/src/Iterator.php | 119 + .../vendor/phpunit/php-invoker/ChangeLog.md | 48 + www-api/vendor/phpunit/php-invoker/LICENSE | 33 + www-api/vendor/phpunit/php-invoker/README.md | 18 + .../vendor/phpunit/php-invoker/composer.json | 54 + .../phpunit/php-invoker/src/Invoker.php | 69 + .../php-invoker/src/exceptions/Exception.php | 16 + ...cessControlExtensionNotLoadedException.php | 16 + .../src/exceptions/TimeoutException.php | 16 + .../php-text-template/.psalm/baseline.xml | 2 + .../php-text-template/.psalm/config.xml | 16 + .../phpunit/php-text-template/ChangeLog.md | 43 + .../vendor/phpunit/php-text-template/LICENSE | 33 + .../phpunit/php-text-template/README.md | 12 + .../phpunit/php-text-template/composer.json | 43 + .../php-text-template/src/Template.php | 107 + .../src/exceptions/Exception.php | 16 + .../exceptions/InvalidArgumentException.php | 14 + .../src/exceptions/RuntimeException.php | 16 + .../phpunit/php-timer/.psalm/baseline.xml | 2 + .../phpunit/php-timer/.psalm/config.xml | 16 + www-api/vendor/phpunit/php-timer/ChangeLog.md | 138 + www-api/vendor/phpunit/php-timer/LICENSE | 33 + www-api/vendor/phpunit/php-timer/README.md | 104 + .../vendor/phpunit/php-timer/composer.json | 45 + .../vendor/phpunit/php-timer/src/Duration.php | 109 + .../php-timer/src/ResourceUsageFormatter.php | 73 + .../vendor/phpunit/php-timer/src/Timer.php | 40 + .../php-timer/src/exceptions/Exception.php | 16 + .../src/exceptions/NoActiveTimerException.php | 16 + ...nceStartOfRequestNotAvailableException.php | 16 + .../vendor/phpunit/phpunit/.phpstorm.meta.php | 33 + .../vendor/phpunit/phpunit/ChangeLog-8.5.md | 290 ++ .../vendor/phpunit/phpunit/ChangeLog-9.5.md | 235 ++ www-api/vendor/phpunit/phpunit/LICENSE | 29 + www-api/vendor/phpunit/phpunit/README.md | 45 + www-api/vendor/phpunit/phpunit/SECURITY.md | 11 + www-api/vendor/phpunit/phpunit/composer.json | 89 + www-api/vendor/phpunit/phpunit/phpunit | 98 + www-api/vendor/phpunit/phpunit/phpunit.xsd | 330 ++ www-api/vendor/phpunit/phpunit/schema/8.5.xsd | 317 ++ www-api/vendor/phpunit/phpunit/schema/9.2.xsd | 317 ++ .../vendor/phpunit/phpunit/src/Exception.php | 19 + .../phpunit/phpunit/src/Framework/Assert.php | 2860 ++++++++++++++++ .../src/Framework/Assert/Functions.php | 3042 +++++++++++++++++ .../Framework/Constraint/Boolean/IsFalse.php | 35 + .../Framework/Constraint/Boolean/IsTrue.php | 35 + .../src/Framework/Constraint/Callback.php | 52 + .../Constraint/Cardinality/Count.php | 142 + .../Constraint/Cardinality/GreaterThan.php | 50 + .../Constraint/Cardinality/IsEmpty.php | 70 + .../Constraint/Cardinality/LessThan.php | 50 + .../Constraint/Cardinality/SameSize.php | 21 + .../src/Framework/Constraint/Constraint.php | 270 ++ .../Framework/Constraint/Equality/IsEqual.php | 138 + .../Equality/IsEqualCanonicalizing.php | 108 + .../Equality/IsEqualIgnoringCase.php | 108 + .../Constraint/Equality/IsEqualWithDelta.php | 100 + .../Constraint/Exception/Exception.php | 85 + .../Constraint/Exception/ExceptionCode.php | 67 + .../Constraint/Exception/ExceptionMessage.php | 78 + .../ExceptionMessageRegularExpression.php | 74 + .../Constraint/Filesystem/DirectoryExists.php | 54 + .../Constraint/Filesystem/FileExists.php | 54 + .../Constraint/Filesystem/IsReadable.php | 54 + .../Constraint/Filesystem/IsWritable.php | 54 + .../src/Framework/Constraint/IsAnything.php | 51 + .../src/Framework/Constraint/IsIdentical.php | 126 + .../src/Framework/Constraint/JsonMatches.php | 109 + .../JsonMatchesErrorMessageProvider.php | 72 + .../Framework/Constraint/Math/IsFinite.php | 37 + .../Framework/Constraint/Math/IsInfinite.php | 37 + .../src/Framework/Constraint/Math/IsNan.php | 37 + .../Constraint/Object/ClassHasAttribute.php | 88 + .../Object/ClassHasStaticAttribute.php | 59 + .../Constraint/Object/ObjectEquals.php | 151 + .../Constraint/Object/ObjectHasAttribute.php | 29 + .../Constraint/Operator/BinaryOperator.php | 148 + .../Constraint/Operator/LogicalAnd.php | 51 + .../Constraint/Operator/LogicalNot.php | 136 + .../Constraint/Operator/LogicalOr.php | 51 + .../Constraint/Operator/LogicalXor.php | 63 + .../Constraint/Operator/Operator.php | 55 + .../Constraint/Operator/UnaryOperator.php | 140 + .../Framework/Constraint/String/IsJson.php | 77 + .../Constraint/String/RegularExpression.php | 51 + .../Constraint/String/StringContains.php | 85 + .../Constraint/String/StringEndsWith.php | 48 + .../String/StringMatchesFormatDescription.php | 109 + .../Constraint/String/StringStartsWith.php | 53 + .../Constraint/Traversable/ArrayHasKey.php | 77 + .../Traversable/TraversableContains.php | 63 + .../Traversable/TraversableContainsEqual.php | 40 + .../TraversableContainsIdentical.php | 39 + .../Traversable/TraversableContainsOnly.php | 91 + .../Constraint/Type/IsInstanceOf.php | 87 + .../src/Framework/Constraint/Type/IsNull.php | 35 + .../src/Framework/Constraint/Type/IsType.php | 210 ++ .../src/Framework/DataProviderTestSuite.php | 75 + .../src/Framework/Error/Deprecated.php | 17 + .../phpunit/src/Framework/Error/Error.php | 26 + .../phpunit/src/Framework/Error/Notice.php | 17 + .../phpunit/src/Framework/Error/Warning.php | 17 + .../phpunit/src/Framework/ErrorTestCase.php | 66 + .../ActualValueIsNotAnObjectException.php | 32 + .../Exception/AssertionFailedError.php | 24 + .../Exception/CodeCoverageException.php | 17 + ...hodDoesNotAcceptParameterTypeException.php | 38 + ...dDoesNotDeclareBoolReturnTypeException.php | 37 + ...NotDeclareExactlyOneParameterException.php | 37 + ...odDoesNotDeclareParameterTypeException.php | 37 + .../ComparisonMethodDoesNotExistException.php | 37 + .../CoveredCodeNotExecutedException.php | 17 + .../phpunit/src/Framework/Exception/Error.php | 24 + .../src/Framework/Exception/Exception.php | 81 + .../Exception/ExpectationFailedException.php | 42 + .../Exception/IncompleteTestError.php | 17 + .../Exception/InvalidArgumentException.php | 46 + .../InvalidCoversTargetException.php | 17 + .../InvalidDataProviderException.php | 17 + .../MissingCoversAnnotationException.php | 17 + .../Exception/NoChildTestSuiteException.php | 17 + .../src/Framework/Exception/OutputError.php | 17 + .../Exception/PHPTAssertionFailedError.php | 32 + .../Framework/Exception/RiskyTestError.php | 17 + .../Framework/Exception/SkippedTestError.php | 17 + .../Exception/SkippedTestSuiteError.php | 17 + .../Framework/Exception/SyntheticError.php | 61 + .../Exception/SyntheticSkippedError.php | 17 + .../UnintentionallyCoveredCodeError.php | 17 + .../src/Framework/Exception/Warning.php | 24 + .../src/Framework/ExceptionWrapper.php | 138 + .../Framework/ExecutionOrderDependency.php | 206 ++ .../phpunit/src/Framework/IncompleteTest.php | 19 + .../src/Framework/IncompleteTestCase.php | 66 + .../InvalidParameterGroupException.php | 17 + .../src/Framework/MockObject/Api/Api.php | 97 + .../src/Framework/MockObject/Api/Method.php | 30 + .../Framework/MockObject/Builder/Identity.php | 25 + .../MockObject/Builder/InvocationMocker.php | 306 ++ .../MockObject/Builder/InvocationStubber.php | 65 + .../MockObject/Builder/MethodNameMatch.php | 26 + .../MockObject/Builder/ParametersMatch.php | 58 + .../src/Framework/MockObject/Builder/Stub.php | 24 + .../MockObject/ConfigurableMethod.php | 53 + .../Exception/BadMethodCallException.php | 17 + .../CannotUseAddMethodsException.php | 29 + .../CannotUseOnlyMethodsException.php | 29 + .../Exception/ClassAlreadyExistsException.php | 28 + .../Exception/ClassIsFinalException.php | 28 + ...ableMethodsAlreadyInitializedException.php | 17 + .../Exception/DuplicateMethodException.php | 35 + .../MockObject/Exception/Exception.php | 19 + .../IncompatibleReturnValueException.php | 36 + .../Exception/InvalidMethodNameException.php | 28 + .../MatchBuilderNotFoundException.php | 28 + .../MatcherAlreadyRegisteredException.php | 28 + .../MethodCannotBeConfiguredException.php | 28 + .../MethodNameAlreadyConfiguredException.php | 21 + .../MethodNameNotConfiguredException.php | 21 + ...odParametersAlreadyConfiguredException.php | 21 + ...ConstructorInvocationRequiredException.php | 21 + .../Exception/ReflectionException.php | 19 + .../ReturnValueNotConfiguredException.php | 29 + .../MockObject/Exception/RuntimeException.php | 17 + .../SoapExtensionNotAvailableException.php | 23 + .../Exception/UnknownClassException.php | 28 + .../Exception/UnknownTraitException.php | 28 + .../Exception/UnknownTypeException.php | 28 + .../src/Framework/MockObject/Generator.php | 1153 +++++++ .../MockObject/Generator/deprecation.tpl | 2 + .../MockObject/Generator/intersection.tpl | 5 + .../MockObject/Generator/mocked_class.tpl | 6 + .../MockObject/Generator/mocked_method.tpl | 22 + .../Generator/mocked_method_never_or_void.tpl | 20 + .../Generator/mocked_static_method.tpl | 5 + .../MockObject/Generator/proxied_method.tpl | 22 + .../proxied_method_never_or_void.tpl | 22 + .../MockObject/Generator/trait_class.tpl | 6 + .../MockObject/Generator/wsdl_class.tpl | 9 + .../MockObject/Generator/wsdl_method.tpl | 4 + .../src/Framework/MockObject/Invocation.php | 301 ++ .../MockObject/InvocationHandler.php | 186 + .../src/Framework/MockObject/Matcher.php | 274 ++ .../MockObject/MethodNameConstraint.php | 48 + .../src/Framework/MockObject/MockBuilder.php | 516 +++ .../src/Framework/MockObject/MockClass.php | 69 + .../src/Framework/MockObject/MockMethod.php | 380 ++ .../Framework/MockObject/MockMethodSet.php | 45 + .../src/Framework/MockObject/MockObject.php | 27 + .../src/Framework/MockObject/MockTrait.php | 54 + .../src/Framework/MockObject/MockType.php | 21 + .../MockObject/Rule/AnyInvokedCount.php | 36 + .../MockObject/Rule/AnyParameters.php | 31 + .../MockObject/Rule/ConsecutiveParameters.php | 130 + .../MockObject/Rule/InvocationOrder.php | 47 + .../MockObject/Rule/InvokedAtIndex.php | 76 + .../MockObject/Rule/InvokedAtLeastCount.php | 64 + .../MockObject/Rule/InvokedAtLeastOnce.php | 50 + .../MockObject/Rule/InvokedAtMostCount.php | 64 + .../MockObject/Rule/InvokedCount.php | 102 + .../Framework/MockObject/Rule/MethodName.php | 68 + .../Framework/MockObject/Rule/Parameters.php | 160 + .../MockObject/Rule/ParametersRule.php | 28 + .../phpunit/src/Framework/MockObject/Stub.php | 26 + .../MockObject/Stub/ConsecutiveCalls.php | 57 + .../Framework/MockObject/Stub/Exception.php | 46 + .../MockObject/Stub/ReturnArgument.php | 41 + .../MockObject/Stub/ReturnCallback.php | 59 + .../MockObject/Stub/ReturnReference.php | 45 + .../Framework/MockObject/Stub/ReturnSelf.php | 32 + .../Framework/MockObject/Stub/ReturnStub.php | 45 + .../MockObject/Stub/ReturnValueMap.php | 53 + .../src/Framework/MockObject/Stub/Stub.php | 27 + .../src/Framework/MockObject/Verifiable.php | 26 + .../phpunit/src/Framework/Reorderable.php | 28 + .../phpunit/src/Framework/SelfDescribing.php | 21 + .../phpunit/src/Framework/SkippedTest.php | 19 + .../phpunit/src/Framework/SkippedTestCase.php | 66 + .../phpunit/phpunit/src/Framework/Test.php | 23 + .../phpunit/src/Framework/TestBuilder.php | 239 ++ .../phpunit/src/Framework/TestCase.php | 2605 ++++++++++++++ .../phpunit/src/Framework/TestFailure.php | 155 + .../phpunit/src/Framework/TestListener.php | 45 + .../TestListenerDefaultImplementation.php | 60 + .../phpunit/src/Framework/TestResult.php | 1322 +++++++ .../phpunit/src/Framework/TestSuite.php | 910 +++++ .../src/Framework/TestSuiteIterator.php | 83 + .../phpunit/src/Framework/WarningTestCase.php | 66 + .../phpunit/src/Runner/BaseTestRunner.php | 161 + .../src/Runner/DefaultTestResultCache.php | 158 + .../phpunit/phpunit/src/Runner/Exception.php | 19 + .../src/Runner/Extension/ExtensionHandler.php | 118 + .../src/Runner/Extension/PharLoader.php | 77 + .../Filter/ExcludeGroupFilterIterator.php | 23 + .../phpunit/src/Runner/Filter/Factory.php | 61 + .../src/Runner/Filter/GroupFilterIterator.php | 58 + .../Filter/IncludeGroupFilterIterator.php | 23 + .../src/Runner/Filter/NameFilterIterator.php | 136 + .../Runner/Hook/AfterIncompleteTestHook.php | 24 + .../src/Runner/Hook/AfterLastTestHook.php | 24 + .../src/Runner/Hook/AfterRiskyTestHook.php | 24 + .../src/Runner/Hook/AfterSkippedTestHook.php | 24 + .../Runner/Hook/AfterSuccessfulTestHook.php | 24 + .../src/Runner/Hook/AfterTestErrorHook.php | 24 + .../src/Runner/Hook/AfterTestFailureHook.php | 24 + .../phpunit/src/Runner/Hook/AfterTestHook.php | 30 + .../src/Runner/Hook/AfterTestWarningHook.php | 24 + .../src/Runner/Hook/BeforeFirstTestHook.php | 24 + .../src/Runner/Hook/BeforeTestHook.php | 24 + .../phpunit/phpunit/src/Runner/Hook/Hook.php | 23 + .../phpunit/src/Runner/Hook/TestHook.php | 23 + .../src/Runner/Hook/TestListenerAdapter.php | 141 + .../src/Runner/NullTestResultCache.php | 42 + .../phpunit/src/Runner/PhptTestCase.php | 864 +++++ .../src/Runner/ResultCacheExtension.php | 110 + .../src/Runner/StandardTestSuiteLoader.php | 124 + .../phpunit/src/Runner/TestResultCache.php | 28 + .../phpunit/src/Runner/TestSuiteLoader.php | 24 + .../phpunit/src/Runner/TestSuiteSorter.php | 394 +++ .../phpunit/phpunit/src/Runner/Version.php | 65 + .../src/TextUI/CliArguments/Builder.php | 887 +++++ .../src/TextUI/CliArguments/Configuration.php | 2108 ++++++++++++ .../src/TextUI/CliArguments/Exception.php | 19 + .../src/TextUI/CliArguments/Mapper.php | 365 ++ .../phpunit/phpunit/src/TextUI/Command.php | 1006 ++++++ .../src/TextUI/DefaultResultPrinter.php | 593 ++++ .../src/TextUI/Exception/Exception.php | 19 + .../TextUI/Exception/ReflectionException.php | 19 + .../src/TextUI/Exception/RuntimeException.php | 17 + .../TestDirectoryNotFoundException.php | 29 + .../Exception/TestFileNotFoundException.php | 29 + .../phpunit/phpunit/src/TextUI/Help.php | 265 ++ .../phpunit/src/TextUI/ResultPrinter.php | 23 + .../phpunit/phpunit/src/TextUI/TestRunner.php | 1270 +++++++ .../phpunit/src/TextUI/TestSuiteMapper.php | 103 + .../CodeCoverage/CodeCoverage.php | 363 ++ .../CodeCoverage/Filter/Directory.php | 66 + .../Filter/DirectoryCollection.php | 58 + .../Filter/DirectoryCollectionIterator.php | 66 + .../CodeCoverage/FilterMapper.php | 45 + .../CodeCoverage/Report/Clover.php | 35 + .../CodeCoverage/Report/Cobertura.php | 35 + .../CodeCoverage/Report/Crap4j.php | 46 + .../CodeCoverage/Report/Html.php | 57 + .../CodeCoverage/Report/Php.php | 35 + .../CodeCoverage/Report/Text.php | 57 + .../CodeCoverage/Report/Xml.php | 35 + .../TextUI/XmlConfiguration/Configuration.php | 152 + .../src/TextUI/XmlConfiguration/Exception.php | 19 + .../XmlConfiguration/Filesystem/Directory.php | 33 + .../Filesystem/DirectoryCollection.php | 63 + .../DirectoryCollectionIterator.php | 66 + .../XmlConfiguration/Filesystem/File.php | 33 + .../Filesystem/FileCollection.php | 63 + .../Filesystem/FileCollectionIterator.php | 66 + .../src/TextUI/XmlConfiguration/Generator.php | 73 + .../TextUI/XmlConfiguration/Group/Group.php | 33 + .../Group/GroupCollection.php | 70 + .../Group/GroupCollectionIterator.php | 66 + .../TextUI/XmlConfiguration/Group/Groups.php | 54 + .../src/TextUI/XmlConfiguration/Loader.php | 1264 +++++++ .../TextUI/XmlConfiguration/Logging/Junit.php | 35 + .../XmlConfiguration/Logging/Logging.php | 147 + .../XmlConfiguration/Logging/TeamCity.php | 35 + .../XmlConfiguration/Logging/TestDox/Html.php | 35 + .../XmlConfiguration/Logging/TestDox/Text.php | 35 + .../XmlConfiguration/Logging/TestDox/Xml.php | 35 + .../TextUI/XmlConfiguration/Logging/Text.php | 35 + .../Migration/MigrationBuilder.php | 73 + .../Migration/MigrationBuilderException.php | 19 + .../Migration/MigrationException.php | 19 + .../Migration/Migrations/ConvertLogTypes.php | 53 + .../Migrations/CoverageCloverToReport.php | 31 + .../Migrations/CoverageCrap4jToReport.php | 33 + .../Migrations/CoverageHtmlToReport.php | 33 + .../Migrations/CoveragePhpToReport.php | 31 + .../Migrations/CoverageTextToReport.php | 33 + .../Migrations/CoverageXmlToReport.php | 31 + .../Migrations/IntroduceCoverageElement.php | 28 + .../Migrations/LogToReportMigration.php | 79 + .../Migration/Migrations/Migration.php | 20 + ...ttributesFromFilterWhitelistToCoverage.php | 51 + .../MoveAttributesFromRootToCoverage.php | 47 + .../MoveWhitelistDirectoriesToCoverage.php | 49 + .../MoveWhitelistExcludesToCoverage.php | 72 + .../Migrations/RemoveCacheTokensAttribute.php | 27 + .../Migrations/RemoveEmptyFilter.php | 54 + .../Migration/Migrations/RemoveLogTypes.php | 37 + .../Migrations/UpdateSchemaLocationTo93.php | 27 + .../XmlConfiguration/Migration/Migrator.php | 57 + .../TextUI/XmlConfiguration/PHP/Constant.php | 44 + .../PHP/ConstantCollection.php | 58 + .../PHP/ConstantCollectionIterator.php | 66 + .../XmlConfiguration/PHP/IniSetting.php | 44 + .../PHP/IniSettingCollection.php | 58 + .../PHP/IniSettingCollectionIterator.php | 66 + .../src/TextUI/XmlConfiguration/PHP/Php.php | 143 + .../XmlConfiguration/PHP/PhpHandler.php | 121 + .../TextUI/XmlConfiguration/PHP/Variable.php | 55 + .../PHP/VariableCollection.php | 58 + .../PHP/VariableCollectionIterator.php | 66 + .../XmlConfiguration/PHPUnit/Extension.php | 73 + .../PHPUnit/ExtensionCollection.php | 51 + .../PHPUnit/ExtensionCollectionIterator.php | 66 + .../XmlConfiguration/PHPUnit/PHPUnit.php | 715 ++++ .../TestSuite/TestDirectory.php | 79 + .../TestSuite/TestDirectoryCollection.php | 63 + .../TestDirectoryCollectionIterator.php | 66 + .../XmlConfiguration/TestSuite/TestFile.php | 57 + .../TestSuite/TestFileCollection.php | 63 + .../TestSuite/TestFileCollectionIterator.php | 66 + .../XmlConfiguration/TestSuite/TestSuite.php | 66 + .../TestSuite/TestSuiteCollection.php | 63 + .../TestSuite/TestSuiteCollectionIterator.php | 66 + .../phpunit/src/Util/Annotation/DocBlock.php | 551 +++ .../phpunit/src/Util/Annotation/Registry.php | 95 + .../phpunit/phpunit/src/Util/Blacklist.php | 41 + .../phpunit/phpunit/src/Util/Cloner.php | 34 + .../vendor/phpunit/phpunit/src/Util/Color.php | 159 + .../phpunit/phpunit/src/Util/ErrorHandler.php | 156 + .../phpunit/phpunit/src/Util/Exception.php | 19 + .../phpunit/phpunit/src/Util/ExcludeList.php | 253 ++ .../phpunit/phpunit/src/Util/FileLoader.php | 84 + .../phpunit/phpunit/src/Util/Filesystem.php | 41 + .../phpunit/phpunit/src/Util/Filter.php | 115 + .../phpunit/phpunit/src/Util/GlobalState.php | 203 ++ .../src/Util/InvalidDataSetException.php | 19 + .../vendor/phpunit/phpunit/src/Util/Json.php | 98 + .../phpunit/phpunit/src/Util/Log/JUnit.php | 424 +++ .../phpunit/phpunit/src/Util/Log/TeamCity.php | 383 +++ .../src/Util/PHP/AbstractPhpProcess.php | 416 +++ .../src/Util/PHP/DefaultPhpProcess.php | 236 ++ .../src/Util/PHP/Template/PhptTestCase.tpl | 57 + .../src/Util/PHP/Template/TestCaseClass.tpl | 119 + .../src/Util/PHP/Template/TestCaseMethod.tpl | 122 + .../src/Util/PHP/WindowsPhpProcess.php | 52 + .../phpunit/phpunit/src/Util/Printer.php | 116 + .../phpunit/phpunit/src/Util/Reflection.php | 63 + .../phpunit/src/Util/RegularExpression.php | 31 + .../vendor/phpunit/phpunit/src/Util/Test.php | 783 +++++ .../src/Util/TestDox/CliTestDoxPrinter.php | 381 +++ .../src/Util/TestDox/HtmlResultPrinter.php | 140 + .../src/Util/TestDox/NamePrettifier.php | 312 ++ .../src/Util/TestDox/ResultPrinter.php | 343 ++ .../src/Util/TestDox/TestDoxPrinter.php | 388 +++ .../src/Util/TestDox/TextResultPrinter.php | 52 + .../src/Util/TestDox/XmlResultPrinter.php | 261 ++ .../phpunit/src/Util/TextTestListRenderer.php | 54 + .../vendor/phpunit/phpunit/src/Util/Type.php | 39 + .../src/Util/VersionComparisonOperator.php | 58 + .../src/Util/XdebugFilterScriptGenerator.php | 81 + .../vendor/phpunit/phpunit/src/Util/Xml.php | 193 ++ .../phpunit/src/Util/Xml/Exception.php | 19 + .../Util/Xml/FailedSchemaDetectionResult.php | 19 + .../phpunit/phpunit/src/Util/Xml/Loader.php | 117 + .../src/Util/Xml/SchemaDetectionResult.php | 31 + .../phpunit/src/Util/Xml/SchemaDetector.php | 39 + .../phpunit/src/Util/Xml/SchemaFinder.php | 53 + .../phpunit/src/Util/Xml/SnapshotNodeList.php | 49 + .../Xml/SuccessfulSchemaDetectionResult.php | 38 + .../phpunit/src/Util/Xml/ValidationResult.php | 69 + .../phpunit/src/Util/Xml/Validator.php | 35 + .../phpunit/src/Util/XmlTestListRenderer.php | 91 + .../vendor/sebastian/cli-parser/ChangeLog.md | 15 + www-api/vendor/sebastian/cli-parser/LICENSE | 33 + www-api/vendor/sebastian/cli-parser/README.md | 17 + .../vendor/sebastian/cli-parser/composer.json | 41 + .../sebastian/cli-parser/infection.json | 12 + .../sebastian/cli-parser/src/Parser.php | 204 ++ .../exceptions/AmbiguousOptionException.php | 26 + .../cli-parser/src/exceptions/Exception.php | 16 + .../OptionDoesNotAllowArgumentException.php | 26 + ...RequiredOptionArgumentMissingException.php | 26 + .../src/exceptions/UnknownOptionException.php | 26 + .../code-unit-reverse-lookup/ChangeLog.md | 38 + .../code-unit-reverse-lookup/LICENSE | 33 + .../code-unit-reverse-lookup/README.md | 20 + .../code-unit-reverse-lookup/composer.json | 36 + .../code-unit-reverse-lookup/src/Wizard.php | 125 + .../sebastian/code-unit/.psalm/baseline.xml | 23 + .../sebastian/code-unit/.psalm/config.xml | 16 + .../vendor/sebastian/code-unit/ChangeLog.md | 65 + www-api/vendor/sebastian/code-unit/LICENSE | 33 + www-api/vendor/sebastian/code-unit/README.md | 17 + .../vendor/sebastian/code-unit/composer.json | 50 + .../code-unit/src/ClassMethodUnit.php | 24 + .../sebastian/code-unit/src/ClassUnit.php | 24 + .../sebastian/code-unit/src/CodeUnit.php | 445 +++ .../code-unit/src/CodeUnitCollection.php | 84 + .../src/CodeUnitCollectionIterator.php | 55 + .../sebastian/code-unit/src/FunctionUnit.php | 24 + .../code-unit/src/InterfaceMethodUnit.php | 24 + .../sebastian/code-unit/src/InterfaceUnit.php | 24 + .../vendor/sebastian/code-unit/src/Mapper.php | 414 +++ .../code-unit/src/TraitMethodUnit.php | 24 + .../sebastian/code-unit/src/TraitUnit.php | 24 + .../code-unit/src/exceptions/Exception.php | 16 + .../exceptions/InvalidCodeUnitException.php | 16 + .../src/exceptions/NoTraitException.php | 16 + .../src/exceptions/ReflectionException.php | 16 + .../vendor/sebastian/comparator/ChangeLog.md | 143 + www-api/vendor/sebastian/comparator/LICENSE | 33 + www-api/vendor/sebastian/comparator/README.md | 41 + .../vendor/sebastian/comparator/composer.json | 57 + .../comparator/src/ArrayComparator.php | 141 + .../sebastian/comparator/src/Comparator.php | 61 + .../comparator/src/ComparisonFailure.php | 129 + .../comparator/src/DOMNodeComparator.php | 93 + .../comparator/src/DateTimeComparator.php | 95 + .../comparator/src/DoubleComparator.php | 61 + .../comparator/src/ExceptionComparator.php | 54 + .../sebastian/comparator/src/Factory.php | 141 + .../comparator/src/MockObjectComparator.php | 48 + .../comparator/src/NumericComparator.php | 84 + .../comparator/src/ObjectComparator.php | 112 + .../comparator/src/ResourceComparator.php | 54 + .../comparator/src/ScalarComparator.php | 99 + .../src/SplObjectStorageComparator.php | 71 + .../comparator/src/TypeComparator.php | 62 + .../comparator/src/exceptions/Exception.php | 16 + .../src/exceptions/RuntimeException.php | 14 + .../sebastian/complexity/.psalm/baseline.xml | 2 + .../sebastian/complexity/.psalm/config.xml | 16 + .../vendor/sebastian/complexity/ChangeLog.md | 30 + www-api/vendor/sebastian/complexity/LICENSE | 33 + www-api/vendor/sebastian/complexity/README.md | 22 + .../vendor/sebastian/complexity/composer.json | 41 + .../sebastian/complexity/src/Calculator.php | 88 + .../complexity/src/Complexity/Complexity.php | 42 + .../src/Complexity/ComplexityCollection.php | 72 + .../ComplexityCollectionIterator.php | 55 + .../complexity/src/Exception/Exception.php | 16 + .../src/Exception/RuntimeException.php | 14 + .../Visitor/ComplexityCalculatingVisitor.php | 109 + ...CyclomaticComplexityCalculatingVisitor.php | 59 + www-api/vendor/sebastian/diff/ChangeLog.md | 88 + www-api/vendor/sebastian/diff/LICENSE | 33 + www-api/vendor/sebastian/diff/README.md | 202 ++ www-api/vendor/sebastian/diff/composer.json | 47 + www-api/vendor/sebastian/diff/src/Chunk.php | 89 + www-api/vendor/sebastian/diff/src/Diff.php | 64 + www-api/vendor/sebastian/diff/src/Differ.php | 327 ++ .../src/Exception/ConfigurationException.php | 38 + .../diff/src/Exception/Exception.php | 16 + .../Exception/InvalidArgumentException.php | 14 + www-api/vendor/sebastian/diff/src/Line.php | 45 + .../LongestCommonSubsequenceCalculator.php | 18 + ...ientLongestCommonSubsequenceCalculator.php | 88 + .../src/Output/AbstractChunkOutputBuilder.php | 52 + .../diff/src/Output/DiffOnlyOutputBuilder.php | 72 + .../src/Output/DiffOutputBuilderInterface.php | 19 + .../Output/StrictUnifiedDiffOutputBuilder.php | 338 ++ .../src/Output/UnifiedDiffOutputBuilder.php | 272 ++ www-api/vendor/sebastian/diff/src/Parser.php | 110 + ...ientLongestCommonSubsequenceCalculator.php | 70 + .../vendor/sebastian/environment/ChangeLog.md | 176 + www-api/vendor/sebastian/environment/LICENSE | 33 + .../vendor/sebastian/environment/README.md | 21 + .../sebastian/environment/composer.json | 40 + .../sebastian/environment/src/Console.php | 189 + .../environment/src/OperatingSystem.php | 53 + .../sebastian/environment/src/Runtime.php | 321 ++ .../vendor/sebastian/exporter/ChangeLog.md | 78 + www-api/vendor/sebastian/exporter/LICENSE | 33 + www-api/vendor/sebastian/exporter/README.md | 174 + .../vendor/sebastian/exporter/composer.json | 56 + .../sebastian/exporter/src/Exporter.php | 346 ++ .../sebastian/global-state/ChangeLog.md | 79 + www-api/vendor/sebastian/global-state/LICENSE | 33 + .../vendor/sebastian/global-state/README.md | 20 + .../sebastian/global-state/composer.json | 51 + .../global-state/src/CodeExporter.php | 109 + .../global-state/src/ExcludeList.php | 119 + .../sebastian/global-state/src/Restorer.php | 143 + .../sebastian/global-state/src/Snapshot.php | 443 +++ .../global-state/src/exceptions/Exception.php | 16 + .../src/exceptions/RuntimeException.php | 14 + .../lines-of-code/.psalm/baseline.xml | 2 + .../sebastian/lines-of-code/.psalm/config.xml | 16 + .../sebastian/lines-of-code/ChangeLog.md | 34 + .../vendor/sebastian/lines-of-code/LICENSE | 33 + .../vendor/sebastian/lines-of-code/README.md | 22 + .../sebastian/lines-of-code/composer.json | 42 + .../sebastian/lines-of-code/src/Counter.php | 91 + .../lines-of-code/src/Exception/Exception.php | 16 + .../Exception/IllogicalValuesException.php | 16 + .../src/Exception/NegativeValueException.php | 16 + .../src/Exception/RuntimeException.php | 14 + .../lines-of-code/src/LineCountingVisitor.php | 82 + .../lines-of-code/src/LinesOfCode.php | 98 + .../object-enumerator/.psalm/baseline.xml | 9 + .../object-enumerator/.psalm/config.xml | 16 + .../sebastian/object-enumerator/ChangeLog.md | 88 + .../sebastian/object-enumerator/LICENSE | 33 + .../sebastian/object-enumerator/README.md | 20 + .../sebastian/object-enumerator/composer.json | 43 + .../sebastian/object-enumerator/phpunit.xml | 24 + .../object-enumerator/src/Enumerator.php | 88 + .../object-enumerator/src/Exception.php | 16 + .../src/InvalidArgumentException.php | 14 + .../object-reflector/.psalm/baseline.xml | 8 + .../object-reflector/.psalm/config.xml | 16 + .../sebastian/object-reflector/ChangeLog.md | 55 + .../vendor/sebastian/object-reflector/LICENSE | 33 + .../sebastian/object-reflector/README.md | 20 + .../sebastian/object-reflector/composer.json | 41 + .../object-reflector/src/Exception.php | 16 + .../src/InvalidArgumentException.php | 14 + .../object-reflector/src/ObjectReflector.php | 51 + .../recursion-context/.psalm/baseline.xml | 8 + .../recursion-context/.psalm/config.xml | 16 + .../sebastian/recursion-context/ChangeLog.md | 33 + .../sebastian/recursion-context/LICENSE | 33 + .../sebastian/recursion-context/README.md | 18 + .../sebastian/recursion-context/composer.json | 44 + .../recursion-context/src/Context.php | 186 + .../recursion-context/src/Exception.php | 16 + .../src/InvalidArgumentException.php | 14 + .../resource-operations/.gitattributes | 7 + .../sebastian/resource-operations/.gitignore | 6 + .../resource-operations/ChangeLog.md | 54 + .../sebastian/resource-operations/LICENSE | 33 + .../sebastian/resource-operations/README.md | 14 + .../resource-operations/build/generate.php | 65 + .../resource-operations/composer.json | 37 + .../src/ResourceOperations.php | 2232 ++++++++++++ www-api/vendor/sebastian/type/ChangeLog.md | 160 + www-api/vendor/sebastian/type/LICENSE | 33 + www-api/vendor/sebastian/type/README.md | 20 + www-api/vendor/sebastian/type/composer.json | 50 + .../vendor/sebastian/type/src/Parameter.php | 42 + .../sebastian/type/src/ReflectionMapper.php | 184 + .../vendor/sebastian/type/src/TypeName.php | 83 + .../type/src/exception/Exception.php | 16 + .../type/src/exception/RuntimeException.php | 14 + .../sebastian/type/src/type/CallableType.php | 204 ++ .../sebastian/type/src/type/FalseType.php | 42 + .../type/src/type/GenericObjectType.php | 54 + .../type/src/type/IntersectionType.php | 126 + .../sebastian/type/src/type/IterableType.php | 84 + .../sebastian/type/src/type/MixedType.php | 41 + .../sebastian/type/src/type/NeverType.php | 36 + .../sebastian/type/src/type/NullType.php | 41 + .../sebastian/type/src/type/ObjectType.php | 74 + .../sebastian/type/src/type/SimpleType.php | 104 + .../sebastian/type/src/type/StaticType.php | 68 + .../sebastian/type/src/type/TrueType.php | 42 + .../vendor/sebastian/type/src/type/Type.php | 226 ++ .../sebastian/type/src/type/UnionType.php | 138 + .../sebastian/type/src/type/UnknownType.php | 41 + .../sebastian/type/src/type/VoidType.php | 36 + .../vendor/sebastian/version/.gitattributes | 4 + www-api/vendor/sebastian/version/.gitignore | 2 + www-api/vendor/sebastian/version/ChangeLog.md | 25 + www-api/vendor/sebastian/version/LICENSE | 33 + www-api/vendor/sebastian/version/README.md | 43 + .../vendor/sebastian/version/composer.json | 37 + .../vendor/sebastian/version/src/Version.php | 97 + www-api/vendor/theseer/tokenizer/.php_cs.dist | 213 ++ www-api/vendor/theseer/tokenizer/CHANGELOG.md | 71 + www-api/vendor/theseer/tokenizer/LICENSE | 30 + www-api/vendor/theseer/tokenizer/README.md | 50 + .../vendor/theseer/tokenizer/composer.json | 27 + .../vendor/theseer/tokenizer/composer.lock | 22 + .../theseer/tokenizer/src/Exception.php | 5 + .../theseer/tokenizer/src/NamespaceUri.php | 25 + .../tokenizer/src/NamespaceUriException.php | 5 + .../vendor/theseer/tokenizer/src/Token.php | 35 + .../theseer/tokenizer/src/TokenCollection.php | 93 + .../src/TokenCollectionException.php | 5 + .../theseer/tokenizer/src/Tokenizer.php | 142 + .../theseer/tokenizer/src/XMLSerializer.php | 79 + www-api/writable/.htaccess | 6 + www-api/writable/cache/index.html | 0 www-api/writable/debugbar/.gitkeep | 0 www-api/writable/logs/index.html | 0 www-api/writable/session/index.html | 0 .../cache => writable/uploads}/index.html | 0 2075 files changed, 230044 insertions(+), 69688 deletions(-) delete mode 100644 www-api/.editorconfig rename www-api/{license.txt => LICENSE} (90%) create mode 100644 www-api/README.md delete mode 100644 www-api/apache_log/error.log delete mode 100644 www-api/apache_log/other_vhosts_access.log rename www-api/{application => app}/.htaccess (90%) create mode 100644 www-api/app/Common.php create mode 100644 www-api/app/Config/App.php create mode 100644 www-api/app/Config/Autoload.php create mode 100644 www-api/app/Config/Boot/development.php create mode 100644 www-api/app/Config/Boot/production.php create mode 100644 www-api/app/Config/Boot/testing.php create mode 100644 www-api/app/Config/CURLRequest.php create mode 100644 www-api/app/Config/Cache.php create mode 100644 www-api/app/Config/Constants.php create mode 100644 www-api/app/Config/ContentSecurityPolicy.php create mode 100644 www-api/app/Config/Cookie.php create mode 100644 www-api/app/Config/Database.php create mode 100755 www-api/app/Config/DocTypes.php create mode 100644 www-api/app/Config/Email.php create mode 100644 www-api/app/Config/Encryption.php create mode 100644 www-api/app/Config/Events.php create mode 100644 www-api/app/Config/Exceptions.php create mode 100644 www-api/app/Config/Feature.php create mode 100644 www-api/app/Config/Filters.php create mode 100644 www-api/app/Config/ForeignCharacters.php create mode 100644 www-api/app/Config/Format.php create mode 100644 www-api/app/Config/Generators.php create mode 100644 www-api/app/Config/Honeypot.php create mode 100644 www-api/app/Config/Images.php create mode 100644 www-api/app/Config/Kint.php create mode 100644 www-api/app/Config/Logger.php create mode 100644 www-api/app/Config/Migrations.php create mode 100644 www-api/app/Config/Mimes.php create mode 100644 www-api/app/Config/Modules.php create mode 100644 www-api/app/Config/Pager.php create mode 100644 www-api/app/Config/Paths.php create mode 100644 www-api/app/Config/Publisher.php create mode 100644 www-api/app/Config/Routes.php create mode 100644 www-api/app/Config/Security.php create mode 100644 www-api/app/Config/Services.php create mode 100644 www-api/app/Config/Toolbar.php create mode 100644 www-api/app/Config/UserAgents.php create mode 100644 www-api/app/Config/Validation.php create mode 100644 www-api/app/Config/View.php create mode 100644 www-api/app/Controllers/BaseController.php create mode 100644 www-api/app/Controllers/Home.php create mode 100644 www-api/app/Database/Migrations/.gitkeep create mode 100644 www-api/app/Database/Seeds/.gitkeep create mode 100644 www-api/app/Filters/.gitkeep create mode 100644 www-api/app/Helpers/.gitkeep create mode 100644 www-api/app/Language/.gitkeep create mode 100644 www-api/app/Language/en/Validation.php create mode 100644 www-api/app/Libraries/.gitkeep create mode 100644 www-api/app/Models/.gitkeep create mode 100644 www-api/app/ThirdParty/.gitkeep create mode 100644 www-api/app/Views/errors/cli/error_404.php create mode 100644 www-api/app/Views/errors/cli/error_exception.php create mode 100644 www-api/app/Views/errors/cli/production.php create mode 100644 www-api/app/Views/errors/html/debug.css create mode 100644 www-api/app/Views/errors/html/debug.js create mode 100644 www-api/app/Views/errors/html/error_404.php create mode 100644 www-api/app/Views/errors/html/error_exception.php create mode 100644 www-api/app/Views/errors/html/production.php create mode 100644 www-api/app/Views/welcome_message.php rename www-api/{application/config => app}/index.html (75%) delete mode 100644 www-api/application/config/autoload.php delete mode 100644 www-api/application/config/config.php delete mode 100644 www-api/application/config/constants.php delete mode 100644 www-api/application/config/database.php delete mode 100644 www-api/application/config/doctypes.php delete mode 100644 www-api/application/config/foreign_chars.php delete mode 100644 www-api/application/config/hooks.php delete mode 100644 www-api/application/config/memcached.php delete mode 100644 www-api/application/config/migration.php delete mode 100644 www-api/application/config/mimes.php delete mode 100644 www-api/application/config/profiler.php delete mode 100644 www-api/application/config/routes.php delete mode 100644 www-api/application/config/smileys.php delete mode 100644 www-api/application/config/user_agents.php delete mode 100644 www-api/application/controllers/Welcome.php delete mode 100644 www-api/application/controllers/index.html delete mode 100644 www-api/application/core/index.html delete mode 100644 www-api/application/helpers/index.html delete mode 100644 www-api/application/hooks/index.html delete mode 100644 www-api/application/index.html delete mode 100644 www-api/application/language/english/index.html delete mode 100644 www-api/application/language/index.html delete mode 100644 www-api/application/libraries/index.html delete mode 100644 www-api/application/logs/index.html delete mode 100644 www-api/application/models/index.html delete mode 100644 www-api/application/third_party/index.html delete mode 100644 www-api/application/views/errors/cli/error_404.php delete mode 100644 www-api/application/views/errors/cli/error_db.php delete mode 100644 www-api/application/views/errors/cli/error_exception.php delete mode 100644 www-api/application/views/errors/cli/error_general.php delete mode 100644 www-api/application/views/errors/cli/error_php.php delete mode 100644 www-api/application/views/errors/cli/index.html delete mode 100644 www-api/application/views/errors/html/error_404.php delete mode 100644 www-api/application/views/errors/html/error_db.php delete mode 100644 www-api/application/views/errors/html/error_exception.php delete mode 100644 www-api/application/views/errors/html/error_general.php delete mode 100644 www-api/application/views/errors/html/error_php.php delete mode 100644 www-api/application/views/errors/html/index.html delete mode 100644 www-api/application/views/errors/index.html delete mode 100644 www-api/application/views/index.html delete mode 100644 www-api/application/views/welcome_message.php delete mode 100644 www-api/docker/apache/000-default.conf delete mode 100644 www-api/docker/apache/Dockerfile rename www-api/{.env => env} (86%) delete mode 100644 www-api/index.html delete mode 100644 www-api/index.php create mode 100644 www-api/logs/access.log create mode 100644 www-api/logs/error.log create mode 100644 www-api/phpunit.xml.dist create mode 100644 www-api/public/.htaccess create mode 100644 www-api/public/favicon.ico create mode 100644 www-api/public/index.php create mode 100644 www-api/public/robots.txt rename www-api/{ => public}/svs/api/.htaccess (100%) rename www-api/{ => public}/svs/api/index.php (100%) rename www-api/{ => public}/svs/api/index_backend.php (100%) rename www-api/{ => public}/svs/bko/.htaccess (100%) rename www-api/{ => public}/svs/bko/bkove.php (100%) rename www-api/{ => public}/svs/config.php (100%) rename www-api/{ => public}/svs/constants.php (100%) rename www-api/{ => public}/svs/formarter.php (100%) rename www-api/{ => public}/svs/user/.htaccess (100%) rename www-api/{ => public}/svs/user/Dconfig.php (100%) rename www-api/{ => public}/svs/user/Dconstants.php (100%) rename www-api/{ => public}/svs/user/Dformarter.php (100%) rename www-api/{ => public}/svs/user/Duserve.php (100%) rename www-api/{ => public}/svs/user/config.php (100%) rename www-api/{ => public}/svs/user/constants.php (100%) rename www-api/{ => public}/svs/user/formarter.php (100%) rename www-api/{ => public}/svs/user/formerter.php (100%) rename www-api/{ => public}/svs/user/index.php (100%) rename www-api/{ => public}/svs/user/userve.php (99%) delete mode 100644 www-api/readme.rst create mode 100755 www-api/spark create mode 100644 www-api/system/API/ResponseTrait.php create mode 100644 www-api/system/Autoloader/Autoloader.php create mode 100644 www-api/system/Autoloader/FileLocator.php create mode 100644 www-api/system/BaseModel.php create mode 100644 www-api/system/CLI/BaseCommand.php create mode 100644 www-api/system/CLI/CLI.php create mode 100644 www-api/system/CLI/CommandRunner.php create mode 100644 www-api/system/CLI/Commands.php create mode 100644 www-api/system/CLI/Console.php create mode 100644 www-api/system/CLI/Exceptions/CLIException.php create mode 100644 www-api/system/CLI/GeneratorTrait.php create mode 100644 www-api/system/Cache/CacheFactory.php create mode 100644 www-api/system/Cache/CacheInterface.php create mode 100644 www-api/system/Cache/Exceptions/CacheException.php create mode 100644 www-api/system/Cache/Exceptions/ExceptionInterface.php create mode 100644 www-api/system/Cache/Handlers/BaseHandler.php create mode 100644 www-api/system/Cache/Handlers/DummyHandler.php create mode 100644 www-api/system/Cache/Handlers/FileHandler.php create mode 100644 www-api/system/Cache/Handlers/MemcachedHandler.php create mode 100644 www-api/system/Cache/Handlers/PredisHandler.php create mode 100644 www-api/system/Cache/Handlers/RedisHandler.php create mode 100644 www-api/system/Cache/Handlers/WincacheHandler.php create mode 100644 www-api/system/CodeIgniter.php create mode 100644 www-api/system/Commands/Cache/ClearCache.php create mode 100644 www-api/system/Commands/Cache/InfoCache.php create mode 100644 www-api/system/Commands/Database/CreateDatabase.php create mode 100644 www-api/system/Commands/Database/Migrate.php create mode 100644 www-api/system/Commands/Database/MigrateRefresh.php create mode 100644 www-api/system/Commands/Database/MigrateRollback.php create mode 100644 www-api/system/Commands/Database/MigrateStatus.php create mode 100644 www-api/system/Commands/Database/Seed.php create mode 100644 www-api/system/Commands/Database/ShowTableInfo.php create mode 100644 www-api/system/Commands/Encryption/GenerateKey.php create mode 100644 www-api/system/Commands/Generators/CommandGenerator.php create mode 100644 www-api/system/Commands/Generators/ConfigGenerator.php create mode 100644 www-api/system/Commands/Generators/ControllerGenerator.php create mode 100644 www-api/system/Commands/Generators/EntityGenerator.php create mode 100644 www-api/system/Commands/Generators/FilterGenerator.php create mode 100644 www-api/system/Commands/Generators/MigrateCreate.php create mode 100644 www-api/system/Commands/Generators/MigrationGenerator.php create mode 100644 www-api/system/Commands/Generators/ModelGenerator.php create mode 100644 www-api/system/Commands/Generators/ScaffoldGenerator.php create mode 100644 www-api/system/Commands/Generators/SeederGenerator.php create mode 100644 www-api/system/Commands/Generators/SessionMigrationGenerator.php create mode 100644 www-api/system/Commands/Generators/ValidationGenerator.php create mode 100644 www-api/system/Commands/Generators/Views/command.tpl.php create mode 100644 www-api/system/Commands/Generators/Views/config.tpl.php create mode 100644 www-api/system/Commands/Generators/Views/controller.tpl.php create mode 100644 www-api/system/Commands/Generators/Views/entity.tpl.php create mode 100644 www-api/system/Commands/Generators/Views/filter.tpl.php create mode 100644 www-api/system/Commands/Generators/Views/migration.tpl.php create mode 100644 www-api/system/Commands/Generators/Views/model.tpl.php create mode 100644 www-api/system/Commands/Generators/Views/seeder.tpl.php create mode 100644 www-api/system/Commands/Generators/Views/validation.tpl.php create mode 100644 www-api/system/Commands/Help.php create mode 100644 www-api/system/Commands/Housekeeping/ClearDebugbar.php create mode 100644 www-api/system/Commands/Housekeeping/ClearLogs.php create mode 100644 www-api/system/Commands/ListCommands.php create mode 100644 www-api/system/Commands/Server/Serve.php create mode 100644 www-api/system/Commands/Server/rewrite.php create mode 100644 www-api/system/Commands/Utilities/Environment.php create mode 100644 www-api/system/Commands/Utilities/Namespaces.php create mode 100644 www-api/system/Commands/Utilities/Publish.php create mode 100644 www-api/system/Commands/Utilities/Routes.php create mode 100644 www-api/system/Commands/Utilities/Routes/AutoRouteCollector.php create mode 100644 www-api/system/Commands/Utilities/Routes/AutoRouterImproved/AutoRouteCollector.php create mode 100644 www-api/system/Commands/Utilities/Routes/AutoRouterImproved/ControllerMethodReader.php create mode 100644 www-api/system/Commands/Utilities/Routes/ControllerFinder.php create mode 100644 www-api/system/Commands/Utilities/Routes/ControllerMethodReader.php create mode 100644 www-api/system/Commands/Utilities/Routes/FilterCollector.php create mode 100644 www-api/system/Commands/Utilities/Routes/FilterFinder.php create mode 100644 www-api/system/Commands/Utilities/Routes/SampleURIGenerator.php create mode 100644 www-api/system/Common.php create mode 100644 www-api/system/ComposerScripts.php create mode 100644 www-api/system/Config/AutoloadConfig.php create mode 100644 www-api/system/Config/BaseConfig.php create mode 100644 www-api/system/Config/BaseService.php create mode 100644 www-api/system/Config/Config.php create mode 100644 www-api/system/Config/DotEnv.php create mode 100644 www-api/system/Config/Factories.php create mode 100644 www-api/system/Config/Factory.php create mode 100644 www-api/system/Config/ForeignCharacters.php create mode 100644 www-api/system/Config/Publisher.php create mode 100644 www-api/system/Config/Routes.php create mode 100644 www-api/system/Config/Services.php create mode 100644 www-api/system/Config/View.php create mode 100644 www-api/system/Controller.php create mode 100644 www-api/system/Cookie/CloneableCookieInterface.php create mode 100644 www-api/system/Cookie/Cookie.php create mode 100644 www-api/system/Cookie/CookieInterface.php create mode 100644 www-api/system/Cookie/CookieStore.php create mode 100644 www-api/system/Cookie/Exceptions/CookieException.php create mode 100644 www-api/system/Debug/Exceptions.php create mode 100644 www-api/system/Debug/Iterator.php create mode 100644 www-api/system/Debug/Timer.php create mode 100644 www-api/system/Debug/Toolbar.php create mode 100644 www-api/system/Debug/Toolbar/Collectors/BaseCollector.php create mode 100644 www-api/system/Debug/Toolbar/Collectors/Config.php create mode 100644 www-api/system/Debug/Toolbar/Collectors/Database.php create mode 100644 www-api/system/Debug/Toolbar/Collectors/Events.php create mode 100644 www-api/system/Debug/Toolbar/Collectors/Files.php create mode 100644 www-api/system/Debug/Toolbar/Collectors/History.php create mode 100644 www-api/system/Debug/Toolbar/Collectors/Logs.php create mode 100644 www-api/system/Debug/Toolbar/Collectors/Routes.php create mode 100644 www-api/system/Debug/Toolbar/Collectors/Timers.php create mode 100644 www-api/system/Debug/Toolbar/Collectors/Views.php create mode 100644 www-api/system/Debug/Toolbar/Views/_config.tpl create mode 100644 www-api/system/Debug/Toolbar/Views/_database.tpl create mode 100644 www-api/system/Debug/Toolbar/Views/_events.tpl create mode 100644 www-api/system/Debug/Toolbar/Views/_files.tpl create mode 100644 www-api/system/Debug/Toolbar/Views/_history.tpl create mode 100644 www-api/system/Debug/Toolbar/Views/_logs.tpl create mode 100644 www-api/system/Debug/Toolbar/Views/_routes.tpl create mode 100644 www-api/system/Debug/Toolbar/Views/toolbar.css create mode 100644 www-api/system/Debug/Toolbar/Views/toolbar.js create mode 100644 www-api/system/Debug/Toolbar/Views/toolbar.tpl.php create mode 100644 www-api/system/Debug/Toolbar/Views/toolbarloader.js create mode 100644 www-api/system/Email/Email.php create mode 100644 www-api/system/Encryption/EncrypterInterface.php create mode 100644 www-api/system/Encryption/Encryption.php create mode 100644 www-api/system/Encryption/Exceptions/EncryptionException.php create mode 100644 www-api/system/Encryption/Handlers/BaseHandler.php create mode 100644 www-api/system/Encryption/Handlers/OpenSSLHandler.php create mode 100644 www-api/system/Encryption/Handlers/SodiumHandler.php create mode 100644 www-api/system/Entity.php create mode 100644 www-api/system/Entity/Cast/ArrayCast.php create mode 100644 www-api/system/Entity/Cast/BaseCast.php create mode 100644 www-api/system/Entity/Cast/BooleanCast.php create mode 100644 www-api/system/Entity/Cast/CSVCast.php create mode 100644 www-api/system/Entity/Cast/CastInterface.php create mode 100644 www-api/system/Entity/Cast/DatetimeCast.php create mode 100644 www-api/system/Entity/Cast/FloatCast.php create mode 100644 www-api/system/Entity/Cast/IntegerCast.php create mode 100644 www-api/system/Entity/Cast/JsonCast.php create mode 100644 www-api/system/Entity/Cast/ObjectCast.php create mode 100644 www-api/system/Entity/Cast/StringCast.php create mode 100644 www-api/system/Entity/Cast/TimestampCast.php create mode 100644 www-api/system/Entity/Cast/URICast.php create mode 100644 www-api/system/Entity/Entity.php create mode 100644 www-api/system/Entity/Exceptions/CastException.php create mode 100644 www-api/system/Events/Events.php create mode 100644 www-api/system/Exceptions/AlertError.php create mode 100644 www-api/system/Exceptions/CastException.php create mode 100644 www-api/system/Exceptions/ConfigException.php create mode 100644 www-api/system/Exceptions/CriticalError.php create mode 100644 www-api/system/Exceptions/DebugTraceableTrait.php create mode 100644 www-api/system/Exceptions/DownloadException.php create mode 100644 www-api/system/Exceptions/EmergencyError.php create mode 100644 www-api/system/Exceptions/ExceptionInterface.php create mode 100644 www-api/system/Exceptions/FrameworkException.php create mode 100644 www-api/system/Exceptions/ModelException.php create mode 100644 www-api/system/Exceptions/PageNotFoundException.php create mode 100644 www-api/system/Exceptions/TestException.php create mode 100644 www-api/system/Files/Exceptions/FileException.php create mode 100644 www-api/system/Files/Exceptions/FileNotFoundException.php create mode 100644 www-api/system/Files/File.php create mode 100644 www-api/system/Files/FileCollection.php create mode 100644 www-api/system/Filters/CSRF.php create mode 100644 www-api/system/Filters/DebugToolbar.php create mode 100644 www-api/system/Filters/Exceptions/FilterException.php create mode 100644 www-api/system/Filters/FilterInterface.php create mode 100644 www-api/system/Filters/Filters.php create mode 100644 www-api/system/Filters/Honeypot.php create mode 100644 www-api/system/Filters/InvalidChars.php create mode 100644 www-api/system/Filters/SecureHeaders.php create mode 100644 www-api/system/Format/Exceptions/FormatException.php create mode 100644 www-api/system/Format/Format.php create mode 100644 www-api/system/Format/FormatterInterface.php create mode 100644 www-api/system/Format/JSONFormatter.php create mode 100644 www-api/system/Format/XMLFormatter.php create mode 100644 www-api/system/HTTP/CLIRequest.php create mode 100644 www-api/system/HTTP/CURLRequest.php create mode 100644 www-api/system/HTTP/ContentSecurityPolicy.php create mode 100644 www-api/system/HTTP/DownloadResponse.php create mode 100644 www-api/system/HTTP/Exceptions/HTTPException.php create mode 100644 www-api/system/HTTP/Files/FileCollection.php create mode 100644 www-api/system/HTTP/Files/UploadedFile.php create mode 100644 www-api/system/HTTP/Files/UploadedFileInterface.php create mode 100644 www-api/system/HTTP/Header.php create mode 100755 www-api/system/HTTP/IncomingRequest.php create mode 100644 www-api/system/HTTP/Message.php create mode 100644 www-api/system/HTTP/MessageInterface.php create mode 100644 www-api/system/HTTP/MessageTrait.php create mode 100644 www-api/system/HTTP/Negotiate.php create mode 100644 www-api/system/HTTP/RedirectResponse.php create mode 100644 www-api/system/HTTP/Request.php create mode 100644 www-api/system/HTTP/RequestInterface.php create mode 100644 www-api/system/HTTP/RequestTrait.php create mode 100644 www-api/system/HTTP/Response.php create mode 100644 www-api/system/HTTP/ResponseInterface.php create mode 100644 www-api/system/HTTP/ResponseTrait.php create mode 100644 www-api/system/HTTP/URI.php create mode 100644 www-api/system/HTTP/UserAgent.php create mode 100644 www-api/system/Honeypot/Exceptions/HoneypotException.php create mode 100644 www-api/system/Honeypot/Honeypot.php create mode 100644 www-api/system/I18n/Exceptions/I18nException.php create mode 100644 www-api/system/I18n/Time.php create mode 100644 www-api/system/I18n/TimeDifference.php create mode 100644 www-api/system/Images/Exceptions/ImageException.php create mode 100644 www-api/system/Images/Handlers/BaseHandler.php create mode 100644 www-api/system/Images/Handlers/GDHandler.php create mode 100644 www-api/system/Images/Handlers/ImageMagickHandler.php create mode 100644 www-api/system/Images/Image.php create mode 100644 www-api/system/Images/ImageHandlerInterface.php create mode 100644 www-api/system/Log/Exceptions/LogException.php create mode 100644 www-api/system/Log/Handlers/BaseHandler.php create mode 100644 www-api/system/Log/Handlers/ChromeLoggerHandler.php create mode 100644 www-api/system/Log/Handlers/ErrorlogHandler.php create mode 100644 www-api/system/Log/Handlers/FileHandler.php create mode 100644 www-api/system/Log/Handlers/HandlerInterface.php create mode 100644 www-api/system/Log/Logger.php create mode 100644 www-api/system/Model.php create mode 100644 www-api/system/Modules/Modules.php create mode 100644 www-api/system/Pager/Exceptions/PagerException.php create mode 100644 www-api/system/Pager/Pager.php create mode 100644 www-api/system/Pager/PagerInterface.php create mode 100644 www-api/system/Pager/PagerRenderer.php create mode 100644 www-api/system/Pager/Views/default_full.php create mode 100644 www-api/system/Pager/Views/default_head.php create mode 100644 www-api/system/Pager/Views/default_simple.php create mode 100644 www-api/system/Publisher/Exceptions/PublisherException.php create mode 100644 www-api/system/Publisher/Publisher.php create mode 100644 www-api/system/RESTful/BaseResource.php create mode 100644 www-api/system/RESTful/ResourceController.php create mode 100644 www-api/system/RESTful/ResourcePresenter.php create mode 100644 www-api/system/Router/AutoRouter.php create mode 100644 www-api/system/Router/AutoRouterImproved.php create mode 100644 www-api/system/Router/AutoRouterInterface.php create mode 100644 www-api/system/Router/Exceptions/RedirectException.php create mode 100644 www-api/system/Router/Exceptions/RouterException.php create mode 100644 www-api/system/Router/RouteCollection.php create mode 100644 www-api/system/Router/RouteCollectionInterface.php create mode 100644 www-api/system/Router/Router.php create mode 100644 www-api/system/Router/RouterInterface.php create mode 100644 www-api/system/Security/Exceptions/SecurityException.php create mode 100644 www-api/system/Security/Security.php create mode 100644 www-api/system/Security/SecurityInterface.php create mode 100644 www-api/system/Session/Exceptions/SessionException.php create mode 100644 www-api/system/Session/Handlers/ArrayHandler.php create mode 100644 www-api/system/Session/Handlers/BaseHandler.php create mode 100644 www-api/system/Session/Handlers/Database/MySQLiHandler.php create mode 100644 www-api/system/Session/Handlers/Database/PostgreHandler.php create mode 100644 www-api/system/Session/Handlers/DatabaseHandler.php create mode 100644 www-api/system/Session/Handlers/FileHandler.php create mode 100644 www-api/system/Session/Handlers/MemcachedHandler.php create mode 100644 www-api/system/Session/Handlers/RedisHandler.php create mode 100644 www-api/system/Session/Session.php create mode 100644 www-api/system/Session/SessionInterface.php create mode 100644 www-api/system/Test/CIDatabaseTestCase.php create mode 100644 www-api/system/Test/CIUnitTestCase.php create mode 100644 www-api/system/Test/ConfigFromArrayTrait.php create mode 100644 www-api/system/Test/Constraints/SeeInDatabase.php create mode 100644 www-api/system/Test/ControllerResponse.php create mode 100644 www-api/system/Test/ControllerTestTrait.php create mode 100644 www-api/system/Test/ControllerTester.php create mode 100644 www-api/system/Test/DOMParser.php create mode 100644 www-api/system/Test/DatabaseTestTrait.php create mode 100644 www-api/system/Test/Fabricator.php create mode 100644 www-api/system/Test/FeatureResponse.php create mode 100644 www-api/system/Test/FeatureTestCase.php create mode 100644 www-api/system/Test/FeatureTestTrait.php create mode 100644 www-api/system/Test/FilterTestTrait.php create mode 100644 www-api/system/Test/Filters/CITestStreamFilter.php create mode 100644 www-api/system/Test/Interfaces/FabricatorModel.php create mode 100644 www-api/system/Test/Mock/MockAppConfig.php create mode 100644 www-api/system/Test/Mock/MockAutoload.php create mode 100644 www-api/system/Test/Mock/MockBuilder.php create mode 100644 www-api/system/Test/Mock/MockCLIConfig.php create mode 100644 www-api/system/Test/Mock/MockCURLRequest.php create mode 100644 www-api/system/Test/Mock/MockCache.php create mode 100644 www-api/system/Test/Mock/MockCodeIgniter.php create mode 100644 www-api/system/Test/Mock/MockCommon.php create mode 100644 www-api/system/Test/Mock/MockConnection.php create mode 100644 www-api/system/Test/Mock/MockEmail.php create mode 100644 www-api/system/Test/Mock/MockEvents.php create mode 100644 www-api/system/Test/Mock/MockFileLogger.php create mode 100644 www-api/system/Test/Mock/MockIncomingRequest.php create mode 100644 www-api/system/Test/Mock/MockLanguage.php create mode 100644 www-api/system/Test/Mock/MockLogger.php create mode 100644 www-api/system/Test/Mock/MockQuery.php create mode 100644 www-api/system/Test/Mock/MockResourceController.php create mode 100644 www-api/system/Test/Mock/MockResourcePresenter.php create mode 100755 www-api/system/Test/Mock/MockResponse.php create mode 100644 www-api/system/Test/Mock/MockResult.php create mode 100644 www-api/system/Test/Mock/MockSecurity.php create mode 100644 www-api/system/Test/Mock/MockSecurityConfig.php create mode 100644 www-api/system/Test/Mock/MockServices.php create mode 100644 www-api/system/Test/Mock/MockSession.php create mode 100644 www-api/system/Test/Mock/MockTable.php create mode 100644 www-api/system/Test/ReflectionHelper.php create mode 100644 www-api/system/Test/TestLogger.php create mode 100644 www-api/system/Test/TestResponse.php create mode 100644 www-api/system/Test/bootstrap.php create mode 100644 www-api/system/ThirdParty/Escaper/Escaper.php create mode 100644 www-api/system/ThirdParty/Escaper/Exception/ExceptionInterface.php create mode 100644 www-api/system/ThirdParty/Escaper/Exception/InvalidArgumentException.php create mode 100644 www-api/system/ThirdParty/Escaper/Exception/RuntimeException.php create mode 100644 www-api/system/ThirdParty/Escaper/LICENSE.md create mode 100644 www-api/system/ThirdParty/Kint/CallFinder.php create mode 100644 www-api/system/ThirdParty/Kint/Kint.php create mode 100644 www-api/system/ThirdParty/Kint/LICENSE create mode 100644 www-api/system/ThirdParty/Kint/Parser/ArrayLimitPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/ArrayObjectPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/Base64Plugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/BinaryPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/BlacklistPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/ClassMethodsPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/ClassStaticsPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/ClosurePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/ColorPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/DOMDocumentPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/DateTimePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/EnumPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/FsPathPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/IteratorPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/JsonPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/MicrotimePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/MysqliPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/Parser.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/Plugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/ProxyPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/SerializePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/SimpleXMLElementPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/SplFileInfoPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/SplObjectStoragePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/StreamPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/TablePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/ThrowablePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/TimestampPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/ToStringPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/TracePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Parser/XmlPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/CliRenderer.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/PlainRenderer.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Renderer.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/ArrayLimitPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/BinaryPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/BlacklistPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/CallablePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/ClosurePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/ColorPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/DepthLimitPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/DocstringPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/MicrotimePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/Plugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/PluginInterface.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/RecursionPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/SimpleXMLElementPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/SourcePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/TabPluginInterface.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/TablePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/TimestampPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/TraceFramePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Rich/ValuePluginInterface.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/RichRenderer.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/ArrayLimitPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/BlacklistPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/DepthLimitPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/EnumPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/MicrotimePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/Plugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/RecursionPlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/Text/TracePlugin.php create mode 100644 www-api/system/ThirdParty/Kint/Renderer/TextRenderer.php create mode 100644 www-api/system/ThirdParty/Kint/Utils.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/BlobValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/ClosureValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/DateTimeValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/EnumValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/InstanceValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/MethodValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/ParameterValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/ColorRepresentation.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/DocstringRepresentation.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/MicrotimeRepresentation.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/Representation.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/SourceRepresentation.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/Representation/SplFileInfoRepresentation.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/ResourceValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/SimpleXMLElementValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/StreamValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/ThrowableValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/TraceFrameValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/TraceValue.php create mode 100644 www-api/system/ThirdParty/Kint/Zval/Value.php create mode 100644 www-api/system/ThirdParty/Kint/init.php create mode 100644 www-api/system/ThirdParty/Kint/init_helpers.php create mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/aante-light.css create mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/microtime.js create mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/original.css create mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/plain.css create mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/plain.js create mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/rich.js create mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/shared.js create mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/solarized-dark.css create mode 100644 www-api/system/ThirdParty/Kint/resources/compiled/solarized.css create mode 100644 www-api/system/ThirdParty/PSR/Log/AbstractLogger.php create mode 100644 www-api/system/ThirdParty/PSR/Log/InvalidArgumentException.php create mode 100644 www-api/system/ThirdParty/PSR/Log/LICENSE create mode 100644 www-api/system/ThirdParty/PSR/Log/LogLevel.php create mode 100644 www-api/system/ThirdParty/PSR/Log/LoggerAwareInterface.php create mode 100644 www-api/system/ThirdParty/PSR/Log/LoggerAwareTrait.php create mode 100644 www-api/system/ThirdParty/PSR/Log/LoggerInterface.php create mode 100644 www-api/system/ThirdParty/PSR/Log/LoggerTrait.php create mode 100644 www-api/system/ThirdParty/PSR/Log/NullLogger.php create mode 100644 www-api/system/Throttle/Throttler.php create mode 100644 www-api/system/Throttle/ThrottlerInterface.php create mode 100644 www-api/system/Typography/Typography.php create mode 100644 www-api/system/Validation/CreditCardRules.php create mode 100644 www-api/system/Validation/Exceptions/ValidationException.php create mode 100644 www-api/system/Validation/FileRules.php create mode 100644 www-api/system/Validation/FormatRules.php create mode 100644 www-api/system/Validation/Rules.php create mode 100644 www-api/system/Validation/StrictRules/CreditCardRules.php create mode 100644 www-api/system/Validation/StrictRules/FileRules.php create mode 100644 www-api/system/Validation/StrictRules/FormatRules.php create mode 100644 www-api/system/Validation/StrictRules/Rules.php create mode 100644 www-api/system/Validation/Validation.php create mode 100644 www-api/system/Validation/ValidationInterface.php create mode 100644 www-api/system/Validation/Views/list.php create mode 100644 www-api/system/Validation/Views/single.php create mode 100644 www-api/system/View/Cell.php create mode 100644 www-api/system/View/Exceptions/ViewException.php create mode 100644 www-api/system/View/Filters.php create mode 100644 www-api/system/View/Parser.php create mode 100644 www-api/system/View/Plugins.php create mode 100644 www-api/system/View/RendererInterface.php create mode 100644 www-api/system/View/Table.php create mode 100644 www-api/system/View/View.php create mode 100644 www-api/system/View/ViewDecoratorInterface.php create mode 100644 www-api/system/View/ViewDecoratorTrait.php create mode 100644 www-api/system/bootstrap.php delete mode 100644 www-api/system/core/Benchmark.php delete mode 100644 www-api/system/core/CodeIgniter.php delete mode 100644 www-api/system/core/Common.php delete mode 100644 www-api/system/core/Config.php delete mode 100644 www-api/system/core/Controller.php delete mode 100644 www-api/system/core/Exceptions.php delete mode 100644 www-api/system/core/Hooks.php delete mode 100644 www-api/system/core/Input.php delete mode 100644 www-api/system/core/Lang.php delete mode 100644 www-api/system/core/Loader.php delete mode 100644 www-api/system/core/Log.php delete mode 100644 www-api/system/core/Model.php delete mode 100644 www-api/system/core/Output.php delete mode 100644 www-api/system/core/Router.php delete mode 100644 www-api/system/core/Security.php delete mode 100644 www-api/system/core/URI.php delete mode 100644 www-api/system/core/Utf8.php delete mode 100644 www-api/system/core/compat/hash.php delete mode 100644 www-api/system/core/compat/index.html delete mode 100644 www-api/system/core/compat/mbstring.php delete mode 100644 www-api/system/core/compat/password.php delete mode 100644 www-api/system/core/compat/standard.php delete mode 100644 www-api/system/core/index.html create mode 100644 www-api/system/database/BaseBuilder.php create mode 100644 www-api/system/database/BaseConnection.php create mode 100644 www-api/system/database/BasePreparedQuery.php create mode 100644 www-api/system/database/BaseResult.php create mode 100644 www-api/system/database/BaseUtils.php create mode 100644 www-api/system/database/Config.php create mode 100644 www-api/system/database/ConnectionInterface.php delete mode 100644 www-api/system/database/DB.php delete mode 100644 www-api/system/database/DB_cache.php delete mode 100644 www-api/system/database/DB_driver.php delete mode 100644 www-api/system/database/DB_forge.php delete mode 100644 www-api/system/database/DB_query_builder.php delete mode 100644 www-api/system/database/DB_result.php delete mode 100644 www-api/system/database/DB_utility.php create mode 100644 www-api/system/database/Database.php create mode 100644 www-api/system/database/Exceptions/DataException.php create mode 100644 www-api/system/database/Exceptions/DatabaseException.php create mode 100644 www-api/system/database/Exceptions/ExceptionInterface.php create mode 100644 www-api/system/database/Forge.php create mode 100644 www-api/system/database/Migration.php create mode 100644 www-api/system/database/MigrationRunner.php create mode 100644 www-api/system/database/ModelFactory.php create mode 100644 www-api/system/database/MySQLi/Builder.php create mode 100644 www-api/system/database/MySQLi/Connection.php create mode 100644 www-api/system/database/MySQLi/Forge.php create mode 100644 www-api/system/database/MySQLi/PreparedQuery.php create mode 100644 www-api/system/database/MySQLi/Result.php create mode 100644 www-api/system/database/MySQLi/Utils.php create mode 100644 www-api/system/database/OCI8/Builder.php create mode 100644 www-api/system/database/OCI8/Connection.php create mode 100644 www-api/system/database/OCI8/Forge.php create mode 100644 www-api/system/database/OCI8/PreparedQuery.php create mode 100644 www-api/system/database/OCI8/Result.php create mode 100644 www-api/system/database/OCI8/Utils.php create mode 100644 www-api/system/database/Postgre/Builder.php create mode 100644 www-api/system/database/Postgre/Connection.php create mode 100644 www-api/system/database/Postgre/Forge.php create mode 100644 www-api/system/database/Postgre/PreparedQuery.php create mode 100644 www-api/system/database/Postgre/Result.php create mode 100644 www-api/system/database/Postgre/Utils.php create mode 100644 www-api/system/database/PreparedQueryInterface.php create mode 100644 www-api/system/database/Query.php create mode 100644 www-api/system/database/QueryInterface.php create mode 100644 www-api/system/database/RawSql.php create mode 100644 www-api/system/database/ResultInterface.php create mode 100755 www-api/system/database/SQLSRV/Builder.php create mode 100755 www-api/system/database/SQLSRV/Connection.php create mode 100755 www-api/system/database/SQLSRV/Forge.php create mode 100755 www-api/system/database/SQLSRV/PreparedQuery.php create mode 100755 www-api/system/database/SQLSRV/Result.php create mode 100755 www-api/system/database/SQLSRV/Utils.php create mode 100644 www-api/system/database/SQLite3/Builder.php create mode 100644 www-api/system/database/SQLite3/Connection.php create mode 100644 www-api/system/database/SQLite3/Forge.php create mode 100644 www-api/system/database/SQLite3/PreparedQuery.php create mode 100644 www-api/system/database/SQLite3/Result.php create mode 100644 www-api/system/database/SQLite3/Table.php create mode 100644 www-api/system/database/SQLite3/Utils.php create mode 100644 www-api/system/database/Seeder.php delete mode 100644 www-api/system/database/drivers/cubrid/cubrid_driver.php delete mode 100644 www-api/system/database/drivers/cubrid/cubrid_forge.php delete mode 100644 www-api/system/database/drivers/cubrid/cubrid_result.php delete mode 100644 www-api/system/database/drivers/cubrid/cubrid_utility.php delete mode 100644 www-api/system/database/drivers/cubrid/index.html delete mode 100644 www-api/system/database/drivers/ibase/ibase_driver.php delete mode 100644 www-api/system/database/drivers/ibase/ibase_forge.php delete mode 100644 www-api/system/database/drivers/ibase/ibase_result.php delete mode 100644 www-api/system/database/drivers/ibase/ibase_utility.php delete mode 100644 www-api/system/database/drivers/ibase/index.html delete mode 100644 www-api/system/database/drivers/index.html delete mode 100644 www-api/system/database/drivers/mssql/index.html delete mode 100644 www-api/system/database/drivers/mssql/mssql_driver.php delete mode 100644 www-api/system/database/drivers/mssql/mssql_forge.php delete mode 100644 www-api/system/database/drivers/mssql/mssql_result.php delete mode 100644 www-api/system/database/drivers/mssql/mssql_utility.php delete mode 100644 www-api/system/database/drivers/mysql/index.html delete mode 100644 www-api/system/database/drivers/mysql/mysql_driver.php delete mode 100644 www-api/system/database/drivers/mysql/mysql_forge.php delete mode 100644 www-api/system/database/drivers/mysql/mysql_result.php delete mode 100644 www-api/system/database/drivers/mysql/mysql_utility.php delete mode 100644 www-api/system/database/drivers/mysqli/index.html delete mode 100644 www-api/system/database/drivers/mysqli/mysqli_driver.php delete mode 100644 www-api/system/database/drivers/mysqli/mysqli_forge.php delete mode 100644 www-api/system/database/drivers/mysqli/mysqli_result.php delete mode 100644 www-api/system/database/drivers/mysqli/mysqli_utility.php delete mode 100644 www-api/system/database/drivers/oci8/index.html delete mode 100644 www-api/system/database/drivers/oci8/oci8_driver.php delete mode 100644 www-api/system/database/drivers/oci8/oci8_forge.php delete mode 100644 www-api/system/database/drivers/oci8/oci8_result.php delete mode 100644 www-api/system/database/drivers/oci8/oci8_utility.php delete mode 100644 www-api/system/database/drivers/odbc/index.html delete mode 100644 www-api/system/database/drivers/odbc/odbc_driver.php delete mode 100644 www-api/system/database/drivers/odbc/odbc_forge.php delete mode 100644 www-api/system/database/drivers/odbc/odbc_result.php delete mode 100644 www-api/system/database/drivers/odbc/odbc_utility.php delete mode 100644 www-api/system/database/drivers/pdo/index.html delete mode 100644 www-api/system/database/drivers/pdo/pdo_driver.php delete mode 100644 www-api/system/database/drivers/pdo/pdo_forge.php delete mode 100644 www-api/system/database/drivers/pdo/pdo_result.php delete mode 100644 www-api/system/database/drivers/pdo/pdo_utility.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/index.html delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php delete mode 100644 www-api/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php delete mode 100644 www-api/system/database/drivers/postgre/index.html delete mode 100644 www-api/system/database/drivers/postgre/postgre_driver.php delete mode 100644 www-api/system/database/drivers/postgre/postgre_forge.php delete mode 100644 www-api/system/database/drivers/postgre/postgre_result.php delete mode 100644 www-api/system/database/drivers/postgre/postgre_utility.php delete mode 100644 www-api/system/database/drivers/sqlite/index.html delete mode 100644 www-api/system/database/drivers/sqlite/sqlite_driver.php delete mode 100644 www-api/system/database/drivers/sqlite/sqlite_forge.php delete mode 100644 www-api/system/database/drivers/sqlite/sqlite_result.php delete mode 100644 www-api/system/database/drivers/sqlite/sqlite_utility.php delete mode 100644 www-api/system/database/drivers/sqlite3/index.html delete mode 100644 www-api/system/database/drivers/sqlite3/sqlite3_driver.php delete mode 100644 www-api/system/database/drivers/sqlite3/sqlite3_forge.php delete mode 100644 www-api/system/database/drivers/sqlite3/sqlite3_result.php delete mode 100644 www-api/system/database/drivers/sqlite3/sqlite3_utility.php delete mode 100644 www-api/system/database/drivers/sqlsrv/index.html delete mode 100644 www-api/system/database/drivers/sqlsrv/sqlsrv_driver.php delete mode 100644 www-api/system/database/drivers/sqlsrv/sqlsrv_forge.php delete mode 100644 www-api/system/database/drivers/sqlsrv/sqlsrv_result.php delete mode 100644 www-api/system/database/drivers/sqlsrv/sqlsrv_utility.php delete mode 100644 www-api/system/database/index.html delete mode 100644 www-api/system/fonts/index.html delete mode 100644 www-api/system/fonts/texb.ttf delete mode 100644 www-api/system/helpers/captcha_helper.php mode change 100644 => 100755 www-api/system/helpers/cookie_helper.php delete mode 100644 www-api/system/helpers/directory_helper.php delete mode 100644 www-api/system/helpers/download_helper.php delete mode 100644 www-api/system/helpers/email_helper.php delete mode 100644 www-api/system/helpers/file_helper.php create mode 100644 www-api/system/helpers/filesystem_helper.php mode change 100644 => 100755 www-api/system/helpers/html_helper.php delete mode 100644 www-api/system/helpers/index.html mode change 100644 => 100755 www-api/system/helpers/inflector_helper.php delete mode 100644 www-api/system/helpers/language_helper.php delete mode 100644 www-api/system/helpers/path_helper.php delete mode 100644 www-api/system/helpers/smiley_helper.php delete mode 100644 www-api/system/helpers/string_helper.php create mode 100644 www-api/system/helpers/test_helper.php mode change 100644 => 100755 www-api/system/helpers/text_helper.php delete mode 100644 www-api/system/helpers/typography_helper.php create mode 100644 www-api/system/language/Language.php create mode 100644 www-api/system/language/en/CLI.php create mode 100644 www-api/system/language/en/Cache.php create mode 100644 www-api/system/language/en/Cast.php create mode 100644 www-api/system/language/en/Cookie.php create mode 100644 www-api/system/language/en/Core.php create mode 100644 www-api/system/language/en/Database.php create mode 100644 www-api/system/language/en/Email.php create mode 100644 www-api/system/language/en/Encryption.php create mode 100644 www-api/system/language/en/Fabricator.php create mode 100644 www-api/system/language/en/Files.php create mode 100644 www-api/system/language/en/Filters.php create mode 100644 www-api/system/language/en/Format.php create mode 100644 www-api/system/language/en/HTTP.php create mode 100644 www-api/system/language/en/Images.php create mode 100644 www-api/system/language/en/Log.php create mode 100644 www-api/system/language/en/Migrations.php create mode 100644 www-api/system/language/en/Number.php create mode 100644 www-api/system/language/en/Pager.php create mode 100644 www-api/system/language/en/Publisher.php create mode 100644 www-api/system/language/en/RESTful.php create mode 100644 www-api/system/language/en/Router.php create mode 100644 www-api/system/language/en/Security.php create mode 100644 www-api/system/language/en/Session.php create mode 100644 www-api/system/language/en/Test.php create mode 100644 www-api/system/language/en/Time.php create mode 100644 www-api/system/language/en/Validation.php create mode 100644 www-api/system/language/en/View.php delete mode 100644 www-api/system/language/english/calendar_lang.php delete mode 100644 www-api/system/language/english/date_lang.php delete mode 100644 www-api/system/language/english/db_lang.php delete mode 100644 www-api/system/language/english/email_lang.php delete mode 100644 www-api/system/language/english/form_validation_lang.php delete mode 100644 www-api/system/language/english/ftp_lang.php delete mode 100644 www-api/system/language/english/imglib_lang.php delete mode 100644 www-api/system/language/english/index.html delete mode 100644 www-api/system/language/english/migration_lang.php delete mode 100644 www-api/system/language/english/number_lang.php delete mode 100644 www-api/system/language/english/pagination_lang.php delete mode 100644 www-api/system/language/english/profiler_lang.php delete mode 100644 www-api/system/language/english/unit_test_lang.php delete mode 100644 www-api/system/language/english/upload_lang.php delete mode 100644 www-api/system/language/index.html delete mode 100644 www-api/system/libraries/Cache/Cache.php delete mode 100644 www-api/system/libraries/Cache/drivers/Cache_apc.php delete mode 100644 www-api/system/libraries/Cache/drivers/Cache_dummy.php delete mode 100644 www-api/system/libraries/Cache/drivers/Cache_file.php delete mode 100644 www-api/system/libraries/Cache/drivers/Cache_memcached.php delete mode 100644 www-api/system/libraries/Cache/drivers/Cache_redis.php delete mode 100644 www-api/system/libraries/Cache/drivers/Cache_wincache.php delete mode 100644 www-api/system/libraries/Cache/drivers/index.html delete mode 100644 www-api/system/libraries/Cache/index.html delete mode 100644 www-api/system/libraries/Calendar.php delete mode 100644 www-api/system/libraries/Cart.php delete mode 100644 www-api/system/libraries/Driver.php delete mode 100644 www-api/system/libraries/Email.php delete mode 100644 www-api/system/libraries/Encrypt.php delete mode 100644 www-api/system/libraries/Encryption.php delete mode 100644 www-api/system/libraries/Form_validation.php delete mode 100644 www-api/system/libraries/Ftp.php delete mode 100644 www-api/system/libraries/Image_lib.php delete mode 100644 www-api/system/libraries/Javascript.php delete mode 100644 www-api/system/libraries/Javascript/Jquery.php delete mode 100644 www-api/system/libraries/Javascript/index.html delete mode 100644 www-api/system/libraries/Migration.php delete mode 100644 www-api/system/libraries/Pagination.php delete mode 100644 www-api/system/libraries/Parser.php delete mode 100644 www-api/system/libraries/Profiler.php delete mode 100644 www-api/system/libraries/Session/CI_Session_driver_interface.php delete mode 100644 www-api/system/libraries/Session/OldSessionWrapper.php delete mode 100644 www-api/system/libraries/Session/PHP8SessionWrapper.php delete mode 100644 www-api/system/libraries/Session/Session.php delete mode 100644 www-api/system/libraries/Session/SessionHandlerInterface.php delete mode 100644 www-api/system/libraries/Session/SessionUpdateTimestampHandlerInterface.php delete mode 100644 www-api/system/libraries/Session/Session_driver.php delete mode 100644 www-api/system/libraries/Session/drivers/Session_database_driver.php delete mode 100644 www-api/system/libraries/Session/drivers/Session_files_driver.php delete mode 100644 www-api/system/libraries/Session/drivers/Session_memcached_driver.php delete mode 100644 www-api/system/libraries/Session/drivers/Session_redis_driver.php delete mode 100644 www-api/system/libraries/Session/drivers/index.html delete mode 100644 www-api/system/libraries/Session/index.html delete mode 100644 www-api/system/libraries/Table.php delete mode 100644 www-api/system/libraries/Trackback.php delete mode 100644 www-api/system/libraries/Typography.php delete mode 100644 www-api/system/libraries/Unit_test.php delete mode 100644 www-api/system/libraries/Upload.php delete mode 100644 www-api/system/libraries/User_agent.php delete mode 100644 www-api/system/libraries/Xmlrpc.php delete mode 100644 www-api/system/libraries/Xmlrpcs.php delete mode 100644 www-api/system/libraries/Zip.php delete mode 100644 www-api/system/libraries/index.html create mode 100644 www-api/tests/README.md create mode 100644 www-api/tests/_support/Database/Migrations/2020-02-22-222222_example_migration.php create mode 100644 www-api/tests/_support/Database/Seeds/ExampleSeeder.php create mode 100644 www-api/tests/_support/Libraries/ConfigReader.php create mode 100644 www-api/tests/_support/Models/ExampleModel.php create mode 100644 www-api/tests/database/ExampleDatabaseTest.php create mode 100644 www-api/tests/session/ExampleSessionTest.php create mode 100644 www-api/tests/unit/HealthTest.php create mode 100644 www-api/vendor/autoload.php create mode 100755 www-api/vendor/bin/php-parse create mode 100755 www-api/vendor/bin/phpunit create mode 100644 www-api/vendor/composer/ClassLoader.php create mode 100644 www-api/vendor/composer/InstalledVersions.php create mode 100644 www-api/vendor/composer/LICENSE create mode 100644 www-api/vendor/composer/autoload_classmap.php create mode 100644 www-api/vendor/composer/autoload_files.php create mode 100644 www-api/vendor/composer/autoload_namespaces.php create mode 100644 www-api/vendor/composer/autoload_psr4.php create mode 100644 www-api/vendor/composer/autoload_real.php create mode 100644 www-api/vendor/composer/autoload_static.php create mode 100644 www-api/vendor/composer/installed.json create mode 100644 www-api/vendor/composer/installed.php create mode 100644 www-api/vendor/composer/platform_check.php create mode 100644 www-api/vendor/doctrine/instantiator/.doctrine-project.json create mode 100644 www-api/vendor/doctrine/instantiator/CONTRIBUTING.md create mode 100644 www-api/vendor/doctrine/instantiator/LICENSE create mode 100644 www-api/vendor/doctrine/instantiator/README.md create mode 100644 www-api/vendor/doctrine/instantiator/composer.json create mode 100644 www-api/vendor/doctrine/instantiator/docs/en/index.rst create mode 100644 www-api/vendor/doctrine/instantiator/docs/en/sidebar.rst create mode 100644 www-api/vendor/doctrine/instantiator/psalm.xml create mode 100644 www-api/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php create mode 100644 www-api/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php create mode 100644 www-api/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php create mode 100644 www-api/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php create mode 100644 www-api/vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php create mode 100644 www-api/vendor/mikey179/vfsstream/.github/workflows/runTests.yml create mode 100644 www-api/vendor/mikey179/vfsstream/CHANGELOG.md create mode 100644 www-api/vendor/mikey179/vfsstream/LICENSE create mode 100644 www-api/vendor/mikey179/vfsstream/README.md create mode 100644 www-api/vendor/mikey179/vfsstream/composer.json create mode 100644 www-api/vendor/mikey179/vfsstream/phpunit.xml.dist create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/DotDirectory.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/Quota.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/content/FileContent.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/content/LargeFileContent.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/content/SeekableFileContent.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/content/StringBasedFileContent.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStream.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStreamAbstractContent.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStreamBlock.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStreamContainer.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStreamContainerIterator.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStreamContent.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStreamDirectory.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStreamException.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStreamFile.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStreamWrapper.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/visitor/vfsStreamAbstractVisitor.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/visitor/vfsStreamPrintVisitor.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/visitor/vfsStreamStructureVisitor.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/visitor/vfsStreamVisitor.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/bootstrap.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/patches/php8-return-types.diff create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/DirectoryIterationTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/FilenameTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/Issue104TestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/PermissionsTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/QuotaTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/UnlinkTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/content/LargeFileContentTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/content/StringBasedFileContentTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/proxy/vfsStreamWrapperRecordingProxy.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamAbstractContentTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamBlockTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamContainerIteratorTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamDirectoryIssue134TestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamDirectoryIssue18TestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamDirectoryTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamExLockTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamFileTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamGlobTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamResolveIncludePathTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamUmaskTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperAlreadyRegisteredTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperBaseTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperDirSeparatorTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperDirTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFileTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFileTimesTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFlockTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperLargeFileTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperQuotaTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperSetOptionTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperStreamSelectTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperUnregisterTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamWrapperWithoutRootTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/vfsStreamZipTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/visitor/vfsStreamAbstractVisitorTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/visitor/vfsStreamPrintVisitorTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/visitor/vfsStreamStructureVisitorTestCase.php create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/phpt/bug71287.phpt create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/emptyFolder/.gitignore create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/aFile.txt create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/subfolder1/file1.txt create mode 100644 www-api/vendor/mikey179/vfsstream/src/test/resources/filesystemcopy/withSubfolders/subfolder2/.gitignore create mode 100644 www-api/vendor/myclabs/deep-copy/.github/FUNDING.yml create mode 100644 www-api/vendor/myclabs/deep-copy/.github/workflows/ci.yaml create mode 100644 www-api/vendor/myclabs/deep-copy/LICENSE create mode 100644 www-api/vendor/myclabs/deep-copy/README.md create mode 100644 www-api/vendor/myclabs/deep-copy/composer.json create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/DeepCopy.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php create mode 100644 www-api/vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php create mode 100644 www-api/vendor/nikic/php-parser/LICENSE create mode 100644 www-api/vendor/nikic/php-parser/README.md create mode 100755 www-api/vendor/nikic/php-parser/bin/php-parse create mode 100644 www-api/vendor/nikic/php-parser/composer.json create mode 100644 www-api/vendor/nikic/php-parser/grammar/README.md create mode 100644 www-api/vendor/nikic/php-parser/grammar/parser.template create mode 100644 www-api/vendor/nikic/php-parser/grammar/php5.y create mode 100644 www-api/vendor/nikic/php-parser/grammar/php7.y create mode 100644 www-api/vendor/nikic/php-parser/grammar/phpyLang.php create mode 100644 www-api/vendor/nikic/php-parser/grammar/rebuildParsers.php create mode 100644 www-api/vendor/nikic/php-parser/grammar/tokens.template create mode 100644 www-api/vendor/nikic/php-parser/grammar/tokens.y create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/ClassConst.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Class_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Declaration.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/EnumCase.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Enum_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Function_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Interface_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Method.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Param.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Property.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/TraitUse.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/TraitUseAdaptation.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Trait_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Builder/Use_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/BuilderHelpers.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Comment.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Comment/Doc.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/ConstExprEvaluationException.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/ConstExprEvaluator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Error.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Collecting.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Internal/DiffElem.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Internal/Differ.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Internal/PrintableNewAnonClassNode.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Internal/TokenStream.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/JsonDecoder.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/AttributeEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ExplicitOctalEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FlexibleDocStringEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/KeywordEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/MatchTokenEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NullsafeTokenEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReadonlyTokenEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReverseEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/TokenEmulator.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NameContext.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Arg.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Attribute.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/AttributeGroup.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/ComplexType.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Const_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrowFunction.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Coalesce.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/CallLike.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Error.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Match_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafeMethodCall.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafePropertyFetch.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Throw_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Identifier.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/IntersectionType.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/MatchArm.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Name.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/NullableType.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Param.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/EncapsedStringPart.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Declare_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Do_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/EnumCase.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Enum_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Expression.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Finally_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/GroupUse.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Static_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Switch_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/UnionType.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/VarLikeIdentifier.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Node/VariadicPlaceholder.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeAbstract.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeDumper.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeFinder.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeTraverser.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/CloningVisitor.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/FindingVisitor.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/FirstFindingVisitor.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NodeConnectingVisitor.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/ParentConnectingVisitor.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Parser.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Parser/Multiple.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Parser/Php5.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Parser/Php7.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/Parser/Tokens.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/ParserFactory.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php create mode 100644 www-api/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php create mode 100644 www-api/vendor/phar-io/manifest/CHANGELOG.md create mode 100644 www-api/vendor/phar-io/manifest/LICENSE create mode 100644 www-api/vendor/phar-io/manifest/README.md create mode 100644 www-api/vendor/phar-io/manifest/composer.json create mode 100644 www-api/vendor/phar-io/manifest/composer.lock create mode 100644 www-api/vendor/phar-io/manifest/src/ManifestDocumentMapper.php create mode 100644 www-api/vendor/phar-io/manifest/src/ManifestLoader.php create mode 100644 www-api/vendor/phar-io/manifest/src/ManifestSerializer.php create mode 100644 www-api/vendor/phar-io/manifest/src/exceptions/ElementCollectionException.php create mode 100644 www-api/vendor/phar-io/manifest/src/exceptions/Exception.php create mode 100644 www-api/vendor/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php create mode 100644 www-api/vendor/phar-io/manifest/src/exceptions/InvalidEmailException.php create mode 100644 www-api/vendor/phar-io/manifest/src/exceptions/InvalidUrlException.php create mode 100644 www-api/vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php create mode 100644 www-api/vendor/phar-io/manifest/src/exceptions/ManifestDocumentLoadingException.php create mode 100644 www-api/vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php create mode 100644 www-api/vendor/phar-io/manifest/src/exceptions/ManifestElementException.php create mode 100644 www-api/vendor/phar-io/manifest/src/exceptions/ManifestLoaderException.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/Application.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/ApplicationName.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/Author.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/AuthorCollection.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/AuthorCollectionIterator.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/BundledComponent.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/BundledComponentCollection.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/BundledComponentCollectionIterator.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/CopyrightInformation.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/Email.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/Extension.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/Library.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/License.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/Manifest.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/PhpExtensionRequirement.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/PhpVersionRequirement.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/Requirement.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/RequirementCollection.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/RequirementCollectionIterator.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/Type.php create mode 100644 www-api/vendor/phar-io/manifest/src/values/Url.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/AuthorElement.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/AuthorElementCollection.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/BundlesElement.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/ComponentElement.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/ComponentElementCollection.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/ContainsElement.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/CopyrightElement.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/ElementCollection.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/ExtElement.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/ExtElementCollection.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/ExtensionElement.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/LicenseElement.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/ManifestDocument.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/ManifestElement.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/PhpElement.php create mode 100644 www-api/vendor/phar-io/manifest/src/xml/RequiresElement.php create mode 100644 www-api/vendor/phar-io/version/CHANGELOG.md create mode 100644 www-api/vendor/phar-io/version/LICENSE create mode 100644 www-api/vendor/phar-io/version/README.md create mode 100644 www-api/vendor/phar-io/version/composer.json create mode 100644 www-api/vendor/phar-io/version/src/BuildMetaData.php create mode 100644 www-api/vendor/phar-io/version/src/PreReleaseSuffix.php create mode 100644 www-api/vendor/phar-io/version/src/Version.php create mode 100644 www-api/vendor/phar-io/version/src/VersionConstraintParser.php create mode 100644 www-api/vendor/phar-io/version/src/VersionConstraintValue.php create mode 100644 www-api/vendor/phar-io/version/src/VersionNumber.php create mode 100644 www-api/vendor/phar-io/version/src/constraints/AbstractVersionConstraint.php create mode 100644 www-api/vendor/phar-io/version/src/constraints/AndVersionConstraintGroup.php create mode 100644 www-api/vendor/phar-io/version/src/constraints/AnyVersionConstraint.php create mode 100644 www-api/vendor/phar-io/version/src/constraints/ExactVersionConstraint.php create mode 100644 www-api/vendor/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php create mode 100644 www-api/vendor/phar-io/version/src/constraints/OrVersionConstraintGroup.php create mode 100644 www-api/vendor/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php create mode 100644 www-api/vendor/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php create mode 100644 www-api/vendor/phar-io/version/src/constraints/VersionConstraint.php create mode 100644 www-api/vendor/phar-io/version/src/exceptions/Exception.php create mode 100644 www-api/vendor/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php create mode 100644 www-api/vendor/phar-io/version/src/exceptions/InvalidVersionException.php create mode 100644 www-api/vendor/phar-io/version/src/exceptions/NoBuildMetaDataException.php create mode 100644 www-api/vendor/phar-io/version/src/exceptions/NoPreReleaseSuffixException.php create mode 100644 www-api/vendor/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/ChangeLog.md create mode 100644 www-api/vendor/phpunit/php-code-coverage/LICENSE create mode 100644 www-api/vendor/phpunit/php-code-coverage/README.md create mode 100644 www-api/vendor/phpunit/php-code-coverage/composer.json create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/CodeCoverage.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Driver/Driver.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Driver/PcovDriver.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Driver/PhpdbgDriver.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Driver/Selector.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Driver/Xdebug2Driver.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Driver/Xdebug3Driver.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/DeadCodeDetectionNotSupportedException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/Exception.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverAvailableException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/ParserException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/PathExistsButIsNotDirectoryException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/PcovNotAvailableException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/PhpdbgNotAvailableException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/ReflectionException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/ReportAlreadyFinalizedException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/TestIdMissingException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/WriteOperationFailedException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/WrongXdebugVersionException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/Xdebug2NotEnabledException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/Xdebug3NotEnabledException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/XdebugNotAvailableException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Exception/XmlException.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Filter.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Node/AbstractNode.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Node/Builder.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Node/CrapIndex.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Node/Directory.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Node/File.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Node/Iterator.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/ProcessedCodeCoverageData.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/RawCodeCoverageData.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Clover.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Cobertura.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Crap4j.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Facade.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/branches.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar_branch.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/bootstrap.min.css create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/nv.d3.min.css create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/octicons.css create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/style.css create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/dashboard.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/dashboard_branch.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/directory.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/directory_branch.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/directory_item.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/directory_item_branch.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/file.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/file_branch.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/file_item.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/file_item_branch.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-code.svg create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/icons/file-directory.svg create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/bootstrap.min.js create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/d3.min.js create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/file.js create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/jquery.min.js create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/nv.d3.min.js create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/popper.min.js create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/line.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/lines.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/method_item.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/method_item_branch.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/paths.html.dist create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/PHP.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Text.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Coverage.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Directory.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Facade.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/File.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Method.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Node.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Project.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Report.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Source.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Tests.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Totals.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Report/Xml/Unit.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CacheWarmer.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CachingFileAnalyser.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CodeUnitFindingVisitor.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/StaticAnalysis/ExecutableLinesFindingVisitor.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/StaticAnalysis/FileAnalyser.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/StaticAnalysis/IgnoredLinesFindingVisitor.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/StaticAnalysis/ParsingFileAnalyser.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Util/Filesystem.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Util/Percentage.php create mode 100644 www-api/vendor/phpunit/php-code-coverage/src/Version.php create mode 100644 www-api/vendor/phpunit/php-file-iterator/.psalm/baseline.xml create mode 100644 www-api/vendor/phpunit/php-file-iterator/.psalm/config.xml create mode 100644 www-api/vendor/phpunit/php-file-iterator/ChangeLog.md create mode 100644 www-api/vendor/phpunit/php-file-iterator/LICENSE create mode 100644 www-api/vendor/phpunit/php-file-iterator/README.md create mode 100644 www-api/vendor/phpunit/php-file-iterator/composer.json create mode 100644 www-api/vendor/phpunit/php-file-iterator/src/Facade.php create mode 100644 www-api/vendor/phpunit/php-file-iterator/src/Factory.php create mode 100644 www-api/vendor/phpunit/php-file-iterator/src/Iterator.php create mode 100644 www-api/vendor/phpunit/php-invoker/ChangeLog.md create mode 100644 www-api/vendor/phpunit/php-invoker/LICENSE create mode 100644 www-api/vendor/phpunit/php-invoker/README.md create mode 100644 www-api/vendor/phpunit/php-invoker/composer.json create mode 100644 www-api/vendor/phpunit/php-invoker/src/Invoker.php create mode 100644 www-api/vendor/phpunit/php-invoker/src/exceptions/Exception.php create mode 100644 www-api/vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php create mode 100644 www-api/vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php create mode 100644 www-api/vendor/phpunit/php-text-template/.psalm/baseline.xml create mode 100644 www-api/vendor/phpunit/php-text-template/.psalm/config.xml create mode 100644 www-api/vendor/phpunit/php-text-template/ChangeLog.md create mode 100644 www-api/vendor/phpunit/php-text-template/LICENSE create mode 100644 www-api/vendor/phpunit/php-text-template/README.md create mode 100644 www-api/vendor/phpunit/php-text-template/composer.json create mode 100644 www-api/vendor/phpunit/php-text-template/src/Template.php create mode 100644 www-api/vendor/phpunit/php-text-template/src/exceptions/Exception.php create mode 100644 www-api/vendor/phpunit/php-text-template/src/exceptions/InvalidArgumentException.php create mode 100644 www-api/vendor/phpunit/php-text-template/src/exceptions/RuntimeException.php create mode 100644 www-api/vendor/phpunit/php-timer/.psalm/baseline.xml create mode 100644 www-api/vendor/phpunit/php-timer/.psalm/config.xml create mode 100644 www-api/vendor/phpunit/php-timer/ChangeLog.md create mode 100644 www-api/vendor/phpunit/php-timer/LICENSE create mode 100644 www-api/vendor/phpunit/php-timer/README.md create mode 100644 www-api/vendor/phpunit/php-timer/composer.json create mode 100644 www-api/vendor/phpunit/php-timer/src/Duration.php create mode 100644 www-api/vendor/phpunit/php-timer/src/ResourceUsageFormatter.php create mode 100644 www-api/vendor/phpunit/php-timer/src/Timer.php create mode 100644 www-api/vendor/phpunit/php-timer/src/exceptions/Exception.php create mode 100644 www-api/vendor/phpunit/php-timer/src/exceptions/NoActiveTimerException.php create mode 100644 www-api/vendor/phpunit/php-timer/src/exceptions/TimeSinceStartOfRequestNotAvailableException.php create mode 100644 www-api/vendor/phpunit/phpunit/.phpstorm.meta.php create mode 100644 www-api/vendor/phpunit/phpunit/ChangeLog-8.5.md create mode 100644 www-api/vendor/phpunit/phpunit/ChangeLog-9.5.md create mode 100644 www-api/vendor/phpunit/phpunit/LICENSE create mode 100644 www-api/vendor/phpunit/phpunit/README.md create mode 100644 www-api/vendor/phpunit/phpunit/SECURITY.md create mode 100644 www-api/vendor/phpunit/phpunit/composer.json create mode 100755 www-api/vendor/phpunit/phpunit/phpunit create mode 100644 www-api/vendor/phpunit/phpunit/phpunit.xsd create mode 100644 www-api/vendor/phpunit/phpunit/schema/8.5.xsd create mode 100644 www-api/vendor/phpunit/phpunit/schema/9.2.xsd create mode 100644 www-api/vendor/phpunit/phpunit/src/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Assert.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Assert/Functions.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Boolean/IsFalse.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Boolean/IsTrue.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Callback.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/Count.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/GreaterThan.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/IsEmpty.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/LessThan.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/SameSize.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Constraint.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqual.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualCanonicalizing.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualIgnoringCase.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualWithDelta.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionCode.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessage.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessageRegularExpression.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/DirectoryExists.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/FileExists.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsReadable.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsWritable.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/IsAnything.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsFinite.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsInfinite.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsNan.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ClassHasAttribute.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ClassHasStaticAttribute.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ObjectEquals.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ObjectHasAttribute.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/BinaryOperator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalAnd.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalNot.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalOr.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalXor.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/Operator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/UnaryOperator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/String/IsJson.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/String/RegularExpression.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringContains.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringEndsWith.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringMatchesFormatDescription.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringStartsWith.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/ArrayHasKey.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContains.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsEqual.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsIdentical.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsOnly.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsInstanceOf.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsNull.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsType.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/DataProviderTestSuite.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Error/Deprecated.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Error/Error.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Error/Notice.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Error/Warning.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/ErrorTestCase.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/ActualValueIsNotAnObjectException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/AssertionFailedError.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/CodeCoverageException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotAcceptParameterTypeException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareBoolReturnTypeException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareExactlyOneParameterException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareParameterTypeException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotExistException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/CoveredCodeNotExecutedException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/Error.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/ExpectationFailedException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/IncompleteTestError.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/InvalidArgumentException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/InvalidCoversTargetException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/MissingCoversAnnotationException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/OutputError.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/PHPTAssertionFailedError.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/RiskyTestError.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/SkippedTestError.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/SkippedTestSuiteError.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/SyntheticError.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/SyntheticSkippedError.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/UnintentionallyCoveredCodeError.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Exception/Warning.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/ExceptionWrapper.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/ExecutionOrderDependency.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/IncompleteTest.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/IncompleteTestCase.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/InvalidParameterGroupException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Api/Api.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Api/Method.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/Identity.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationMocker.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationStubber.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/MethodNameMatch.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/ParametersMatch.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/Stub.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/ConfigurableMethod.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseAddMethodsException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ClassAlreadyExistsException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ClassIsFinalException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ConfigurableMethodsAlreadyInitializedException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/DuplicateMethodException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/IncompatibleReturnValueException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/InvalidMethodNameException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MatchBuilderNotFoundException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MatcherAlreadyRegisteredException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodCannotBeConfiguredException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameAlreadyConfiguredException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameNotConfiguredException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodParametersAlreadyConfiguredException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/OriginalConstructorInvocationRequiredException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ReflectionException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/SoapExtensionNotAvailableException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownClassException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownTraitException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownTypeException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/intersection.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_class.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_method.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_method_never_or_void.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_static_method.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/proxied_method.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/proxied_method_never_or_void.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/trait_class.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_class.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_method.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Invocation.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/InvocationHandler.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Matcher.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/MethodNameConstraint.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/MockClass.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/MockMethod.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/MockMethodSet.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/MockObject.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/MockTrait.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/MockType.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/AnyInvokedCount.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/AnyParameters.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/ConsecutiveParameters.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvocationOrder.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtIndex.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtLeastCount.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtLeastOnce.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtMostCount.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedCount.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/MethodName.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/Parameters.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/ParametersRule.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Stub.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ConsecutiveCalls.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnArgument.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnCallback.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnReference.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnSelf.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnStub.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnValueMap.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/Stub.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/MockObject/Verifiable.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Reorderable.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/SelfDescribing.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/SkippedTest.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/SkippedTestCase.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/Test.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/TestBuilder.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/TestCase.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/TestFailure.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/TestListener.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/TestResult.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/TestSuite.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/TestSuiteIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Framework/WarningTestCase.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/BaseTestRunner.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/DefaultTestResultCache.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Extension/ExtensionHandler.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Extension/PharLoader.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Filter/Factory.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/AfterTestHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/Hook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/TestHook.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Hook/TestListenerAdapter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/NullTestResultCache.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/PhptTestCase.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/ResultCacheExtension.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/TestResultCache.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/TestSuiteSorter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Runner/Version.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/CliArguments/Builder.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/CliArguments/Configuration.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/CliArguments/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/CliArguments/Mapper.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/Command.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/DefaultResultPrinter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/Exception/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/Exception/ReflectionException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/Exception/TestDirectoryNotFoundException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/Exception/TestFileNotFoundException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/Help.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/ResultPrinter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/TestRunner.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/TestSuiteMapper.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/CodeCoverage.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/Directory.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/FilterMapper.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Clover.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Cobertura.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Crap4j.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Html.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Php.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Text.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Xml.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Configuration.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/Directory.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/DirectoryCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/DirectoryCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/File.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/FileCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/FileCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Generator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/Group.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/GroupCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/GroupCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/Groups.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Loader.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Junit.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Logging.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TeamCity.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Html.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Text.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Xml.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Text.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilder.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilderException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/ConvertLogTypes.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageCloverToReport.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageCrap4jToReport.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageHtmlToReport.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoveragePhpToReport.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageTextToReport.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageXmlToReport.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/IntroduceCoverageElement.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/LogToReportMigration.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/Migration.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromRootToCoverage.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistDirectoriesToCoverage.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistExcludesToCoverage.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveCacheTokensAttribute.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveEmptyFilter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveLogTypes.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/UpdateSchemaLocationTo93.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Constant.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/ConstantCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/ConstantCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSetting.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSettingCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSettingCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Php.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/PhpHandler.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Variable.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/VariableCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/VariableCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/Extension.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/ExtensionCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/ExtensionCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/PHPUnit.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectory.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFile.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFileCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFileCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuite.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuiteCollection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuiteCollectionIterator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Annotation/DocBlock.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Annotation/Registry.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Blacklist.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Cloner.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Color.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/ErrorHandler.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/ExcludeList.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/FileLoader.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Filesystem.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Filter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/GlobalState.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/InvalidDataSetException.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Json.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Log/JUnit.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Log/TeamCity.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/PHP/Template/PhptTestCase.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/PHP/Template/TestCaseClass.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/PHP/Template/TestCaseMethod.tpl create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Printer.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Reflection.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/RegularExpression.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Test.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/TestDox/CliTestDoxPrinter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/TestDox/TestDoxPrinter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/TextTestListRenderer.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Type.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/VersionComparisonOperator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/XdebugFilterScriptGenerator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml/Exception.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml/FailedSchemaDetectionResult.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml/Loader.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml/SchemaDetectionResult.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml/SchemaDetector.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml/SchemaFinder.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml/SnapshotNodeList.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml/SuccessfulSchemaDetectionResult.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml/ValidationResult.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/Xml/Validator.php create mode 100644 www-api/vendor/phpunit/phpunit/src/Util/XmlTestListRenderer.php create mode 100644 www-api/vendor/sebastian/cli-parser/ChangeLog.md create mode 100644 www-api/vendor/sebastian/cli-parser/LICENSE create mode 100644 www-api/vendor/sebastian/cli-parser/README.md create mode 100644 www-api/vendor/sebastian/cli-parser/composer.json create mode 100644 www-api/vendor/sebastian/cli-parser/infection.json create mode 100644 www-api/vendor/sebastian/cli-parser/src/Parser.php create mode 100644 www-api/vendor/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php create mode 100644 www-api/vendor/sebastian/cli-parser/src/exceptions/Exception.php create mode 100644 www-api/vendor/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php create mode 100644 www-api/vendor/sebastian/cli-parser/src/exceptions/RequiredOptionArgumentMissingException.php create mode 100644 www-api/vendor/sebastian/cli-parser/src/exceptions/UnknownOptionException.php create mode 100644 www-api/vendor/sebastian/code-unit-reverse-lookup/ChangeLog.md create mode 100644 www-api/vendor/sebastian/code-unit-reverse-lookup/LICENSE create mode 100644 www-api/vendor/sebastian/code-unit-reverse-lookup/README.md create mode 100644 www-api/vendor/sebastian/code-unit-reverse-lookup/composer.json create mode 100644 www-api/vendor/sebastian/code-unit-reverse-lookup/src/Wizard.php create mode 100644 www-api/vendor/sebastian/code-unit/.psalm/baseline.xml create mode 100644 www-api/vendor/sebastian/code-unit/.psalm/config.xml create mode 100644 www-api/vendor/sebastian/code-unit/ChangeLog.md create mode 100644 www-api/vendor/sebastian/code-unit/LICENSE create mode 100644 www-api/vendor/sebastian/code-unit/README.md create mode 100644 www-api/vendor/sebastian/code-unit/composer.json create mode 100644 www-api/vendor/sebastian/code-unit/src/ClassMethodUnit.php create mode 100644 www-api/vendor/sebastian/code-unit/src/ClassUnit.php create mode 100644 www-api/vendor/sebastian/code-unit/src/CodeUnit.php create mode 100644 www-api/vendor/sebastian/code-unit/src/CodeUnitCollection.php create mode 100644 www-api/vendor/sebastian/code-unit/src/CodeUnitCollectionIterator.php create mode 100644 www-api/vendor/sebastian/code-unit/src/FunctionUnit.php create mode 100644 www-api/vendor/sebastian/code-unit/src/InterfaceMethodUnit.php create mode 100644 www-api/vendor/sebastian/code-unit/src/InterfaceUnit.php create mode 100644 www-api/vendor/sebastian/code-unit/src/Mapper.php create mode 100644 www-api/vendor/sebastian/code-unit/src/TraitMethodUnit.php create mode 100644 www-api/vendor/sebastian/code-unit/src/TraitUnit.php create mode 100644 www-api/vendor/sebastian/code-unit/src/exceptions/Exception.php create mode 100644 www-api/vendor/sebastian/code-unit/src/exceptions/InvalidCodeUnitException.php create mode 100644 www-api/vendor/sebastian/code-unit/src/exceptions/NoTraitException.php create mode 100644 www-api/vendor/sebastian/code-unit/src/exceptions/ReflectionException.php create mode 100644 www-api/vendor/sebastian/comparator/ChangeLog.md create mode 100644 www-api/vendor/sebastian/comparator/LICENSE create mode 100644 www-api/vendor/sebastian/comparator/README.md create mode 100644 www-api/vendor/sebastian/comparator/composer.json create mode 100644 www-api/vendor/sebastian/comparator/src/ArrayComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/Comparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/ComparisonFailure.php create mode 100644 www-api/vendor/sebastian/comparator/src/DOMNodeComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/DateTimeComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/DoubleComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/ExceptionComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/Factory.php create mode 100644 www-api/vendor/sebastian/comparator/src/MockObjectComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/NumericComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/ObjectComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/ResourceComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/ScalarComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/SplObjectStorageComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/TypeComparator.php create mode 100644 www-api/vendor/sebastian/comparator/src/exceptions/Exception.php create mode 100644 www-api/vendor/sebastian/comparator/src/exceptions/RuntimeException.php create mode 100644 www-api/vendor/sebastian/complexity/.psalm/baseline.xml create mode 100644 www-api/vendor/sebastian/complexity/.psalm/config.xml create mode 100644 www-api/vendor/sebastian/complexity/ChangeLog.md create mode 100644 www-api/vendor/sebastian/complexity/LICENSE create mode 100644 www-api/vendor/sebastian/complexity/README.md create mode 100644 www-api/vendor/sebastian/complexity/composer.json create mode 100644 www-api/vendor/sebastian/complexity/src/Calculator.php create mode 100644 www-api/vendor/sebastian/complexity/src/Complexity/Complexity.php create mode 100644 www-api/vendor/sebastian/complexity/src/Complexity/ComplexityCollection.php create mode 100644 www-api/vendor/sebastian/complexity/src/Complexity/ComplexityCollectionIterator.php create mode 100644 www-api/vendor/sebastian/complexity/src/Exception/Exception.php create mode 100644 www-api/vendor/sebastian/complexity/src/Exception/RuntimeException.php create mode 100644 www-api/vendor/sebastian/complexity/src/Visitor/ComplexityCalculatingVisitor.php create mode 100644 www-api/vendor/sebastian/complexity/src/Visitor/CyclomaticComplexityCalculatingVisitor.php create mode 100644 www-api/vendor/sebastian/diff/ChangeLog.md create mode 100644 www-api/vendor/sebastian/diff/LICENSE create mode 100644 www-api/vendor/sebastian/diff/README.md create mode 100644 www-api/vendor/sebastian/diff/composer.json create mode 100644 www-api/vendor/sebastian/diff/src/Chunk.php create mode 100644 www-api/vendor/sebastian/diff/src/Diff.php create mode 100644 www-api/vendor/sebastian/diff/src/Differ.php create mode 100644 www-api/vendor/sebastian/diff/src/Exception/ConfigurationException.php create mode 100644 www-api/vendor/sebastian/diff/src/Exception/Exception.php create mode 100644 www-api/vendor/sebastian/diff/src/Exception/InvalidArgumentException.php create mode 100644 www-api/vendor/sebastian/diff/src/Line.php create mode 100644 www-api/vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.php create mode 100644 www-api/vendor/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php create mode 100644 www-api/vendor/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php create mode 100644 www-api/vendor/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php create mode 100644 www-api/vendor/sebastian/diff/src/Output/DiffOutputBuilderInterface.php create mode 100644 www-api/vendor/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php create mode 100644 www-api/vendor/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php create mode 100644 www-api/vendor/sebastian/diff/src/Parser.php create mode 100644 www-api/vendor/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php create mode 100644 www-api/vendor/sebastian/environment/ChangeLog.md create mode 100644 www-api/vendor/sebastian/environment/LICENSE create mode 100644 www-api/vendor/sebastian/environment/README.md create mode 100644 www-api/vendor/sebastian/environment/composer.json create mode 100644 www-api/vendor/sebastian/environment/src/Console.php create mode 100644 www-api/vendor/sebastian/environment/src/OperatingSystem.php create mode 100644 www-api/vendor/sebastian/environment/src/Runtime.php create mode 100644 www-api/vendor/sebastian/exporter/ChangeLog.md create mode 100644 www-api/vendor/sebastian/exporter/LICENSE create mode 100644 www-api/vendor/sebastian/exporter/README.md create mode 100644 www-api/vendor/sebastian/exporter/composer.json create mode 100644 www-api/vendor/sebastian/exporter/src/Exporter.php create mode 100644 www-api/vendor/sebastian/global-state/ChangeLog.md create mode 100644 www-api/vendor/sebastian/global-state/LICENSE create mode 100644 www-api/vendor/sebastian/global-state/README.md create mode 100644 www-api/vendor/sebastian/global-state/composer.json create mode 100644 www-api/vendor/sebastian/global-state/src/CodeExporter.php create mode 100644 www-api/vendor/sebastian/global-state/src/ExcludeList.php create mode 100644 www-api/vendor/sebastian/global-state/src/Restorer.php create mode 100644 www-api/vendor/sebastian/global-state/src/Snapshot.php create mode 100644 www-api/vendor/sebastian/global-state/src/exceptions/Exception.php create mode 100644 www-api/vendor/sebastian/global-state/src/exceptions/RuntimeException.php create mode 100644 www-api/vendor/sebastian/lines-of-code/.psalm/baseline.xml create mode 100644 www-api/vendor/sebastian/lines-of-code/.psalm/config.xml create mode 100644 www-api/vendor/sebastian/lines-of-code/ChangeLog.md create mode 100644 www-api/vendor/sebastian/lines-of-code/LICENSE create mode 100644 www-api/vendor/sebastian/lines-of-code/README.md create mode 100644 www-api/vendor/sebastian/lines-of-code/composer.json create mode 100644 www-api/vendor/sebastian/lines-of-code/src/Counter.php create mode 100644 www-api/vendor/sebastian/lines-of-code/src/Exception/Exception.php create mode 100644 www-api/vendor/sebastian/lines-of-code/src/Exception/IllogicalValuesException.php create mode 100644 www-api/vendor/sebastian/lines-of-code/src/Exception/NegativeValueException.php create mode 100644 www-api/vendor/sebastian/lines-of-code/src/Exception/RuntimeException.php create mode 100644 www-api/vendor/sebastian/lines-of-code/src/LineCountingVisitor.php create mode 100644 www-api/vendor/sebastian/lines-of-code/src/LinesOfCode.php create mode 100644 www-api/vendor/sebastian/object-enumerator/.psalm/baseline.xml create mode 100644 www-api/vendor/sebastian/object-enumerator/.psalm/config.xml create mode 100644 www-api/vendor/sebastian/object-enumerator/ChangeLog.md create mode 100644 www-api/vendor/sebastian/object-enumerator/LICENSE create mode 100644 www-api/vendor/sebastian/object-enumerator/README.md create mode 100644 www-api/vendor/sebastian/object-enumerator/composer.json create mode 100644 www-api/vendor/sebastian/object-enumerator/phpunit.xml create mode 100644 www-api/vendor/sebastian/object-enumerator/src/Enumerator.php create mode 100644 www-api/vendor/sebastian/object-enumerator/src/Exception.php create mode 100644 www-api/vendor/sebastian/object-enumerator/src/InvalidArgumentException.php create mode 100644 www-api/vendor/sebastian/object-reflector/.psalm/baseline.xml create mode 100644 www-api/vendor/sebastian/object-reflector/.psalm/config.xml create mode 100644 www-api/vendor/sebastian/object-reflector/ChangeLog.md create mode 100644 www-api/vendor/sebastian/object-reflector/LICENSE create mode 100644 www-api/vendor/sebastian/object-reflector/README.md create mode 100644 www-api/vendor/sebastian/object-reflector/composer.json create mode 100644 www-api/vendor/sebastian/object-reflector/src/Exception.php create mode 100644 www-api/vendor/sebastian/object-reflector/src/InvalidArgumentException.php create mode 100644 www-api/vendor/sebastian/object-reflector/src/ObjectReflector.php create mode 100644 www-api/vendor/sebastian/recursion-context/.psalm/baseline.xml create mode 100644 www-api/vendor/sebastian/recursion-context/.psalm/config.xml create mode 100644 www-api/vendor/sebastian/recursion-context/ChangeLog.md create mode 100644 www-api/vendor/sebastian/recursion-context/LICENSE create mode 100644 www-api/vendor/sebastian/recursion-context/README.md create mode 100644 www-api/vendor/sebastian/recursion-context/composer.json create mode 100644 www-api/vendor/sebastian/recursion-context/src/Context.php create mode 100644 www-api/vendor/sebastian/recursion-context/src/Exception.php create mode 100644 www-api/vendor/sebastian/recursion-context/src/InvalidArgumentException.php create mode 100644 www-api/vendor/sebastian/resource-operations/.gitattributes create mode 100644 www-api/vendor/sebastian/resource-operations/.gitignore create mode 100644 www-api/vendor/sebastian/resource-operations/ChangeLog.md create mode 100644 www-api/vendor/sebastian/resource-operations/LICENSE create mode 100644 www-api/vendor/sebastian/resource-operations/README.md create mode 100755 www-api/vendor/sebastian/resource-operations/build/generate.php create mode 100644 www-api/vendor/sebastian/resource-operations/composer.json create mode 100644 www-api/vendor/sebastian/resource-operations/src/ResourceOperations.php create mode 100644 www-api/vendor/sebastian/type/ChangeLog.md create mode 100644 www-api/vendor/sebastian/type/LICENSE create mode 100644 www-api/vendor/sebastian/type/README.md create mode 100644 www-api/vendor/sebastian/type/composer.json create mode 100644 www-api/vendor/sebastian/type/src/Parameter.php create mode 100644 www-api/vendor/sebastian/type/src/ReflectionMapper.php create mode 100644 www-api/vendor/sebastian/type/src/TypeName.php create mode 100644 www-api/vendor/sebastian/type/src/exception/Exception.php create mode 100644 www-api/vendor/sebastian/type/src/exception/RuntimeException.php create mode 100644 www-api/vendor/sebastian/type/src/type/CallableType.php create mode 100644 www-api/vendor/sebastian/type/src/type/FalseType.php create mode 100644 www-api/vendor/sebastian/type/src/type/GenericObjectType.php create mode 100644 www-api/vendor/sebastian/type/src/type/IntersectionType.php create mode 100644 www-api/vendor/sebastian/type/src/type/IterableType.php create mode 100644 www-api/vendor/sebastian/type/src/type/MixedType.php create mode 100644 www-api/vendor/sebastian/type/src/type/NeverType.php create mode 100644 www-api/vendor/sebastian/type/src/type/NullType.php create mode 100644 www-api/vendor/sebastian/type/src/type/ObjectType.php create mode 100644 www-api/vendor/sebastian/type/src/type/SimpleType.php create mode 100644 www-api/vendor/sebastian/type/src/type/StaticType.php create mode 100644 www-api/vendor/sebastian/type/src/type/TrueType.php create mode 100644 www-api/vendor/sebastian/type/src/type/Type.php create mode 100644 www-api/vendor/sebastian/type/src/type/UnionType.php create mode 100644 www-api/vendor/sebastian/type/src/type/UnknownType.php create mode 100644 www-api/vendor/sebastian/type/src/type/VoidType.php create mode 100644 www-api/vendor/sebastian/version/.gitattributes create mode 100644 www-api/vendor/sebastian/version/.gitignore create mode 100644 www-api/vendor/sebastian/version/ChangeLog.md create mode 100644 www-api/vendor/sebastian/version/LICENSE create mode 100644 www-api/vendor/sebastian/version/README.md create mode 100644 www-api/vendor/sebastian/version/composer.json create mode 100644 www-api/vendor/sebastian/version/src/Version.php create mode 100644 www-api/vendor/theseer/tokenizer/.php_cs.dist create mode 100644 www-api/vendor/theseer/tokenizer/CHANGELOG.md create mode 100644 www-api/vendor/theseer/tokenizer/LICENSE create mode 100644 www-api/vendor/theseer/tokenizer/README.md create mode 100644 www-api/vendor/theseer/tokenizer/composer.json create mode 100644 www-api/vendor/theseer/tokenizer/composer.lock create mode 100644 www-api/vendor/theseer/tokenizer/src/Exception.php create mode 100644 www-api/vendor/theseer/tokenizer/src/NamespaceUri.php create mode 100644 www-api/vendor/theseer/tokenizer/src/NamespaceUriException.php create mode 100644 www-api/vendor/theseer/tokenizer/src/Token.php create mode 100644 www-api/vendor/theseer/tokenizer/src/TokenCollection.php create mode 100644 www-api/vendor/theseer/tokenizer/src/TokenCollectionException.php create mode 100644 www-api/vendor/theseer/tokenizer/src/Tokenizer.php create mode 100644 www-api/vendor/theseer/tokenizer/src/XMLSerializer.php create mode 100755 www-api/writable/.htaccess mode change 100644 => 100755 www-api/writable/cache/index.html create mode 100755 www-api/writable/debugbar/.gitkeep mode change 100644 => 100755 www-api/writable/logs/index.html mode change 100644 => 100755 www-api/writable/session/index.html rename www-api/{application/cache => writable/uploads}/index.html (100%) mode change 100644 => 100755 diff --git a/www-api/.editorconfig b/www-api/.editorconfig deleted file mode 100644 index 39f48d95..00000000 --- a/www-api/.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -# top-most EditorConfig file -root = true - -# Unix-style newlines with a newline ending every file -[*] -end_of_line = lf -insert_final_newline = true - -# Matches multiple files with brace expansion notation -# Set default charset -[*] -charset = utf-8 - -# Tab indentation (no size specified) -indent_style = tab diff --git a/www-api/Dockerfile b/www-api/Dockerfile index 3704340c..b4a9df55 100644 --- a/www-api/Dockerfile +++ b/www-api/Dockerfile @@ -1,9 +1,10 @@ FROM nginx COPY . /opt/mainsite/wrenchboard/www-api/ -COPY index.php /opt/mainsite/wrenchboard/www-api/index.php +COPY public /opt/mainsite/wrenchboard/www-api/public COPY backend.php /opt/mainsite/wrenchboard/www-api/backend.php -COPY application /opt/mainsite/wrenchboard/www-api/application +COPY app /opt/mainsite/wrenchboard/www-api/app COPY system /opt/mainsite/wrenchboard/www-api/system +#COPY svs /opt/mainsite/wrenchboard/www-api/svs COPY composer.json /opt/mainsite/wrenchboard/www-api/composer.json COPY vendor /opt/mainsite/wrenchboard/www-api/vendor COPY writable /opt/mainsite/wrenchboard/www-api/writable diff --git a/www-api/license.txt b/www-api/LICENSE similarity index 90% rename from www-api/license.txt rename to www-api/LICENSE index 82be622d..31425034 100644 --- a/www-api/license.txt +++ b/www-api/LICENSE @@ -1,6 +1,7 @@ The MIT License (MIT) -Copyright (c) 2019 - 2022, CodeIgniter Foundation +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 diff --git a/www-api/README.md b/www-api/README.md new file mode 100644 index 00000000..ebc758ed --- /dev/null +++ b/www-api/README.md @@ -0,0 +1,56 @@ +# 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/apache_log/error.log b/www-api/apache_log/error.log deleted file mode 100644 index e15daaa1..00000000 --- a/www-api/apache_log/error.log +++ /dev/null @@ -1,15 +0,0 @@ -[Fri Nov 18 01:23:31.724975 2022] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.54 (Debian) PHP/7.4.33 configured -- resuming normal operations -[Fri Nov 18 01:23:31.725362 2022] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Fri Nov 18 01:28:30.448983 2022] [mpm_prefork:notice] [pid 1] AH00170: caught SIGWINCH, shutting down gracefully -[Fri Nov 18 01:28:38.846502 2022] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.54 (Debian) PHP/7.4.33 configured -- resuming normal operations -[Fri Nov 18 01:28:38.846765 2022] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Fri Nov 18 01:43:30.493559 2022] [mpm_prefork:notice] [pid 1] AH00170: caught SIGWINCH, shutting down gracefully -[Fri Nov 18 01:43:33.322175 2022] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.54 (Debian) PHP/7.4.33 configured -- resuming normal operations -[Fri Nov 18 01:43:33.322469 2022] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Fri Nov 18 01:43:48.896358 2022] [autoindex:error] [pid 18] [client 172.24.0.1:47222] AH01276: Cannot serve directory /var/www/html/public/svs/: No matching DirectoryIndex (index.php,index.html) found, and server-generated directory index forbidden by Options directive -[Fri Nov 18 01:46:42.750129 2022] [mpm_prefork:notice] [pid 1] AH00170: caught SIGWINCH, shutting down gracefully -[Fri Nov 18 01:46:45.512615 2022] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.54 (Debian) PHP/7.4.33 configured -- resuming normal operations -[Fri Nov 18 01:46:45.512925 2022] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Sat Nov 19 22:40:16.634065 2022] [mpm_prefork:notice] [pid 1] AH00170: caught SIGWINCH, shutting down gracefully -[Sat Nov 19 23:00:20.141921 2022] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.54 (Debian) PHP/7.4.33 configured -- resuming normal operations -[Sat Nov 19 23:00:20.142224 2022] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' diff --git a/www-api/apache_log/other_vhosts_access.log b/www-api/apache_log/other_vhosts_access.log deleted file mode 100644 index cedbcd55..00000000 --- a/www-api/apache_log/other_vhosts_access.log +++ /dev/null @@ -1,18 +0,0 @@ -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:30:56 +0000] "GET / HTTP/1.1" 200 6388 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:30:57 +0000] "GET /favicon.ico HTTP/1.1" 200 5731 "http://localhost:9083/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:30:59 +0000] "GET / HTTP/1.1" 200 6387 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:31:48 +0000] "-" 408 0 "-" "-" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:43:48 +0000] "GET /svs/ HTTP/1.1" 403 416 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:43:54 +0000] "GET /svs/users/ HTTP/1.1" 301 507 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:43:54 +0000] "GET /svs/users HTTP/1.1" 404 2165 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:43:58 +0000] "GET /svs/users HTTP/1.1" 404 2165 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:44:33 +0000] "GET /svs/user/ HTTP/1.1" 400 3599 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:45:25 +0000] "-" 408 0 "-" "-" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:47:52 +0000] "GET /svs/user/ HTTP/1.1" 400 519 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:01:47:52 +0000] "GET /favicon.ico HTTP/1.1" 304 250 "http://localhost:9083/svs/user/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:02:27:41 +0000] "GET / HTTP/1.1" 200 6388 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:02:27:42 +0000] "GET /favicon.ico HTTP/1.1" 200 5731 "http://10.0.0.202:9083/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.24.0.1 - - [18/Nov/2022:02:28:34 +0000] "-" 408 0 "-" "-" -wrenchboard-api:80 172.25.0.1 - - [19/Nov/2022:23:01:00 +0000] "GET / HTTP/1.1" 200 6388 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.25.0.1 - - [19/Nov/2022:23:01:01 +0000] "GET /favicon.ico HTTP/1.1" 200 5731 "http://localhost:9083/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" -wrenchboard-api:80 172.25.0.1 - - [19/Nov/2022:23:01:52 +0000] "-" 408 0 "-" "-" diff --git a/www-api/application/.htaccess b/www-api/app/.htaccess similarity index 90% rename from www-api/application/.htaccess rename to www-api/app/.htaccess index 6c63ed4c..f24db0ac 100644 --- a/www-api/application/.htaccess +++ b/www-api/app/.htaccess @@ -3,4 +3,4 @@ Deny from all - \ No newline at end of file + diff --git a/www-api/app/Common.php b/www-api/app/Common.php new file mode 100644 index 00000000..23e3e614 --- /dev/null +++ b/www-api/app/Common.php @@ -0,0 +1,15 @@ + 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 new file mode 100644 index 00000000..05a86125 --- /dev/null +++ b/www-api/app/Config/Boot/development.php @@ -0,0 +1,32 @@ + + */ + 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 new file mode 100644 index 00000000..47b92f83 --- /dev/null +++ b/www-api/app/Config/Constants.php @@ -0,0 +1,94 @@ +` 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 ``, `