From e9e35cc04f182202ee69f7923f435979daf95502 Mon Sep 17 00:00:00 2001 From: Benn Oshrin Date: Wed, 21 Jul 2021 19:47:51 -0400 Subject: [PATCH] Commit app/vendor --- app/vendor/.gitkeep | 0 app/vendor/autoload.php | 7 + app/vendor/bin/composer | 1 + app/vendor/bin/jsonlint | 1 + app/vendor/bin/phinx | 1 + app/vendor/bin/php-parse | 1 + app/vendor/bin/phpcbf | 1 + app/vendor/bin/phpcs | 1 + app/vendor/bin/phpunit | 1 + app/vendor/bin/psysh | 1 + app/vendor/bin/validate-json | 1 + app/vendor/bin/var-dump-server | 1 + app/vendor/brick/varexporter/LICENSE | 20 + app/vendor/brick/varexporter/composer.json | 28 + .../brick/varexporter/src/ExportException.php | 36 + .../src/Internal/GenericExporter.php | 307 + .../src/Internal/ObjectExporter.php | 96 + .../ObjectExporter/AnyObjectExporter.php | 191 + .../ObjectExporter/ClosureExporter.php | 272 + .../ClosureExporter/PrettyPrinter.php | 41 + .../ObjectExporter/InternalClassExporter.php | 34 + .../ObjectExporter/SerializeExporter.php | 50 + .../ObjectExporter/SetStateExporter.php | 114 + .../ObjectExporter/StdClassExporter.php | 35 + .../brick/varexporter/src/VarExporter.php | 98 + app/vendor/cakephp-plugins.php | 11 + app/vendor/cakephp/bake/Dockerfile | 24 + app/vendor/cakephp/bake/LICENSE.txt | 28 + app/vendor/cakephp/bake/README.md | 39 + app/vendor/cakephp/bake/composer.json | 60 + app/vendor/cakephp/bake/docs.Dockerfile | 18 + .../cakephp/bake/docs/config/__init__.py | 0 app/vendor/cakephp/bake/docs/config/all.py | 49 + app/vendor/cakephp/bake/docs/en/conf.py | 9 + app/vendor/cakephp/bake/docs/en/contents.rst | 7 + .../cakephp/bake/docs/en/development.rst | 348 + app/vendor/cakephp/bake/docs/en/index.rst | 28 + app/vendor/cakephp/bake/docs/en/usage.rst | 62 + app/vendor/cakephp/bake/docs/es/conf.py | 9 + app/vendor/cakephp/bake/docs/es/contents.rst | 7 + .../cakephp/bake/docs/es/development.rst | 17 + app/vendor/cakephp/bake/docs/es/index.rst | 31 + app/vendor/cakephp/bake/docs/es/usage.rst | 115 + app/vendor/cakephp/bake/docs/fr/conf.py | 9 + app/vendor/cakephp/bake/docs/fr/contents.rst | 7 + .../cakephp/bake/docs/fr/development.rst | 351 + app/vendor/cakephp/bake/docs/fr/index.rst | 26 + app/vendor/cakephp/bake/docs/fr/usage.rst | 108 + app/vendor/cakephp/bake/docs/ja/conf.py | 9 + app/vendor/cakephp/bake/docs/ja/contents.rst | 7 + .../cakephp/bake/docs/ja/development.rst | 301 + app/vendor/cakephp/bake/docs/ja/index.rst | 28 + app/vendor/cakephp/bake/docs/ja/usage.rst | 102 + app/vendor/cakephp/bake/docs/pt/conf.py | 9 + app/vendor/cakephp/bake/docs/pt/contents.rst | 7 + .../cakephp/bake/docs/pt/development.rst | 303 + app/vendor/cakephp/bake/docs/pt/index.rst | 30 + app/vendor/cakephp/bake/docs/pt/usage.rst | 117 + app/vendor/cakephp/bake/docs/ru/conf.py | 9 + app/vendor/cakephp/bake/docs/ru/contents.rst | 7 + .../cakephp/bake/docs/ru/development.rst | 293 + app/vendor/cakephp/bake/docs/ru/index.rst | 24 + app/vendor/cakephp/bake/docs/ru/usage.rst | 131 + app/vendor/cakephp/bake/phpcs.xml.dist | 8 + app/vendor/cakephp/bake/phpstan.neon | 7 + app/vendor/cakephp/bake/psalm-baseline.xml | 19 + app/vendor/cakephp/bake/psalm.xml | 18 + .../cakephp/bake/src/Command/AllCommand.php | 123 + .../cakephp/bake/src/Command/BakeCommand.php | 167 + .../bake/src/Command/BehaviorCommand.php | 54 + .../cakephp/bake/src/Command/CellCommand.php | 128 + .../bake/src/Command/CommandCommand.php | 54 + .../bake/src/Command/ComponentCommand.php | 54 + .../bake/src/Command/ControllerAllCommand.php | 95 + .../bake/src/Command/ControllerCommand.php | 279 + .../cakephp/bake/src/Command/EntryCommand.php | 231 + .../bake/src/Command/FixtureAllCommand.php | 96 + .../bake/src/Command/FixtureCommand.php | 457 ++ .../cakephp/bake/src/Command/FormCommand.php | 54 + .../bake/src/Command/HelperCommand.php | 54 + .../bake/src/Command/MailerCommand.php | 70 + .../bake/src/Command/MiddlewareCommand.php | 54 + .../bake/src/Command/ModelAllCommand.php | 94 + .../cakephp/bake/src/Command/ModelCommand.php | 1205 +++ .../bake/src/Command/PluginCommand.php | 434 ++ .../bake/src/Command/ShellHelperCommand.php | 54 + .../bake/src/Command/SimpleBakeCommand.php | 160 + .../bake/src/Command/TemplateAllCommand.php | 96 + .../bake/src/Command/TemplateCommand.php | 435 ++ .../cakephp/bake/src/Command/TestCommand.php | 779 ++ app/vendor/cakephp/bake/src/Plugin.php | 158 + .../cakephp/bake/src/Shell/Task/BakeTask.php | 198 + .../bake/src/Shell/Task/SimpleBakeTask.php | 128 + .../bake/src/Utility/CommonOptionsTrait.php | 122 + .../src/Utility/Model/AssociationFilter.php | 114 + .../cakephp/bake/src/Utility/Process.php | 82 + .../src/Utility/SubsetSchemaCollection.php | 77 + .../cakephp/bake/src/Utility/TableScanner.php | 113 + .../bake/src/Utility/TemplateRenderer.php | 107 + app/vendor/cakephp/bake/src/View/BakeView.php | 150 + .../bake/src/View/Helper/BakeHelper.php | 473 ++ .../bake/src/View/Helper/DocBlockHelper.php | 319 + .../bake/templates/bake/Command/command.twig | 55 + .../templates/bake/Controller/component.twig | 35 + .../templates/bake/Controller/controller.twig | 70 + .../bake/templates/bake/Form/form.twig | 62 + .../bake/templates/bake/Mailer/mailer.twig | 34 + .../templates/bake/Middleware/middleware.twig | 42 + .../bake/templates/bake/Model/behavior.twig | 35 + .../bake/templates/bake/Model/entity.twig | 59 + .../bake/templates/bake/Model/table.twig | 141 + .../templates/bake/Plugin/.gitignore.twig | 8 + .../bake/templates/bake/Plugin/README.md.twig | 26 + .../templates/bake/Plugin/composer.json.twig | 40 + .../bake/Plugin/phpunit.xml.dist.twig | 50 + .../src/Controller/AppController.php.twig | 25 + .../templates/bake/Plugin/src/Plugin.php.twig | 79 + .../bake/Plugin/tests/bootstrap.php.twig | 57 + .../bake/Plugin/webroot/.gitkeep.twig | 15 + .../bake/templates/bake/Shell/helper.twig | 38 + .../bake/templates/bake/Template/add.twig | 22 + .../bake/templates/bake/Template/edit.twig | 22 + .../bake/templates/bake/Template/index.twig | 80 + .../bake/templates/bake/Template/login.twig | 30 + .../bake/templates/bake/Template/view.twig | 136 + .../bake/templates/bake/View/cell.twig | 53 + .../bake/templates/bake/View/helper.twig | 36 + .../bake/element/Controller/add.twig | 45 + .../bake/element/Controller/delete.twig | 34 + .../bake/element/Controller/edit.twig | 48 + .../bake/element/Controller/index.twig | 32 + .../bake/element/Controller/login.twig | 32 + .../bake/element/Controller/logout.twig | 24 + .../bake/element/Controller/view.twig | 34 + .../bake/element/array_property.twig | 6 + .../bake/templates/bake/element/form.twig | 75 + .../bake/templates/bake/layout/default.twig | 16 + .../bake/templates/bake/tests/fixture.twig | 74 + .../bake/templates/bake/tests/test_case.twig | 139 + .../Fixture/BakeArticlesBakeTagsFixture.php | 41 + .../tests/Fixture/BakeArticlesFixture.php | 48 + .../bake/tests/Fixture/BakeCarFixture.php | 51 + .../tests/Fixture/BakeCommentsFixture.php | 46 + .../bake/tests/Fixture/BakeTagsFixture.php | 43 + .../Fixture/BakeTemplateAuthorsFixture.php | 61 + .../Fixture/BakeTemplateProfilesFixture.php | 56 + .../Fixture/BakeTemplateRolesFixture.php | 49 + .../bake/tests/Fixture/BinaryTestsFixture.php | 42 + .../bake/tests/Fixture/CategoriesFixture.php | 57 + .../Fixture/CategoriesProductsFixture.php | 54 + .../tests/Fixture/CategoryThreadsFixture.php | 54 + .../bake/tests/Fixture/DatatypesFixture.php | 49 + .../bake/tests/Fixture/InvitationsFixture.php | 67 + .../bake/tests/Fixture/NumberTreesFixture.php | 47 + .../bake/tests/Fixture/OldProductsFixture.php | 57 + .../tests/Fixture/ProductVersionsFixture.php | 55 + .../bake/tests/Fixture/ProductsFixture.php | 57 + .../bake/tests/Fixture/TodoItemsFixture.php | 53 + .../Fixture/TodoItemsTodoLabelsFixture.php | 60 + .../bake/tests/Fixture/TodoLabelsFixture.php | 46 + .../bake/tests/Fixture/TodoTasksFixture.php | 50 + .../bake/tests/Fixture/UsersFixture.php | 51 + app/vendor/cakephp/bake/tests/bootstrap.php | 78 + .../cakephp-codesniffer/.github/codecov.yml | 7 + .../.github/workflows/ci.yml | 106 + .../Sniffs/Classes/ReturnTypeHintSniff.php | 236 + .../Commenting/DocBlockAlignmentSniff.php | 88 + .../Commenting/FunctionCommentSniff.php | 444 ++ .../Sniffs/Commenting/InheritDocSniff.php | 105 + .../ControlStructuresSniff.php | 58 + .../ElseIfDeclarationSniff.php | 49 + .../WhileStructuresSniff.php | 57 + .../Formatting/BlankLineBeforeReturnSniff.php | 94 + .../Functions/ClosureDeclarationSniff.php | 51 + .../ValidFunctionNameSniff.php | 94 + .../NamingConventions/ValidTraitNameSniff.php | 47 + .../Sniffs/PHP/DisallowShortOpenTagSniff.php | 58 + .../CakePHP/Sniffs/PHP/SingleQuoteSniff.php | 68 + .../Sniffs/WhiteSpace/EmptyLinesSniff.php | 60 + .../WhiteSpace/FunctionCallSpacingSniff.php | 64 + .../FunctionClosingBraceSpaceSniff.php | 73 + .../FunctionOpeningBraceSpaceSniff.php | 65 + .../WhiteSpace/FunctionSpacingSniff.php | 164 + .../Sniffs/WhiteSpace/TabAndSpaceSniff.php | 71 + .../cakephp-codesniffer/CakePHP/ruleset.xml | 206 + .../cakephp/cakephp-codesniffer/LICENSE | 20 + .../cakephp/cakephp-codesniffer/README.md | 76 + .../cakephp/cakephp-codesniffer/composer.json | 44 + .../cakephp-codesniffer/docs/README.md | 169 + .../cakephp-codesniffer/docs/generate.php | 26 + app/vendor/cakephp/cakephp/LICENSE | 20 + app/vendor/cakephp/cakephp/README.md | 91 + app/vendor/cakephp/cakephp/SECURITY.md | 31 + app/vendor/cakephp/cakephp/VERSION.txt | 19 + app/vendor/cakephp/cakephp/composer.json | 121 + .../cakephp/cakephp/config/bootstrap.php | 26 + app/vendor/cakephp/cakephp/config/config.php | 21 + .../src/Auth/AbstractPasswordHasher.php | 79 + .../cakephp/src/Auth/BaseAuthenticate.php | 267 + .../cakephp/src/Auth/BaseAuthorize.php | 66 + .../cakephp/src/Auth/BasicAuthenticate.php | 117 + .../cakephp/src/Auth/ControllerAuthorize.php | 97 + .../src/Auth/DefaultPasswordHasher.php | 82 + .../cakephp/src/Auth/DigestAuthenticate.php | 295 + .../src/Auth/FallbackPasswordHasher.php | 105 + .../cakephp/src/Auth/FormAuthenticate.php | 90 + .../src/Auth/PasswordHasherFactory.php | 59 + .../src/Auth/Storage/MemoryStorage.php | 79 + .../src/Auth/Storage/SessionStorage.php | 142 + .../src/Auth/Storage/StorageInterface.php | 57 + .../cakephp/src/Auth/WeakPasswordHasher.php | 70 + .../cakephp/cakephp/src/Cache/Cache.php | 629 ++ .../cakephp/cakephp/src/Cache/CacheEngine.php | 387 + .../src/Cache/CacheEngineInterface.php | 69 + .../cakephp/src/Cache/CacheRegistry.php | 112 + .../cakephp/src/Cache/Engine/ApcuEngine.php | 239 + .../cakephp/src/Cache/Engine/ArrayEngine.php | 188 + .../cakephp/src/Cache/Engine/FileEngine.php | 501 ++ .../src/Cache/Engine/MemcachedEngine.php | 514 ++ .../cakephp/src/Cache/Engine/NullEngine.php | 115 + .../cakephp/src/Cache/Engine/RedisEngine.php | 358 + .../src/Cache/Engine/WincacheEngine.php | 202 + .../src/Cache/InvalidArgumentException.php | 27 + .../cakephp/cakephp/src/Cache/LICENSE.txt | 22 + .../cakephp/cakephp/src/Cache/README.md | 57 + .../cakephp/cakephp/src/Cache/composer.json | 37 + .../cakephp/src/Collection/Collection.php | 106 + .../src/Collection/CollectionInterface.php | 1194 +++ .../src/Collection/CollectionTrait.php | 1033 +++ .../cakephp/src/Collection/ExtractTrait.php | 154 + .../Collection/Iterator/BufferedIterator.php | 217 + .../Collection/Iterator/ExtractIterator.php | 105 + .../Collection/Iterator/FilterIterator.php | 92 + .../Collection/Iterator/InsertIterator.php | 136 + .../src/Collection/Iterator/MapReduce.php | 194 + .../src/Collection/Iterator/NestIterator.php | 78 + .../Iterator/NoChildrenIterator.php | 48 + .../Collection/Iterator/ReplaceIterator.php | 102 + .../src/Collection/Iterator/SortIterator.php | 95 + .../Collection/Iterator/StoppableIterator.php | 116 + .../src/Collection/Iterator/TreeIterator.php | 110 + .../src/Collection/Iterator/TreePrinter.php | 135 + .../Collection/Iterator/UnfoldIterator.php | 88 + .../src/Collection/Iterator/ZipIterator.php | 127 + .../cakephp/src/Collection/LICENSE.txt | 22 + .../cakephp/cakephp/src/Collection/README.md | 31 + .../cakephp/src/Collection/composer.json | 36 + .../cakephp/src/Collection/functions.php | 33 + .../cakephp/src/Command/CacheClearCommand.php | 93 + .../src/Command/CacheClearallCommand.php | 70 + .../cakephp/src/Command/CacheListCommand.php | 68 + .../cakephp/cakephp/src/Command/Command.php | 66 + .../cakephp/src/Command/CompletionCommand.php | 281 + .../cakephp/src/Command/I18nCommand.php | 88 + .../src/Command/I18nExtractCommand.php | 888 +++ .../cakephp/src/Command/I18nInitCommand.php | 110 + .../src/Command/PluginAssetsCopyCommand.php | 83 + .../src/Command/PluginAssetsRemoveCommand.php | 88 + .../Command/PluginAssetsSymlinkCommand.php | 84 + .../cakephp/src/Command/PluginAssetsTrait.php | 274 + .../cakephp/src/Command/PluginLoadCommand.php | 140 + .../src/Command/PluginLoadedCommand.php | 64 + .../src/Command/PluginUnloadCommand.php | 113 + .../src/Command/RoutesCheckCommand.php | 106 + .../cakephp/src/Command/RoutesCommand.php | 64 + .../src/Command/RoutesGenerateCommand.php | 104 + .../src/Command/SchemacacheBuildCommand.php | 93 + .../src/Command/SchemacacheClearCommand.php | 93 + .../cakephp/src/Command/ServerCommand.php | 179 + .../cakephp/src/Command/VersionCommand.php | 41 + .../cakephp/cakephp/src/Console/Arguments.php | 164 + .../cakephp/src/Console/BaseCommand.php | 276 + .../cakephp/cakephp/src/Console/Command.php | 11 + .../src/Console/Command/HelpCommand.php | 224 + .../cakephp/src/Console/CommandCollection.php | 247 + .../CommandCollectionAwareInterface.php | 32 + .../cakephp/src/Console/CommandFactory.php | 63 + .../src/Console/CommandFactoryInterface.php | 29 + .../cakephp/src/Console/CommandInterface.php | 60 + .../cakephp/src/Console/CommandRunner.php | 404 ++ .../cakephp/src/Console/CommandScanner.php | 157 + .../src/Console/ConsoleErrorHandler.php | 10 + .../cakephp/src/Console/ConsoleInput.php | 106 + .../src/Console/ConsoleInputArgument.php | 199 + .../src/Console/ConsoleInputOption.php | 301 + .../src/Console/ConsoleInputSubcommand.php | 144 + .../cakephp/cakephp/src/Console/ConsoleIo.php | 661 ++ .../src/Console/ConsoleOptionParser.php | 965 +++ .../cakephp/src/Console/ConsoleOutput.php | 357 + .../Console/Exception/ConsoleException.php | 33 + .../Exception/MissingHelperException.php | 26 + .../Exception/MissingOptionException.php | 114 + .../Exception/MissingShellException.php | 28 + .../Exception/MissingShellMethodException.php | 26 + .../Exception/MissingTaskException.php | 26 + .../src/Console/Exception/StopException.php | 27 + .../cakephp/src/Console/HelpFormatter.php | 237 + .../cakephp/cakephp/src/Console/Helper.php | 65 + .../cakephp/src/Console/HelperRegistry.php | 106 + .../cakephp/cakephp/src/Console/LICENSE.txt | 22 + .../cakephp/cakephp/src/Console/README.md | 125 + .../cakephp/cakephp/src/Console/Shell.php | 948 +++ .../cakephp/src/Console/ShellDispatcher.php | 426 ++ .../cakephp/src/Console/TaskRegistry.php | 97 + .../cakephp/cakephp/src/Console/composer.json | 42 + .../cakephp/src/Controller/Component.php | 202 + .../Controller/Component/AuthComponent.php | 999 +++ .../Controller/Component/FlashComponent.php | 184 + .../Component/FormProtectionComponent.php | 166 + .../Component/PaginatorComponent.php | 331 + .../Component/RequestHandlerComponent.php | 523 ++ .../Component/SecurityComponent.php | 583 ++ .../src/Controller/ComponentRegistry.php | 141 + .../cakephp/src/Controller/Controller.php | 874 +++ .../src/Controller/ControllerFactory.php | 233 + .../src/Controller/ErrorController.php | 59 + .../Exception/AuthSecurityException.php | 28 + .../Exception/MissingActionException.php | 29 + .../Exception/MissingComponentException.php | 28 + .../Exception/SecurityException.php | 81 + app/vendor/cakephp/cakephp/src/Core/App.php | 267 + .../cakephp/cakephp/src/Core/BasePlugin.php | 301 + .../cakephp/cakephp/src/Core/ClassLoader.php | 139 + .../cakephp/cakephp/src/Core/Configure.php | 490 ++ .../Core/Configure/ConfigEngineInterface.php | 44 + .../src/Core/Configure/Engine/IniConfig.php | 203 + .../src/Core/Configure/Engine/JsonConfig.php | 115 + .../src/Core/Configure/Engine/PhpConfig.php | 114 + .../src/Core/Configure/FileConfigTrait.php | 71 + .../src/Core/ConsoleApplicationInterface.php | 42 + .../cakephp/cakephp/src/Core/Container.php | 31 + .../Core/ContainerApplicationInterface.php | 48 + .../cakephp/src/Core/ContainerInterface.php | 63 + .../cakephp/src/Core/ConventionsTrait.php | 156 + .../src/Core/Exception/CakeException.php | 119 + .../cakephp/src/Core/Exception/Exception.php | 16 + .../Core/Exception/MissingPluginException.php | 26 + .../src/Core/HttpApplicationInterface.php | 43 + .../cakephp/src/Core/InstanceConfigTrait.php | 314 + .../cakephp/cakephp/src/Core/LICENSE.txt | 22 + .../cakephp/src/Core/ObjectRegistry.php | 419 ++ .../cakephp/cakephp/src/Core/Plugin.php | 136 + .../src/Core/PluginApplicationInterface.php | 75 + .../cakephp/src/Core/PluginCollection.php | 345 + .../cakephp/src/Core/PluginInterface.php | 135 + app/vendor/cakephp/cakephp/src/Core/README.md | 37 + .../cakephp/src/Core/Retry/CommandRetry.php | 94 + .../src/Core/Retry/RetryStrategyInterface.php | 35 + .../cakephp/src/Core/ServiceConfig.php | 50 + .../cakephp/src/Core/ServiceProvider.php | 111 + .../cakephp/src/Core/StaticConfigTrait.php | 325 + .../cakephp/cakephp/src/Core/composer.json | 41 + .../cakephp/cakephp/src/Core/functions.php | 331 + .../cakephp/src/Database/Connection.php | 960 +++ .../src/Database/ConstraintsInterface.php | 49 + .../cakephp/cakephp/src/Database/Driver.php | 506 ++ .../cakephp/src/Database/Driver/Mysql.php | 354 + .../cakephp/src/Database/Driver/Postgres.php | 334 + .../src/Database/Driver/SqlDialectTrait.php | 308 + .../cakephp/src/Database/Driver/Sqlite.php | 334 + .../cakephp/src/Database/Driver/Sqlserver.php | 545 ++ .../Driver/TupleComparisonTranslatorTrait.php | 103 + .../cakephp/src/Database/DriverInterface.php | 280 + .../cakephp/src/Database/Exception.php | 16 + .../Database/Exception/DatabaseException.php | 30 + .../Exception/MissingConnectionException.php | 30 + .../Exception/MissingDriverException.php | 30 + .../Exception/MissingExtensionException.php | 31 + .../NestedTransactionRollbackException.php | 41 + .../Expression/AggregateExpression.php | 253 + .../Database/Expression/BetweenExpression.php | 144 + .../Database/Expression/CaseExpression.php | 249 + .../Expression/CommonTableExpression.php | 239 + .../src/Database/Expression/Comparison.php | 6 + .../Expression/ComparisonExpression.php | 320 + .../Database/Expression/FieldInterface.php | 39 + .../src/Database/Expression/FieldTrait.php | 51 + .../Expression/FunctionExpression.php | 178 + .../Expression/IdentifierExpression.php | 119 + .../Database/Expression/OrderByExpression.php | 88 + .../Expression/OrderClauseExpression.php | 90 + .../Database/Expression/QueryExpression.php | 824 +++ .../Database/Expression/StringExpression.php | 87 + .../Database/Expression/TupleComparison.php | 216 + .../Database/Expression/UnaryExpression.php | 118 + .../Database/Expression/ValuesExpression.php | 325 + .../Database/Expression/WindowExpression.php | 337 + .../Database/Expression/WindowInterface.php | 163 + .../src/Database/ExpressionInterface.php | 44 + .../src/Database/FieldTypeConverter.php | 140 + .../cakephp/src/Database/FunctionsBuilder.php | 375 + .../cakephp/src/Database/IdentifierQuoter.php | 269 + .../cakephp/cakephp/src/Database/LICENSE.txt | 22 + .../cakephp/src/Database/Log/LoggedQuery.php | 162 + .../src/Database/Log/LoggingStatement.php | 194 + .../cakephp/src/Database/Log/QueryLogger.php | 57 + .../cakephp/src/Database/PostgresCompiler.php | 93 + .../cakephp/cakephp/src/Database/Query.php | 2386 ++++++ .../cakephp/src/Database/QueryCompiler.php | 455 ++ .../cakephp/cakephp/src/Database/README.md | 364 + .../Database/Retry/ErrorCodeWaitStrategy.php | 69 + .../src/Database/Retry/ReconnectStrategy.php | 122 + .../src/Database/Schema/BaseSchema.php | 5 + .../src/Database/Schema/CachedCollection.php | 123 + .../src/Database/Schema/Collection.php | 150 + .../Database/Schema/CollectionInterface.php | 51 + .../src/Database/Schema/MysqlSchema.php | 5 + .../Database/Schema/MysqlSchemaDialect.php | 631 ++ .../src/Database/Schema/PostgresSchema.php | 5 + .../Database/Schema/PostgresSchemaDialect.php | 663 ++ .../src/Database/Schema/SchemaDialect.php | 290 + .../Database/Schema/SqlGeneratorInterface.php | 72 + .../src/Database/Schema/SqliteSchema.php | 5 + .../Database/Schema/SqliteSchemaDialect.php | 612 ++ .../src/Database/Schema/SqlserverSchema.php | 5 + .../Schema/SqlserverSchemaDialect.php | 665 ++ .../src/Database/Schema/TableSchema.php | 803 ++ .../Schema/TableSchemaAwareInterface.php | 38 + .../Database/Schema/TableSchemaInterface.php | 283 + .../cakephp/src/Database/SchemaCache.php | 114 + .../cakephp/src/Database/SqlDialectTrait.php | 5 + .../cakephp/src/Database/SqliteCompiler.php | 33 + .../src/Database/SqlserverCompiler.php | 167 + .../Database/Statement/BufferResultsTrait.php | 45 + .../Database/Statement/BufferedStatement.php | 345 + .../Database/Statement/CallbackStatement.php | 79 + .../src/Database/Statement/MysqlStatement.php | 46 + .../src/Database/Statement/PDOStatement.php | 160 + .../Database/Statement/SqliteStatement.php | 70 + .../Database/Statement/SqlserverStatement.php | 54 + .../Database/Statement/StatementDecorator.php | 363 + .../src/Database/StatementInterface.php | 203 + .../cakephp/cakephp/src/Database/Type.php | 5 + .../cakephp/src/Database/Type/BaseType.php | 80 + .../Database/Type/BatchCastingInterface.php | 37 + .../cakephp/src/Database/Type/BinaryType.php | 92 + .../src/Database/Type/BinaryUuidType.php | 145 + .../cakephp/src/Database/Type/BoolType.php | 135 + .../Database/Type/DateTimeFractionalType.php | 42 + .../Database/Type/DateTimeTimezoneType.php | 44 + .../src/Database/Type/DateTimeType.php | 501 ++ .../cakephp/src/Database/Type/DateType.php | 103 + .../cakephp/src/Database/Type/DecimalType.php | 189 + .../Type/ExpressionTypeCasterTrait.php | 80 + .../Database/Type/ExpressionTypeInterface.php | 36 + .../cakephp/src/Database/Type/FloatType.php | 171 + .../cakephp/src/Database/Type/IntegerType.php | 128 + .../cakephp/src/Database/Type/JsonType.php | 105 + .../Type/OptionalConvertInterface.php | 32 + .../cakephp/src/Database/Type/StringType.php | 109 + .../cakephp/src/Database/Type/TimeType.php | 52 + .../cakephp/src/Database/Type/UuidType.php | 67 + .../src/Database/TypeConverterTrait.php | 66 + .../cakephp/src/Database/TypeFactory.php | 164 + .../cakephp/src/Database/TypeInterface.php | 91 + .../cakephp/cakephp/src/Database/TypeMap.php | 167 + .../cakephp/src/Database/TypeMapTrait.php | 89 + .../src/Database/TypedResultInterface.php | 38 + .../cakephp/src/Database/TypedResultTrait.php | 53 + .../cakephp/src/Database/ValueBinder.php | 151 + .../cakephp/src/Database/composer.json | 39 + .../src/Datasource/ConnectionInterface.php | 146 + .../src/Datasource/ConnectionManager.php | 214 + .../src/Datasource/ConnectionRegistry.php | 104 + .../src/Datasource/EntityInterface.php | 287 + .../cakephp/src/Datasource/EntityTrait.php | 1257 ++++ .../Exception/InvalidPrimaryKeyException.php | 26 + .../MissingDatasourceConfigException.php | 28 + .../Exception/MissingDatasourceException.php | 28 + .../Exception/MissingModelException.php | 30 + .../Exception/PageOutOfBoundsException.php | 28 + .../Exception/RecordNotFoundException.php | 26 + .../cakephp/src/Datasource/FactoryLocator.php | 88 + .../src/Datasource/FixtureInterface.php | 73 + .../Datasource/InvalidPropertyInterface.php | 61 + .../cakephp/src/Datasource/LICENSE.txt | 22 + .../Datasource/Locator/AbstractLocator.php | 109 + .../Datasource/Locator/LocatorInterface.php | 68 + .../src/Datasource/ModelAwareTrait.php | 176 + .../cakephp/src/Datasource/Paginator.php | 679 ++ .../src/Datasource/PaginatorInterface.php | 41 + .../cakephp/src/Datasource/QueryCacher.php | 137 + .../cakephp/src/Datasource/QueryInterface.php | 405 ++ .../cakephp/src/Datasource/QueryTrait.php | 618 ++ .../cakephp/cakephp/src/Datasource/README.md | 82 + .../src/Datasource/RepositoryInterface.php | 252 + .../src/Datasource/ResultSetDecorator.php | 46 + .../src/Datasource/ResultSetInterface.php | 28 + .../cakephp/src/Datasource/RuleInvoker.php | 144 + .../src/Datasource/RulesAwareTrait.php | 120 + .../cakephp/src/Datasource/RulesChecker.php | 330 + .../src/Datasource/SchemaInterface.php | 166 + .../src/Datasource/SimplePaginator.php | 40 + .../cakephp/src/Datasource/composer.json | 42 + .../cakephp/src/Error/BaseErrorHandler.php | 402 + .../cakephp/src/Error/ConsoleErrorHandler.php | 132 + .../cakephp/src/Error/Debug/ArrayItemNode.php | 73 + .../cakephp/src/Error/Debug/ArrayNode.php | 72 + .../cakephp/src/Error/Debug/ClassNode.php | 91 + .../src/Error/Debug/ConsoleFormatter.php | 243 + .../cakephp/src/Error/Debug/DebugContext.php | 110 + .../src/Error/Debug/FormatterInterface.php | 42 + .../cakephp/src/Error/Debug/HtmlFormatter.php | 280 + .../cakephp/src/Error/Debug/NodeInterface.php | 39 + .../cakephp/src/Error/Debug/PropertyNode.php | 90 + .../cakephp/src/Error/Debug/ReferenceNode.php | 77 + .../cakephp/src/Error/Debug/ScalarNode.php | 73 + .../cakephp/src/Error/Debug/SpecialNode.php | 56 + .../cakephp/src/Error/Debug/TextFormatter.php | 158 + .../cakephp/src/Error/Debug/dumpHeader.html | 275 + .../cakephp/cakephp/src/Error/Debugger.php | 1070 +++ .../cakephp/src/Error/ErrorHandler.php | 216 + .../cakephp/cakephp/src/Error/ErrorLogger.php | 165 + .../src/Error/ErrorLoggerInterface.php | 51 + .../cakephp/src/Error/ExceptionRenderer.php | 472 ++ .../src/Error/ExceptionRendererInterface.php | 32 + .../cakephp/src/Error/FatalErrorException.php | 49 + .../Middleware/ErrorHandlerMiddleware.php | 199 + .../src/Event/Decorator/AbstractDecorator.php | 73 + .../Event/Decorator/ConditionDecorator.php | 75 + .../Decorator/SubjectFilterDecorator.php | 70 + .../cakephp/cakephp/src/Event/Event.php | 196 + .../src/Event/EventDispatcherInterface.php | 61 + .../src/Event/EventDispatcherTrait.php | 96 + .../cakephp/src/Event/EventInterface.php | 86 + .../cakephp/cakephp/src/Event/EventList.php | 135 + .../src/Event/EventListenerInterface.php | 46 + .../cakephp/src/Event/EventManager.php | 486 ++ .../src/Event/EventManagerInterface.php | 112 + .../cakephp/cakephp/src/Event/LICENSE.txt | 22 + .../cakephp/cakephp/src/Event/README.md | 51 + .../cakephp/cakephp/src/Event/composer.json | 34 + .../cakephp/cakephp/src/Filesystem/File.php | 663 ++ .../cakephp/src/Filesystem/Filesystem.php | 277 + .../cakephp/cakephp/src/Filesystem/Folder.php | 987 +++ .../cakephp/src/Filesystem/LICENSE.txt | 22 + .../cakephp/cakephp/src/Filesystem/README.md | 37 + .../cakephp/src/Filesystem/composer.json | 34 + app/vendor/cakephp/cakephp/src/Form/Form.php | 359 + .../cakephp/src/Form/FormProtector.php | 591 ++ .../cakephp/cakephp/src/Form/LICENSE.txt | 22 + app/vendor/cakephp/cakephp/src/Form/README.md | 63 + .../cakephp/cakephp/src/Form/Schema.php | 143 + .../cakephp/cakephp/src/Form/composer.json | 33 + .../cakephp/src/Http/BaseApplication.php | 315 + .../cakephp/src/Http/CallbackStream.php | 52 + .../cakephp/cakephp/src/Http/Client.php | 689 ++ .../cakephp/src/Http/Client/Adapter/Curl.php | 218 + .../src/Http/Client/Adapter/Stream.php | 344 + .../src/Http/Client/AdapterInterface.php | 33 + .../cakephp/src/Http/Client/Auth/Basic.php | 77 + .../cakephp/src/Http/Client/Auth/Digest.php | 148 + .../cakephp/src/Http/Client/Auth/Oauth.php | 370 + .../Http/Client/Exception/ClientException.php | 26 + .../Client/Exception/NetworkException.php | 61 + .../Client/Exception/RequestException.php | 62 + .../cakephp/src/Http/Client/FormData.php | 267 + .../cakephp/src/Http/Client/FormDataPart.php | 261 + .../cakephp/src/Http/Client/Message.php | 161 + .../cakephp/src/Http/Client/Request.php | 98 + .../cakephp/src/Http/Client/Response.php | 480 ++ .../cakephp/src/Http/ControllerFactory.php | 10 + .../src/Http/ControllerFactoryInterface.php | 47 + .../cakephp/src/Http/Cookie/Cookie.php | 833 +++ .../src/Http/Cookie/CookieCollection.php | 351 + .../src/Http/Cookie/CookieInterface.php | 261 + .../cakephp/cakephp/src/Http/CorsBuilder.php | 214 + .../Http/Exception/BadRequestException.php | 43 + .../src/Http/Exception/ConflictException.php | 43 + .../src/Http/Exception/ForbiddenException.php | 43 + .../src/Http/Exception/GoneException.php | 43 + .../src/Http/Exception/HttpException.php | 71 + .../Http/Exception/InternalErrorException.php | 38 + .../Exception/InvalidCsrfTokenException.php | 43 + .../Exception/MethodNotAllowedException.php | 43 + .../Exception/MissingControllerException.php | 34 + .../Http/Exception/NotAcceptableException.php | 43 + .../src/Http/Exception/NotFoundException.php | 43 + .../Exception/NotImplementedException.php | 31 + .../src/Http/Exception/RedirectException.php | 84 + .../Exception/ServiceUnavailableException.php | 43 + .../Http/Exception/UnauthorizedException.php | 43 + .../UnavailableForLegalReasonsException.php | 43 + .../cakephp/cakephp/src/Http/FlashMessage.php | 226 + .../cakephp/cakephp/src/Http/LICENSE.txt | 22 + .../Http/Middleware/BodyParserMiddleware.php | 216 + .../Middleware/ClosureDecoratorMiddleware.php | 81 + .../src/Http/Middleware/CspMiddleware.php | 72 + .../Middleware/CsrfProtectionMiddleware.php | 437 ++ .../DoublePassDecoratorMiddleware.php | 87 + .../Middleware/EncryptedCookieMiddleware.php | 175 + .../Middleware/HttpsEnforcerMiddleware.php | 98 + .../Middleware/SecurityHeadersMiddleware.php | 264 + .../SessionCsrfProtectionMiddleware.php | 270 + .../src/Http/MiddlewareApplication.php | 56 + .../cakephp/src/Http/MiddlewareQueue.php | 322 + app/vendor/cakephp/cakephp/src/Http/README.md | 112 + .../cakephp/cakephp/src/Http/Response.php | 1581 ++++ .../cakephp/src/Http/ResponseEmitter.php | 296 + .../cakephp/cakephp/src/Http/Runner.php | 88 + .../cakephp/cakephp/src/Http/Server.php | 174 + .../cakephp/src/Http/ServerRequest.php | 1883 +++++ .../cakephp/src/Http/ServerRequestFactory.php | 354 + .../cakephp/cakephp/src/Http/Session.php | 669 ++ .../cakephp/src/Http/Session/CacheSession.php | 133 + .../src/Http/Session/DatabaseSession.php | 191 + .../cakephp/cakephp/src/Http/composer.json | 49 + .../cakephp/src/I18n/ChainMessagesLoader.php | 79 + app/vendor/cakephp/cakephp/src/I18n/Date.php | 176 + .../cakephp/src/I18n/DateFormatTrait.php | 495 ++ .../src/I18n/Exception/I18nException.php | 27 + .../src/I18n/Formatter/IcuFormatter.php | 52 + .../src/I18n/Formatter/SprintfFormatter.php | 40 + .../cakephp/src/I18n/FormatterInterface.php | 35 + .../cakephp/src/I18n/FormatterLocator.php | 90 + .../cakephp/cakephp/src/I18n/FrozenDate.php | 178 + .../cakephp/cakephp/src/I18n/FrozenTime.php | 263 + app/vendor/cakephp/cakephp/src/I18n/I18n.php | 307 + .../src/I18n/I18nDateTimeInterface.php | 236 + .../cakephp/cakephp/src/I18n/LICENSE.txt | 22 + .../cakephp/src/I18n/MessagesFileLoader.php | 183 + .../Middleware/LocaleSelectorMiddleware.php | 72 + .../cakephp/cakephp/src/I18n/Number.php | 488 ++ .../cakephp/cakephp/src/I18n/Package.php | 164 + .../cakephp/src/I18n/PackageLocator.php | 110 + .../cakephp/src/I18n/Parser/MoFileParser.php | 162 + .../cakephp/src/I18n/Parser/PoFileParser.php | 198 + .../cakephp/cakephp/src/I18n/PluralRules.php | 205 + app/vendor/cakephp/cakephp/src/I18n/README.md | 103 + .../src/I18n/RelativeTimeFormatter.php | 424 ++ app/vendor/cakephp/cakephp/src/I18n/Time.php | 343 + .../cakephp/cakephp/src/I18n/Translator.php | 206 + .../cakephp/src/I18n/TranslatorRegistry.php | 351 + .../cakephp/cakephp/src/I18n/composer.json | 47 + .../cakephp/cakephp/src/I18n/functions.php | 253 + .../cakephp/src/Log/Engine/ArrayLog.php | 68 + .../cakephp/src/Log/Engine/BaseLog.php | 177 + .../cakephp/src/Log/Engine/ConsoleLog.php | 95 + .../cakephp/src/Log/Engine/FileLog.php | 211 + .../cakephp/src/Log/Engine/SyslogLog.php | 150 + .../cakephp/cakephp/src/Log/LICENSE.txt | 22 + app/vendor/cakephp/cakephp/src/Log/Log.php | 525 ++ .../cakephp/src/Log/LogEngineRegistry.php | 109 + .../cakephp/cakephp/src/Log/LogTrait.php | 39 + app/vendor/cakephp/cakephp/src/Log/README.md | 83 + .../cakephp/cakephp/src/Log/composer.json | 38 + .../cakephp/src/Mailer/AbstractTransport.php | 75 + .../cakephp/cakephp/src/Mailer/Email.php | 621 ++ .../Exception/MissingActionException.php | 28 + .../Exception/MissingMailerException.php | 30 + .../cakephp/cakephp/src/Mailer/Mailer.php | 615 ++ .../cakephp/src/Mailer/MailerAwareTrait.php | 48 + .../cakephp/cakephp/src/Mailer/Message.php | 1923 +++++ .../cakephp/cakephp/src/Mailer/Renderer.php | 120 + .../src/Mailer/Transport/DebugTransport.php | 42 + .../src/Mailer/Transport/MailTransport.php | 98 + .../src/Mailer/Transport/SmtpTransport.php | 544 ++ .../cakephp/src/Mailer/TransportFactory.php | 117 + .../cakephp/src/Mailer/TransportRegistry.php | 100 + .../src/Network/Exception/SocketException.php | 25 + .../cakephp/cakephp/src/Network/Socket.php | 504 ++ .../cakephp/cakephp/src/ORM/Association.php | 1258 ++++ .../cakephp/src/ORM/Association/BelongsTo.php | 202 + .../src/ORM/Association/BelongsToMany.php | 1476 ++++ .../ORM/Association/DependentDeleteHelper.php | 65 + .../cakephp/src/ORM/Association/HasMany.php | 682 ++ .../cakephp/src/ORM/Association/HasOne.php | 155 + .../ORM/Association/Loader/SelectLoader.php | 549 ++ .../Loader/SelectWithPivotLoader.php | 194 + .../cakephp/src/ORM/AssociationCollection.php | 383 + .../src/ORM/AssociationsNormalizerTrait.php | 69 + .../cakephp/cakephp/src/ORM/Behavior.php | 441 ++ .../src/ORM/Behavior/CounterCacheBehavior.php | 312 + .../src/ORM/Behavior/TimestampBehavior.php | 230 + .../ORM/Behavior/Translate/EavStrategy.php | 515 ++ .../Translate/ShadowTableStrategy.php | 629 ++ .../Translate/TranslateStrategyInterface.php | 118 + .../Translate/TranslateStrategyTrait.php | 200 + .../ORM/Behavior/Translate/TranslateTrait.php | 66 + .../src/ORM/Behavior/TranslateBehavior.php | 363 + .../cakephp/src/ORM/Behavior/TreeBehavior.php | 1024 +++ .../cakephp/src/ORM/BehaviorRegistry.php | 283 + .../cakephp/cakephp/src/ORM/EagerLoadable.php | 326 + .../cakephp/cakephp/src/ORM/EagerLoader.php | 875 +++ app/vendor/cakephp/cakephp/src/ORM/Entity.php | 85 + .../Exception/MissingBehaviorException.php | 28 + .../ORM/Exception/MissingEntityException.php | 32 + .../Exception/MissingTableClassException.php | 30 + .../Exception/PersistenceFailedException.php | 73 + .../RolledbackTransactionException.php | 29 + .../cakephp/cakephp/src/ORM/LICENSE.txt | 22 + .../cakephp/src/ORM/LazyEagerLoader.php | 175 + .../src/ORM/Locator/LocatorAwareTrait.php | 61 + .../src/ORM/Locator/LocatorInterface.php | 67 + .../cakephp/src/ORM/Locator/TableLocator.php | 373 + .../cakephp/cakephp/src/ORM/Marshaller.php | 885 +++ .../src/ORM/PropertyMarshalInterface.php | 36 + app/vendor/cakephp/cakephp/src/ORM/Query.php | 1418 ++++ app/vendor/cakephp/cakephp/src/ORM/README.md | 241 + .../cakephp/cakephp/src/ORM/ResultSet.php | 560 ++ .../cakephp/cakephp/src/ORM/Rule/ExistsIn.php | 168 + .../cakephp/cakephp/src/ORM/Rule/IsUnique.php | 106 + .../cakephp/src/ORM/Rule/LinkConstraint.php | 196 + .../cakephp/src/ORM/Rule/ValidCount.php | 61 + .../cakephp/cakephp/src/ORM/RulesChecker.php | 284 + .../cakephp/src/ORM/SaveOptionsBuilder.php | 226 + app/vendor/cakephp/cakephp/src/ORM/Table.php | 3102 ++++++++ .../cakephp/cakephp/src/ORM/TableRegistry.php | 145 + .../cakephp/cakephp/src/ORM/composer.json | 44 + .../cakephp/cakephp/src/Routing/Asset.php | 372 + .../DuplicateNamedRouteException.php | 45 + .../Exception/MissingControllerException.php | 10 + .../MissingDispatcherFilterException.php | 28 + .../Exception/MissingRouteException.php | 57 + .../Routing/Exception/RedirectException.php | 42 + .../Routing/Middleware/AssetMiddleware.php | 165 + .../Routing/Middleware/RoutingMiddleware.php | 169 + .../cakephp/src/Routing/Route/DashedRoute.php | 124 + .../cakephp/src/Routing/Route/EntityRoute.php | 82 + .../src/Routing/Route/InflectedRoute.php | 104 + .../src/Routing/Route/PluginShortRoute.php | 65 + .../src/Routing/Route/RedirectRoute.php | 117 + .../cakephp/src/Routing/Route/Route.php | 923 +++ .../cakephp/src/Routing/RouteBuilder.php | 1034 +++ .../cakephp/src/Routing/RouteCollection.php | 494 ++ .../cakephp/cakephp/src/Routing/Router.php | 997 +++ .../Routing/RoutingApplicationInterface.php | 33 + .../cakephp/cakephp/src/Routing/functions.php | 40 + .../src/Shell/Helper/ProgressHelper.php | 152 + .../cakephp/src/Shell/Helper/TableHelper.php | 185 + .../cakephp/src/Shell/Task/CommandTask.php | 132 + .../TestSuite/ConsoleIntegrationTestCase.php | 27 + .../TestSuite/ConsoleIntegrationTestTrait.php | 347 + .../Constraint/Console/ContentsBase.php | 48 + .../Constraint/Console/ContentsContain.php | 45 + .../Constraint/Console/ContentsContainRow.php | 61 + .../Constraint/Console/ContentsEmpty.php | 56 + .../Constraint/Console/ContentsNotContain.php | 45 + .../Constraint/Console/ContentsRegExp.php | 54 + .../TestSuite/Constraint/Console/ExitCode.php | 62 + .../Constraint/Email/MailConstraintBase.php | 64 + .../Constraint/Email/MailContains.php | 98 + .../Email/MailContainsAttachment.php | 77 + .../Constraint/Email/MailContainsHtml.php | 46 + .../Constraint/Email/MailContainsText.php | 46 + .../TestSuite/Constraint/Email/MailCount.php | 46 + .../Constraint/Email/MailSentFrom.php | 44 + .../TestSuite/Constraint/Email/MailSentTo.php | 44 + .../Constraint/Email/MailSentWith.php | 85 + .../Constraint/Email/MailSubjectContains.php | 86 + .../TestSuite/Constraint/Email/NoMailSent.php | 57 + .../src/TestSuite/Constraint/EventFired.php | 74 + .../TestSuite/Constraint/EventFiredWith.php | 116 + .../Constraint/Response/BodyContains.php | 70 + .../Constraint/Response/BodyEmpty.php | 56 + .../Constraint/Response/BodyEquals.php | 45 + .../Constraint/Response/BodyNotContains.php | 45 + .../Constraint/Response/BodyNotEmpty.php | 45 + .../Constraint/Response/BodyNotEquals.php | 45 + .../Constraint/Response/BodyNotRegExp.php | 45 + .../Constraint/Response/BodyRegExp.php | 54 + .../Constraint/Response/ContentType.php | 55 + .../Response/CookieEncryptedEquals.php | 93 + .../Constraint/Response/CookieEquals.php | 72 + .../Constraint/Response/CookieNotSet.php | 45 + .../Constraint/Response/CookieSet.php | 52 + .../Constraint/Response/FileSent.php | 61 + .../Constraint/Response/FileSentAs.php | 51 + .../Constraint/Response/HeaderContains.php | 49 + .../Constraint/Response/HeaderEquals.php | 67 + .../Constraint/Response/HeaderNotContains.php | 49 + .../Constraint/Response/HeaderNotSet.php | 45 + .../Constraint/Response/HeaderSet.php | 76 + .../Constraint/Response/ResponseBase.php | 57 + .../Constraint/Response/StatusCode.php | 45 + .../Constraint/Response/StatusCodeBase.php | 75 + .../Constraint/Response/StatusError.php | 40 + .../Constraint/Response/StatusFailure.php | 40 + .../Constraint/Response/StatusOk.php | 40 + .../Constraint/Response/StatusSuccess.php | 40 + .../Constraint/Session/FlashParamEquals.php | 114 + .../Constraint/Session/SessionEquals.php | 66 + .../Constraint/Session/SessionHasKey.php | 66 + .../Constraint/View/LayoutFileEquals.php | 34 + .../Constraint/View/TemplateFileEquals.php | 62 + .../src/TestSuite/ContainerStubTrait.php | 169 + .../cakephp/src/TestSuite/EmailTrait.php | 273 + .../src/TestSuite/Fixture/FixtureInjector.php | 118 + .../src/TestSuite/Fixture/FixtureManager.php | 515 ++ .../src/TestSuite/Fixture/TestFixture.php | 464 ++ .../src/TestSuite/IntegrationTestCase.php | 43 + .../src/TestSuite/IntegrationTestTrait.php | 1363 ++++ .../src/TestSuite/LegacyCommandRunner.php | 39 + .../src/TestSuite/LegacyShellDispatcher.php | 64 + .../src/TestSuite/MiddlewareDispatcher.php | 144 + .../src/TestSuite/StringCompareTrait.php | 69 + .../src/TestSuite/Stub/ConsoleInput.php | 88 + .../src/TestSuite/Stub/ConsoleOutput.php | 84 + .../Stub/MissingConsoleInputException.php | 35 + .../TestSuite/Stub/TestExceptionRenderer.php | 44 + .../cakephp/src/TestSuite/TestCase.php | 1024 +++ .../src/TestSuite/TestEmailTransport.php | 87 + .../src/TestSuite/TestListenerTrait.php | 99 + .../cakephp/src/TestSuite/TestSession.php | 79 + .../cakephp/src/TestSuite/TestSuite.php | 66 + .../cakephp/src/Utility/CookieCryptTrait.php | 192 + .../cakephp/src/Utility/Crypto/OpenSsl.php | 79 + .../src/Utility/Exception/XmlException.php | 25 + .../cakephp/cakephp/src/Utility/Hash.php | 1275 ++++ .../cakephp/cakephp/src/Utility/Inflector.php | 523 ++ .../cakephp/cakephp/src/Utility/LICENSE.txt | 22 + .../src/Utility/MergeVariablesTrait.php | 118 + .../cakephp/cakephp/src/Utility/README.md | 91 + .../cakephp/cakephp/src/Utility/Security.php | 310 + .../cakephp/cakephp/src/Utility/Text.php | 1187 +++ .../cakephp/cakephp/src/Utility/Xml.php | 500 ++ .../cakephp/cakephp/src/Utility/bootstrap.php | 21 + .../cakephp/cakephp/src/Utility/composer.json | 43 + .../cakephp/src/Validation/LICENSE.txt | 22 + .../cakephp/cakephp/src/Validation/README.md | 37 + .../cakephp/src/Validation/RulesProvider.php | 79 + .../src/Validation/ValidatableInterface.php | 32 + .../cakephp/src/Validation/Validation.php | 1805 +++++ .../cakephp/src/Validation/ValidationRule.php | 219 + .../cakephp/src/Validation/ValidationSet.php | 235 + .../cakephp/src/Validation/Validator.php | 2750 +++++++ .../Validation/ValidatorAwareInterface.php | 52 + .../src/Validation/ValidatorAwareTrait.php | 205 + .../cakephp/src/Validation/composer.json | 38 + .../cakephp/cakephp/src/View/AjaxView.php | 39 + app/vendor/cakephp/cakephp/src/View/Cell.php | 299 + .../cakephp/cakephp/src/View/CellTrait.php | 131 + .../View/Exception/MissingCellException.php | 30 + .../MissingCellTemplateException.php | 69 + .../Exception/MissingElementException.php | 26 + .../View/Exception/MissingHelperException.php | 28 + .../View/Exception/MissingLayoutException.php | 26 + .../Exception/MissingTemplateException.php | 87 + .../View/Exception/MissingViewException.php | 30 + .../SerializationFailureException.php | 26 + .../cakephp/src/View/Form/ArrayContext.php | 369 + .../cakephp/src/View/Form/ContextFactory.php | 163 + .../src/View/Form/ContextInterface.php | 136 + .../cakephp/src/View/Form/EntityContext.php | 760 ++ .../cakephp/src/View/Form/FormContext.php | 228 + .../cakephp/src/View/Form/NullContext.php | 144 + .../cakephp/cakephp/src/View/Helper.php | 221 + .../src/View/Helper/BreadcrumbsHelper.php | 347 + .../cakephp/src/View/Helper/FlashHelper.php | 95 + .../cakephp/src/View/Helper/FormHelper.php | 2574 +++++++ .../cakephp/src/View/Helper/HtmlHelper.php | 1121 +++ .../src/View/Helper/IdGeneratorTrait.php | 104 + .../cakephp/src/View/Helper/NumberHelper.php | 257 + .../src/View/Helper/PaginatorHelper.php | 1278 ++++ .../cakephp/src/View/Helper/TextHelper.php | 435 ++ .../cakephp/src/View/Helper/TimeHelper.php | 409 ++ .../cakephp/src/View/Helper/UrlHelper.php | 259 + .../cakephp/src/View/HelperRegistry.php | 162 + .../cakephp/cakephp/src/View/JsonView.php | 184 + .../cakephp/src/View/SerializedView.php | 122 + .../cakephp/src/View/StringTemplate.php | 380 + .../cakephp/src/View/StringTemplateTrait.php | 97 + app/vendor/cakephp/cakephp/src/View/View.php | 1679 +++++ .../cakephp/cakephp/src/View/ViewBlock.php | 232 + .../cakephp/cakephp/src/View/ViewBuilder.php | 675 ++ .../cakephp/src/View/ViewVarsTrait.php | 102 + .../cakephp/src/View/Widget/BasicWidget.php | 209 + .../cakephp/src/View/Widget/ButtonWidget.php | 93 + .../src/View/Widget/CheckboxWidget.php | 95 + .../src/View/Widget/DateTimeWidget.php | 238 + .../cakephp/src/View/Widget/FileWidget.php | 91 + .../cakephp/src/View/Widget/LabelWidget.php | 100 + .../src/View/Widget/MultiCheckboxWidget.php | 273 + .../src/View/Widget/NestingLabelWidget.php | 33 + .../cakephp/src/View/Widget/RadioWidget.php | 264 + .../src/View/Widget/SelectBoxWidget.php | 343 + .../src/View/Widget/TextareaWidget.php | 78 + .../src/View/Widget/WidgetInterface.php | 42 + .../cakephp/src/View/Widget/WidgetLocator.php | 222 + .../cakephp/src/View/Widget/YearWidget.php | 111 + .../cakephp/cakephp/src/View/XmlView.php | 157 + app/vendor/cakephp/cakephp/src/basics.php | 152 + .../templates/Error/duplicate_named_route.php | 49 + .../cakephp/templates/Error/fatal_error.php | 39 + .../templates/Error/missing_action.php | 86 + .../templates/Error/missing_behavior.php | 68 + .../templates/Error/missing_cell_template.php | 40 + .../templates/Error/missing_component.php | 64 + .../templates/Error/missing_connection.php | 24 + .../templates/Error/missing_controller.php | 93 + .../templates/Error/missing_datasource.php | 29 + .../Error/missing_datasource_config.php | 28 + .../templates/Error/missing_helper.php | 65 + .../templates/Error/missing_layout.php | 41 + .../templates/Error/missing_plugin.php | 49 + .../cakephp/templates/Error/missing_route.php | 54 + .../templates/Error/missing_template.php | 54 + .../cakephp/templates/Error/missing_view.php | 68 + .../cakephp/templates/Error/pdo_error.php | 44 + .../templates/element/auto_table_warning.php | 43 + .../element/exception_stack_trace.php | 74 + .../element/exception_stack_trace_nav.php | 43 + .../templates/element/plugin_class_error.php | 31 + .../cakephp/templates/layout/dev_error.php | 396 + .../cakephp/tests/Fixture/ArticlesFixture.php | 48 + .../ArticlesMoreTranslationsFixture.php | 54 + .../tests/Fixture/ArticlesTagsFixture.php | 55 + .../Fixture/ArticlesTranslationsFixture.php | 55 + .../Fixture/AssertIntegrationTestCase.php | 40 + .../tests/Fixture/AttachmentsFixture.php | 46 + .../tests/Fixture/AuthUsersFixture.php | 50 + .../cakephp/tests/Fixture/AuthorsFixture.php | 46 + .../tests/Fixture/AuthorsTagsFixture.php | 47 + .../Fixture/AuthorsTranslationsFixture.php | 44 + .../BinaryUuidItemsBinaryUuidTagsFixture.php | 48 + .../tests/Fixture/BinaryUuidItemsFixture.php | 46 + .../tests/Fixture/BinaryUuidTagsFixture.php | 44 + .../tests/Fixture/CakeSessionsFixture.php | 42 + .../tests/Fixture/CategoriesFixture.php | 53 + .../cakephp/tests/Fixture/CommentsFixture.php | 53 + .../Fixture/CommentsTranslationsFixture.php | 48 + .../Fixture/CompositeIncrementsFixture.php | 40 + .../Fixture/CounterCacheCategoriesFixture.php | 35 + .../Fixture/CounterCacheCommentsFixture.php | 36 + .../Fixture/CounterCachePostsFixture.php | 38 + .../CounterCacheUserCategoryPostsFixture.php | 37 + .../Fixture/CounterCacheUsersFixture.php | 37 + .../tests/Fixture/DatatypesFixture.php | 41 + .../cakephp/tests/Fixture/DateKeysFixture.php | 41 + .../tests/Fixture/FeaturedTagsFixture.php | 45 + .../tests/Fixture/FixturizedTestCase.php | 97 + .../cakephp/tests/Fixture/MembersFixture.php | 43 + .../tests/Fixture/MenuLinkTreesFixture.php | 219 + .../tests/Fixture/NumberTreesFixture.php | 137 + .../tests/Fixture/OrderedUuidItemsFixture.php | 43 + .../cakephp/tests/Fixture/OrdersFixture.php | 66 + .../tests/Fixture/OtherArticlesFixture.php | 67 + .../Fixture/PolymorphicTaggedFixture.php | 51 + .../cakephp/tests/Fixture/PostsFixture.php | 48 + .../cakephp/tests/Fixture/ProductsFixture.php | 52 + .../cakephp/tests/Fixture/ProfilesFixture.php | 51 + .../cakephp/tests/Fixture/SectionsFixture.php | 44 + .../tests/Fixture/SectionsMembersFixture.php | 45 + .../Fixture/SectionsTranslationsFixture.php | 42 + .../cakephp/tests/Fixture/SessionsFixture.php | 43 + .../tests/Fixture/SiteArticlesFixture.php | 70 + .../tests/Fixture/SiteArticlesTagsFixture.php | 47 + .../tests/Fixture/SiteAuthorsFixture.php | 44 + .../cakephp/tests/Fixture/SiteTagsFixture.php | 44 + .../tests/Fixture/SpecialTagsFixture.php | 53 + .../SpecialTagsTranslationsFixture.php | 44 + .../cakephp/tests/Fixture/TagsFixture.php | 48 + .../Fixture/TagsShadowTranslationsFixture.php | 52 + .../tests/Fixture/TagsTranslationsFixture.php | 46 + .../Fixture/TestPluginCommentsFixture.php | 53 + .../cakephp/tests/Fixture/ThingsFixture.php | 41 + .../tests/Fixture/TranslatesFixture.php | 83 + .../tests/Fixture/UniqueAuthorsFixture.php | 47 + .../cakephp/tests/Fixture/UsersFixture.php | 49 + .../tests/Fixture/UuidItemsFixture.php | 49 + .../cakephp/cakephp/tests/Fixture/rss.xml | 33 + .../cakephp/cakephp/tests/Fixture/sample.a68 | 19 + .../cakephp/cakephp/tests/Fixture/sample.html | 14 + .../cakephp/cakephp/tests/Fixture/sample.xml | 9 + .../cakephp/tests/Fixture/soap_request.xml | 12 + .../cakephp/tests/Fixture/soap_response.xml | 12 + ...tionTableMixinClassReflectionExtension.php | 97 + .../TableFindByPropertyMethodReflection.php | 76 + .../cakephp/cakephp/tests/bootstrap.php | 141 + app/vendor/cakephp/chronos/Dockerfile | 10 + app/vendor/cakephp/chronos/LICENSE | 20 + app/vendor/cakephp/chronos/README.md | 152 + app/vendor/cakephp/chronos/composer.json | 63 + app/vendor/cakephp/chronos/docs.Dockerfile | 20 + .../cakephp/chronos/docs/config/__init__.py | 0 app/vendor/cakephp/chronos/docs/config/all.py | 49 + app/vendor/cakephp/chronos/docs/en/conf.py | 9 + .../cakephp/chronos/docs/en/contents.rst | 7 + app/vendor/cakephp/chronos/docs/en/index.rst | 321 + app/vendor/cakephp/chronos/docs/fr/conf.py | 9 + .../cakephp/chronos/docs/fr/contents.rst | 7 + app/vendor/cakephp/chronos/docs/fr/index.rst | 306 + app/vendor/cakephp/chronos/docs/ja/conf.py | 9 + .../cakephp/chronos/docs/ja/contents.rst | 7 + app/vendor/cakephp/chronos/docs/ja/index.rst | 304 + app/vendor/cakephp/chronos/docs/pt/conf.py | 9 + .../cakephp/chronos/docs/pt/contents.rst | 7 + app/vendor/cakephp/chronos/docs/pt/index.rst | 285 + app/vendor/cakephp/chronos/src/Chronos.php | 215 + .../cakephp/chronos/src/ChronosInterface.php | 1403 ++++ .../cakephp/chronos/src/ChronosInterval.php | 550 ++ app/vendor/cakephp/chronos/src/Date.php | 142 + .../chronos/src/DifferenceFormatter.php | 107 + .../src/DifferenceFormatterInterface.php | 35 + .../cakephp/chronos/src/MutableDate.php | 141 + .../cakephp/chronos/src/MutableDateTime.php | 200 + .../chronos/src/Traits/ComparisonTrait.php | 565 ++ .../cakephp/chronos/src/Traits/CopyTrait.php | 35 + .../chronos/src/Traits/DifferenceTrait.php | 332 + .../chronos/src/Traits/FactoryTrait.php | 366 + .../chronos/src/Traits/FormattingTrait.php | 267 + .../chronos/src/Traits/FrozenTimeTrait.php | 190 + .../chronos/src/Traits/MagicPropertyTrait.php | 138 + .../chronos/src/Traits/ModifierTrait.php | 1128 +++ .../src/Traits/RelativeKeywordTrait.php | 85 + .../chronos/src/Traits/TestingAidTrait.php | 60 + .../chronos/src/Traits/TimezoneTrait.php | 59 + app/vendor/cakephp/chronos/src/Translator.php | 95 + .../cakephp/chronos/src/carbon_compat.php | 23 + app/vendor/cakephp/debug_kit/Dockerfile | 24 + app/vendor/cakephp/debug_kit/LICENSE.txt | 28 + app/vendor/cakephp/debug_kit/README.md | 65 + app/vendor/cakephp/debug_kit/composer.json | 62 + .../cakephp/debug_kit/config/bootstrap.php | 76 + .../cakephp/debug_kit/config/routes.php | 46 + app/vendor/cakephp/debug_kit/docs.Dockerfile | 24 + .../cakephp/debug_kit/docs/config/__init__.py | 0 .../cakephp/debug_kit/docs/config/all.py | 52 + app/vendor/cakephp/debug_kit/docs/en/conf.py | 9 + .../cakephp/debug_kit/docs/en/contents.rst | 5 + .../cakephp/debug_kit/docs/en/index.rst | 292 + app/vendor/cakephp/debug_kit/docs/fr/conf.py | 9 + .../cakephp/debug_kit/docs/fr/contents.rst | 5 + .../cakephp/debug_kit/docs/fr/index.rst | 239 + app/vendor/cakephp/debug_kit/docs/ja/conf.py | 9 + .../cakephp/debug_kit/docs/ja/contents.rst | 5 + .../cakephp/debug_kit/docs/ja/index.rst | 267 + app/vendor/cakephp/debug_kit/docs/pt/conf.py | 9 + .../cakephp/debug_kit/docs/pt/contents.rst | 5 + .../cakephp/debug_kit/docs/pt/index.rst | 216 + .../cakephp/debug_kit/psalm-baseline.xml | 130 + app/vendor/cakephp/debug_kit/psalm.xml | 32 + .../src/Cache/Engine/DebugEngine.php | 347 + .../src/Command/BenchmarkCommand.php | 192 + .../src/Controller/ComposerController.php | 107 + .../src/Controller/DashboardController.php | 72 + .../src/Controller/DebugKitController.php | 56 + .../src/Controller/MailPreviewController.php | 287 + .../src/Controller/PanelsController.php | 93 + .../src/Controller/RequestsController.php | 63 + .../src/Controller/ToolbarController.php | 58 + .../debug_kit/src/Database/Log/DebugLog.php | 191 + .../cakephp/debug_kit/src/DebugInclude.php | 197 + .../cakephp/debug_kit/src/DebugMemory.php | 105 + .../cakephp/debug_kit/src/DebugPanel.php | 123 + app/vendor/cakephp/debug_kit/src/DebugSql.php | 189 + .../cakephp/debug_kit/src/DebugTimer.php | 216 + .../debug_kit/src/Locale/debug_kit.pot | 138 + .../src/Locale/eng/LC_MESSAGES/debug_kit.po | 135 + .../src/Locale/fra/LC_MESSAGES/debug_kit.po | 135 + .../src/Locale/lim/LC_MESSAGES/debug_kit.po | 136 + .../src/Locale/nld/LC_MESSAGES/debug_kit.po | 141 + .../src/Locale/pt_BR/LC_MESSAGES/debug_kit.po | 135 + .../src/Locale/spa/LC_MESSAGES/debug_kit.po | 135 + .../debug_kit/src/Log/Engine/DebugKitLog.php | 78 + .../debug_kit/src/Mailer/AbstractResult.php | 55 + .../debug_kit/src/Mailer/MailPreview.php | 104 + .../debug_kit/src/Mailer/PreviewResult.php | 59 + .../debug_kit/src/Mailer/SentMailResult.php | 33 + .../Mailer/Transport/DebugKitTransport.php | 140 + .../src/Middleware/DebugKitMiddleware.php | 73 + .../src/Model/Behavior/TimedBehavior.php | 69 + .../debug_kit/src/Model/Entity/Panel.php | 53 + .../debug_kit/src/Model/Entity/Request.php | 16 + .../src/Model/Table/LazyTableTrait.php | 81 + .../debug_kit/src/Model/Table/PanelsTable.php | 75 + .../src/Model/Table/RequestsTable.php | 141 + .../debug_kit/src/Panel/CachePanel.php | 87 + .../debug_kit/src/Panel/DeprecationsPanel.php | 169 + .../debug_kit/src/Panel/EnvironmentPanel.php | 95 + .../debug_kit/src/Panel/HistoryPanel.php | 51 + .../debug_kit/src/Panel/IncludePanel.php | 119 + .../cakephp/debug_kit/src/Panel/LogPanel.php | 66 + .../cakephp/debug_kit/src/Panel/MailPanel.php | 97 + .../debug_kit/src/Panel/PackagesPanel.php | 47 + .../debug_kit/src/Panel/PanelRegistry.php | 87 + .../debug_kit/src/Panel/RequestPanel.php | 46 + .../debug_kit/src/Panel/RoutesPanel.php | 55 + .../debug_kit/src/Panel/SessionPanel.php | 39 + .../debug_kit/src/Panel/SqlLogPanel.php | 112 + .../debug_kit/src/Panel/TimerPanel.php | 130 + .../debug_kit/src/Panel/VariablesPanel.php | 127 + app/vendor/cakephp/debug_kit/src/Plugin.php | 113 + .../cakephp/debug_kit/src/ToolbarService.php | 366 + .../cakephp/debug_kit/src/View/AjaxView.php | 42 + .../src/View/Helper/CredentialsHelper.php | 66 + .../src/View/Helper/SimpleGraphHelper.php | 79 + .../src/View/Helper/ToolbarHelper.php | 218 + .../debug_kit/templates/Dashboard/index.php | 26 + .../debug_kit/templates/MailPreview/email.php | 33 + .../debug_kit/templates/MailPreview/index.php | 90 + .../debug_kit/templates/Panels/view.php | 10 + .../debug_kit/templates/Requests/view.php | 57 + .../templates/element/cache_panel.php | 122 + .../templates/element/deprecations_panel.php | 63 + .../templates/element/environment_panel.php | 153 + .../templates/element/history_panel.php | 140 + .../templates/element/include_panel.php | 34 + .../debug_kit/templates/element/log_panel.php | 42 + .../templates/element/mail_panel.php | 49 + .../templates/element/packages_panel.php | 140 + .../templates/element/preview_header.php | 24 + .../templates/element/request_panel.php | 65 + .../templates/element/routes_panel.php | 48 + .../templates/element/session_panel.php | 20 + .../templates/element/sql_log_panel.php | 92 + .../templates/element/timer_panel.php | 101 + .../templates/element/variables_panel.php | 44 + .../debug_kit/templates/layout/dashboard.php | 13 + .../debug_kit/templates/layout/mailer.php | 13 + .../debug_kit/templates/layout/toolbar.php | 22 + .../debug_kit/tests/Fixture/PanelsFixture.php | 77 + .../tests/Fixture/RequestsFixture.php | 69 + .../debug_kit/webroot/css/raleway-regular.eot | Bin 0 -> 22107 bytes .../debug_kit/webroot/css/raleway-regular.svg | 244 + .../debug_kit/webroot/css/raleway-regular.ttf | Bin 0 -> 45839 bytes .../webroot/css/raleway-regular.woff | Bin 0 -> 25340 bytes .../cakephp/debug_kit/webroot/css/reset.css | 47 + .../cakephp/debug_kit/webroot/css/toolbar.css | 612 ++ .../debug_kit/webroot/img/cake.icon.png | Bin 0 -> 1449 bytes .../cakephp/debug_kit/webroot/js/debug_kit.js | 25 + .../cakephp/debug_kit/webroot/js/jquery.js | 4 + .../debug_kit/webroot/js/toolbar-app.js | 329 + .../cakephp/debug_kit/webroot/js/toolbar.js | 118 + app/vendor/cakephp/migrations/Dockerfile | 25 + app/vendor/cakephp/migrations/LICENSE.txt | 28 + app/vendor/cakephp/migrations/README.md | 44 + app/vendor/cakephp/migrations/composer.json | 63 + app/vendor/cakephp/migrations/docs.Dockerfile | 20 + .../migrations/docs/config/__init__.py | 0 .../cakephp/migrations/docs/config/all.py | 51 + app/vendor/cakephp/migrations/docs/en/conf.py | 9 + .../cakephp/migrations/docs/en/contents.rst | 5 + .../cakephp/migrations/docs/en/index.rst | 1102 +++ app/vendor/cakephp/migrations/docs/fr/conf.py | 9 + .../cakephp/migrations/docs/fr/contents.rst | 5 + .../cakephp/migrations/docs/fr/index.rst | 1131 +++ app/vendor/cakephp/migrations/docs/ja/conf.py | 9 + .../cakephp/migrations/docs/ja/contents.rst | 5 + .../cakephp/migrations/docs/ja/index.rst | 1050 +++ app/vendor/cakephp/migrations/docs/pt/conf.py | 9 + .../cakephp/migrations/docs/pt/contents.rst | 5 + .../cakephp/migrations/docs/pt/index.rst | 940 +++ app/vendor/cakephp/migrations/docs/ru/conf.py | 9 + .../cakephp/migrations/docs/ru/contents.rst | 5 + .../cakephp/migrations/docs/ru/index.rst | 1016 +++ .../cakephp/migrations/psalm-baseline.xml | 36 + app/vendor/cakephp/migrations/psalm.xml | 25 + .../migrations/src/AbstractMigration.php | 49 + .../cakephp/migrations/src/AbstractSeed.php | 127 + .../cakephp/migrations/src/CakeAdapter.php | 94 + .../cakephp/migrations/src/CakeManager.php | 381 + .../src/Command/BakeMigrationCommand.php | 148 + .../src/Command/BakeMigrationDiffCommand.php | 584 ++ .../Command/BakeMigrationSnapshotCommand.php | 171 + .../src/Command/BakeSeedCommand.php | 258 + .../Command/BakeSimpleMigrationCommand.php | 197 + .../Command/MigrationsCacheBuildCommand.php | 29 + .../Command/MigrationsCacheClearCommand.php | 29 + .../src/Command/MigrationsCommand.php | 213 + .../src/Command/MigrationsCreateCommand.php | 29 + .../src/Command/MigrationsDumpCommand.php | 29 + .../Command/MigrationsMarkMigratedCommand.php | 29 + .../src/Command/MigrationsMigrateCommand.php | 29 + .../src/Command/MigrationsRollbackCommand.php | 29 + .../src/Command/MigrationsSeedCommand.php | 29 + .../src/Command/MigrationsStatusCommand.php | 29 + .../src/Command/Phinx/BaseCommand.php | 12 + .../src/Command/Phinx/CacheBuild.php | 66 + .../src/Command/Phinx/CacheClear.php | 70 + .../src/Command/Phinx/CommandTrait.php | 98 + .../migrations/src/Command/Phinx/Create.php | 104 + .../migrations/src/Command/Phinx/Dump.php | 122 + .../src/Command/Phinx/MarkMigrated.php | 227 + .../migrations/src/Command/Phinx/Migrate.php | 90 + .../migrations/src/Command/Phinx/Rollback.php | 86 + .../migrations/src/Command/Phinx/Seed.php | 81 + .../migrations/src/Command/Phinx/Status.php | 137 + .../migrations/src/Command/SnapshotTrait.php | 101 + .../migrations/src/ConfigurationTrait.php | 270 + .../cakephp/migrations/src/Migrations.php | 437 ++ .../migrations/src/MigrationsDispatcher.php | 54 + app/vendor/cakephp/migrations/src/Plugin.php | 82 + .../src/Shell/Task/SimpleMigrationTask.php | 167 + app/vendor/cakephp/migrations/src/Table.php | 232 + .../migrations/src/TableFinderTrait.php | 199 + .../migrations/src/Util/ColumnParser.php | 293 + .../migrations/src/Util/SchemaTrait.php | 66 + .../cakephp/migrations/src/Util/UtilTrait.php | 83 + .../src/View/Helper/MigrationHelper.php | 670 ++ .../templates/Phinx/create.php.template | 18 + .../migrations/templates/bake/Seed/seed.twig | 47 + .../templates/bake/config/diff.twig | 221 + .../templates/bake/config/skeleton.twig | 75 + .../templates/bake/config/snapshot.twig | 76 + .../templates/bake/element/add-columns.twig | 10 + .../bake/element/add-foreign-keys.twig | 38 + .../templates/bake/element/add-indexes.twig | 10 + .../templates/bake/element/create-tables.twig | 70 + .../cakephp/plugin-installer/.gitattributes | 9 + .../cakephp/plugin-installer/.gitignore | 3 + .../cakephp/plugin-installer/LICENSE.txt | 28 + app/vendor/cakephp/plugin-installer/README.md | 88 + .../cakephp/plugin-installer/composer.json | 39 + .../src/Installer/PluginInstaller.php | 77 + .../cakephp/plugin-installer/src/Plugin.php | 270 + .../Installer/PluginInstallerTest.php | 44 + .../tests/TestCase/PluginTest.php | 334 + .../Installer/PluginInstallerTest.php | 42 + .../TestCase/PHPUnitAssertionCompatTrait.php | 11 + .../tests/php56/TestCase/PluginTest.php | 334 + app/vendor/cakephp/twig-view/LICENSE | 22 + app/vendor/cakephp/twig-view/README.md | 264 + app/vendor/cakephp/twig-view/composer.json | 75 + .../twig-view/src/Command/CompileCommand.php | 151 + .../src/Filesystem/RelativeScanner.php | 96 + .../twig-view/src/Filesystem/Scanner.php | 178 + .../twig-view/src/Filesystem/TreeScanner.php | 124 + .../cakephp/twig-view/src/Panel/TwigPanel.php | 60 + app/vendor/cakephp/twig-view/src/Plugin.php | 53 + .../src/Twig/Extension/ArraysExtension.php | 48 + .../src/Twig/Extension/BasicExtension.php | 89 + .../src/Twig/Extension/ConfigureExtension.php | 42 + .../src/Twig/Extension/I18nExtension.php | 44 + .../src/Twig/Extension/InflectorExtension.php | 49 + .../src/Twig/Extension/NumberExtension.php | 69 + .../src/Twig/Extension/ProfilerExtension.php | 59 + .../src/Twig/Extension/StringsExtension.php | 72 + .../src/Twig/Extension/TimeExtension.php | 44 + .../src/Twig/Extension/UtilsExtension.php | 47 + .../src/Twig/Extension/ViewExtension.php | 66 + .../cakephp/twig-view/src/Twig/FileLoader.php | 146 + .../cakephp/twig-view/src/Twig/Node/Cell.php | 113 + .../twig-view/src/Twig/Node/Element.php | 92 + .../twig-view/src/Twig/Node/LayoutNode.php | 56 + .../src/Twig/TokenParser/CellParser.php | 83 + .../src/Twig/TokenParser/ElementParser.php | 74 + .../src/Twig/TokenParser/LayoutParser.php | 56 + .../cakephp/twig-view/src/View/TwigView.php | 353 + .../templates/element/twig_panel.php | 2 + app/vendor/composer/ClassLoader.php | 481 ++ app/vendor/composer/InstalledVersions.php | 337 + app/vendor/composer/LICENSE | 21 + app/vendor/composer/autoload_classmap.php | 644 ++ app/vendor/composer/autoload_files.php | 46 + app/vendor/composer/autoload_namespaces.php | 11 + app/vendor/composer/autoload_psr4.php | 72 + app/vendor/composer/autoload_real.php | 75 + app/vendor/composer/autoload_static.php | 1079 +++ app/vendor/composer/ca-bundle/LICENSE | 19 + app/vendor/composer/ca-bundle/README.md | 85 + app/vendor/composer/ca-bundle/composer.json | 54 + app/vendor/composer/ca-bundle/res/cacert.pem | 3138 ++++++++ .../composer/ca-bundle/src/CaBundle.php | 353 + app/vendor/composer/composer/.editorconfig | 11 + app/vendor/composer/composer/.gitattributes | 18 + app/vendor/composer/composer/.gitignore | 11 + app/vendor/composer/composer/CHANGELOG.md | 1334 ++++ .../composer/composer/CODE_OF_CONDUCT.md | 76 + app/vendor/composer/composer/LICENSE | 19 + app/vendor/composer/composer/PORTING_INFO | 39 + app/vendor/composer/composer/README.md | 61 + app/vendor/composer/composer/UPGRADE-2.0.md | 111 + app/vendor/composer/composer/bin/compile | 31 + app/vendor/composer/composer/bin/composer | 65 + app/vendor/composer/composer/composer.json | 91 + app/vendor/composer/composer/composer.lock | 1611 +++++ app/vendor/composer/composer/doc/00-intro.md | 166 + .../composer/composer/doc/01-basic-usage.md | 279 + .../composer/composer/doc/02-libraries.md | 153 + app/vendor/composer/composer/doc/03-cli.md | 1148 +++ app/vendor/composer/composer/doc/04-schema.md | 987 +++ .../composer/composer/doc/05-repositories.md | 657 ++ app/vendor/composer/composer/doc/06-config.md | 368 + .../composer/composer/doc/07-runtime.md | 155 + .../composer/composer/doc/08-community.md | 35 + .../composer/composer/doc/articles/aliases.md | 111 + .../authentication-for-private-packages.md | 301 + .../doc/articles/autoloader-optimization.md | 111 + .../doc/articles/custom-installers.md | 205 + .../doc/articles/handling-private-packages.md | 340 + .../composer/composer/doc/articles/plugins.md | 336 + .../doc/articles/repository-priorities.md | 95 + .../doc/articles/resolving-merge-conflicts.md | 62 + .../composer/composer/doc/articles/scripts.md | 383 + .../composer/doc/articles/troubleshooting.md | 325 + .../composer/doc/articles/vendor-binaries.md | 110 + .../composer/doc/articles/versions.md | 243 + .../composer/doc/dev/DefaultPolicy.md | 55 + ...ckage-to-a-custom-path-for-my-framework.md | 55 + ...ow-to-install-composer-programmatically.md | 42 + ...ow-to-install-untrusted-packages-safely.md | 19 + ...the-dependencies-in-my-vendor-directory.md | 32 + ...mbering-system-does-composer-itself-use.md | 4 + ...-unbound-version-constraints-a-bad-idea.md | 21 + ...ng-comparisons-and-wildcards-a-bad-idea.md | 21 + ...-composer-load-repositories-recursively.md | 35 + .../composer/doc/fixtures/fixtures.md | 21 + .../repo-composer-plain/packages.json | 158 + ...156dd4d0821a97fd3e428bc910833e3e46dbe.json | 50 + ...138e5f3b79029c1f8d9ab5b477ea15776ba0a.json | 77 + ...67b9bea558b971e5b082f330ae4f1d484c321.json | 50 + ...791c612db0c05e22d90e9286e233cacd86ed8.json | 16 + ...d601923a5a00ccc5fcce50a77ecdd461eb72d.json | 22 + .../packages.json | 9 + .../res/composer-repository-schema.json | 110 + .../composer/res/composer-schema.json | 984 +++ .../Composer/Autoload/AutoloadGenerator.php | 1287 ++++ .../src/Composer/Autoload/ClassLoader.php | 481 ++ .../Composer/Autoload/ClassMapGenerator.php | 306 + .../composer/composer/src/Composer/Cache.php | 291 + .../src/Composer/Command/AboutCommand.php | 51 + .../src/Composer/Command/ArchiveCommand.php | 184 + .../src/Composer/Command/BaseCommand.php | 272 + .../Command/BaseDependencyCommand.php | 232 + .../Command/CheckPlatformReqsCommand.php | 187 + .../Composer/Command/ClearCacheCommand.php | 77 + .../src/Composer/Command/ConfigCommand.php | 848 +++ .../Composer/Command/CreateProjectCommand.php | 457 ++ .../src/Composer/Command/DependsCommand.php | 62 + .../src/Composer/Command/DiagnoseCommand.php | 704 ++ .../Composer/Command/DumpAutoloadCommand.php | 107 + .../src/Composer/Command/ExecCommand.php | 105 + .../src/Composer/Command/FundCommand.php | 145 + .../src/Composer/Command/GlobalCommand.php | 121 + .../src/Composer/Command/HomeCommand.php | 168 + .../src/Composer/Command/InitCommand.php | 1002 +++ .../src/Composer/Command/InstallCommand.php | 139 + .../src/Composer/Command/LicensesCommand.php | 193 + .../src/Composer/Command/OutdatedCommand.php | 103 + .../src/Composer/Command/ProhibitsCommand.php | 63 + .../src/Composer/Command/ReinstallCommand.php | 164 + .../src/Composer/Command/RemoveCommand.php | 286 + .../src/Composer/Command/RequireCommand.php | 444 ++ .../src/Composer/Command/RunScriptCommand.php | 140 + .../Composer/Command/ScriptAliasCommand.php | 66 + .../src/Composer/Command/SearchCommand.php | 112 + .../Composer/Command/SelfUpdateCommand.php | 594 ++ .../src/Composer/Command/ShowCommand.php | 1284 ++++ .../src/Composer/Command/StatusCommand.php | 227 + .../src/Composer/Command/SuggestsCommand.php | 104 + .../src/Composer/Command/UpdateCommand.php | 322 + .../src/Composer/Command/ValidateCommand.php | 244 + .../composer/src/Composer/Compiler.php | 303 + .../composer/src/Composer/Composer.php | 316 + .../composer/composer/src/Composer/Config.php | 517 ++ .../Composer/Config/ConfigSourceInterface.php | 91 + .../src/Composer/Config/JsonConfigSource.php | 304 + .../src/Composer/Console/Application.php | 568 ++ .../Composer/Console/GithubActionError.php | 50 + .../Composer/Console/HtmlOutputFormatter.php | 90 + .../Composer/DependencyResolver/Decisions.php | 217 + .../DependencyResolver/DefaultPolicy.php | 216 + .../DependencyResolver/GenericRule.php | 90 + .../LocalRepoTransaction.php | 30 + .../DependencyResolver/LockTransaction.php | 137 + .../DependencyResolver/MultiConflictRule.php | 106 + .../Operation/InstallOperation.php | 58 + .../Operation/MarkAliasInstalledOperation.php | 53 + .../MarkAliasUninstalledOperation.php | 53 + .../Operation/OperationInterface.php | 43 + .../Operation/SolverOperation.php | 41 + .../Operation/UninstallOperation.php | 58 + .../Operation/UpdateOperation.php | 92 + .../DependencyResolver/PolicyInterface.php | 25 + .../src/Composer/DependencyResolver/Pool.php | 209 + .../DependencyResolver/PoolBuilder.php | 540 ++ .../Composer/DependencyResolver/Problem.php | 469 ++ .../Composer/DependencyResolver/Request.php | 198 + .../src/Composer/DependencyResolver/Rule.php | 406 ++ .../DependencyResolver/Rule2Literals.php | 112 + .../Composer/DependencyResolver/RuleSet.php | 181 + .../DependencyResolver/RuleSetGenerator.php | 307 + .../DependencyResolver/RuleSetIterator.php | 93 + .../DependencyResolver/RuleWatchChain.php | 52 + .../DependencyResolver/RuleWatchGraph.php | 166 + .../DependencyResolver/RuleWatchNode.php | 113 + .../Composer/DependencyResolver/Solver.php | 819 +++ .../DependencyResolver/SolverBugException.php | 27 + .../SolverProblemsException.php | 119 + .../DependencyResolver/Transaction.php | 340 + .../Composer/Downloader/ArchiveDownloader.php | 204 + .../Downloader/ChangeReportInterface.php | 32 + .../Composer/Downloader/DownloadManager.php | 462 ++ .../Downloader/DownloaderInterface.php | 98 + .../Downloader/DvcsDownloaderInterface.php | 32 + .../Composer/Downloader/FileDownloader.php | 501 ++ .../Downloader/FilesystemException.php | 26 + .../Composer/Downloader/FossilDownloader.php | 127 + .../src/Composer/Downloader/GitDownloader.php | 601 ++ .../Composer/Downloader/GzipDownloader.php | 66 + .../src/Composer/Downloader/HgDownloader.php | 116 + .../MaxFileSizeExceededException.php | 17 + .../Composer/Downloader/PathDownloader.php | 290 + .../Downloader/PerforceDownloader.php | 124 + .../Composer/Downloader/PharDownloader.php | 40 + .../src/Composer/Downloader/RarDownloader.php | 81 + .../src/Composer/Downloader/SvnDownloader.php | 243 + .../src/Composer/Downloader/TarDownloader.php | 35 + .../Downloader/TransportException.php | 70 + .../VcsCapableDownloaderInterface.php | 32 + .../src/Composer/Downloader/VcsDownloader.php | 369 + .../src/Composer/Downloader/XzDownloader.php | 38 + .../src/Composer/Downloader/ZipDownloader.php | 223 + .../src/Composer/EventDispatcher/Event.php | 103 + .../EventDispatcher/EventDispatcher.php | 562 ++ .../EventSubscriberInterface.php | 48 + .../ScriptExecutionException.php | 20 + .../IrrecoverableDownloadException.php | 20 + .../src/Composer/Exception/NoSslException.php | 22 + .../composer/src/Composer/Factory.php | 691 ++ .../composer/src/Composer/IO/BaseIO.php | 239 + .../composer/src/Composer/IO/BufferIO.php | 91 + .../composer/src/Composer/IO/ConsoleIO.php | 356 + .../composer/src/Composer/IO/IOInterface.php | 226 + .../composer/src/Composer/IO/NullIO.php | 129 + .../src/Composer/InstalledVersions.php | 337 + .../composer/src/Composer/Installer.php | 1331 ++++ .../Composer/Installer/BinaryInstaller.php | 262 + .../Installer/BinaryPresenceInterface.php | 30 + .../Installer/InstallationManager.php | 646 ++ .../src/Composer/Installer/InstallerEvent.php | 107 + .../Composer/Installer/InstallerEvents.php | 26 + .../Composer/Installer/InstallerInterface.php | 120 + .../Composer/Installer/LibraryInstaller.php | 307 + .../Installer/MetapackageInstaller.php | 131 + .../src/Composer/Installer/NoopInstaller.php | 118 + .../src/Composer/Installer/PackageEvent.php | 130 + .../src/Composer/Installer/PackageEvents.php | 75 + .../Composer/Installer/PluginInstaller.php | 127 + .../Composer/Installer/ProjectInstaller.php | 124 + .../Installer/SuggestedPackagesReporter.php | 241 + .../composer/src/Composer/Json/JsonFile.php | 336 + .../src/Composer/Json/JsonFormatter.php | 135 + .../src/Composer/Json/JsonManipulator.php | 562 ++ .../Composer/Json/JsonValidationException.php | 34 + .../src/Composer/Package/AliasPackage.php | 386 + .../Archiver/ArchivableFilesFilter.php | 44 + .../Archiver/ArchivableFilesFinder.php | 105 + .../Package/Archiver/ArchiveManager.php | 202 + .../Package/Archiver/ArchiverInterface.php | 43 + .../Package/Archiver/BaseExcludeFilter.php | 147 + .../Archiver/ComposerExcludeFilter.php | 31 + .../Package/Archiver/GitExcludeFilter.php | 79 + .../Package/Archiver/HgExcludeFilter.php | 107 + .../Package/Archiver/PharArchiver.php | 97 + .../Composer/Package/Archiver/ZipArchiver.php | 89 + .../src/Composer/Package/BasePackage.php | 252 + .../Composer/Package/Comparer/Comparer.php | 128 + .../Composer/Package/CompleteAliasPackage.php | 167 + .../src/Composer/Package/CompletePackage.php | 234 + .../Package/CompletePackageInterface.php | 208 + .../Composer/Package/Dumper/ArrayDumper.php | 159 + .../composer/src/Composer/Package/Link.php | 159 + .../Composer/Package/Loader/ArrayLoader.php | 449 ++ .../Loader/InvalidPackageException.php | 46 + .../Composer/Package/Loader/JsonLoader.php | 52 + .../Package/Loader/LoaderInterface.php | 30 + .../Package/Loader/RootPackageLoader.php | 275 + .../Package/Loader/ValidatingArrayLoader.php | 553 ++ .../composer/src/Composer/Package/Locker.php | 480 ++ .../composer/src/Composer/Package/Package.php | 652 ++ .../src/Composer/Package/PackageInterface.php | 427 ++ .../src/Composer/Package/RootAliasPackage.php | 223 + .../src/Composer/Package/RootPackage.php | 126 + .../Composer/Package/RootPackageInterface.php | 177 + .../Package/Version/StabilityFilter.php | 49 + .../Package/Version/VersionGuesser.php | 361 + .../Package/Version/VersionParser.php | 94 + .../Package/Version/VersionSelector.php | 222 + .../src/Composer/Platform/HhvmDetector.php | 62 + .../src/Composer/Platform/Runtime.php | 109 + .../src/Composer/Platform/Version.php | 104 + .../Composer/Plugin/Capability/Capability.php | 23 + .../Plugin/Capability/CommandProvider.php | 33 + .../composer/src/Composer/Plugin/Capable.php | 43 + .../src/Composer/Plugin/CommandEvent.php | 88 + .../src/Composer/Plugin/PluginEvents.php | 82 + .../src/Composer/Plugin/PluginInterface.php | 66 + .../src/Composer/Plugin/PluginManager.php | 531 ++ .../Composer/Plugin/PostFileDownloadEvent.php | 146 + .../Composer/Plugin/PreCommandRunEvent.php | 68 + .../Composer/Plugin/PreFileDownloadEvent.php | 167 + .../Composer/Plugin/PrePoolCreateEvent.php | 158 + .../Question/StrictConfirmationQuestion.php | 94 + .../Composer/Repository/ArrayRepository.php | 302 + .../Repository/ArtifactRepository.php | 132 + .../Repository/ComposerRepository.php | 1402 ++++ .../Repository/CompositeRepository.php | 205 + .../ConfigurableRepositoryInterface.php | 23 + .../Repository/FilesystemRepository.php | 287 + .../Composer/Repository/FilterRepository.php | 209 + .../Repository/InstalledArrayRepository.php | 38 + .../InstalledFilesystemRepository.php | 34 + .../Repository/InstalledRepository.php | 266 + .../InstalledRepositoryInterface.php | 28 + .../Repository/InvalidRepositoryException.php | 22 + .../Repository/LockArrayRepository.php | 28 + .../Composer/Repository/PackageRepository.php | 66 + .../Composer/Repository/PathRepository.php | 236 + .../Composer/Repository/PearRepository.php | 32 + .../Repository/PlatformRepository.php | 646 ++ .../Composer/Repository/RepositoryFactory.php | 180 + .../Repository/RepositoryInterface.php | 114 + .../Composer/Repository/RepositoryManager.php | 193 + .../RepositorySecurityException.php | 22 + .../src/Composer/Repository/RepositorySet.php | 305 + .../Repository/RootPackageRepository.php | 35 + .../Repository/Vcs/BitbucketDriver.php | 455 ++ .../Composer/Repository/Vcs/FossilDriver.php | 241 + .../Repository/Vcs/GitBitbucketDriver.php | 95 + .../src/Composer/Repository/Vcs/GitDriver.php | 241 + .../Composer/Repository/Vcs/GitHubDriver.php | 576 ++ .../Composer/Repository/Vcs/GitLabDriver.php | 603 ++ .../Repository/Vcs/HgBitbucketDriver.php | 97 + .../src/Composer/Repository/Vcs/HgDriver.php | 235 + .../Repository/Vcs/PerforceDriver.php | 183 + .../src/Composer/Repository/Vcs/SvnDriver.php | 393 + .../src/Composer/Repository/Vcs/VcsDriver.php | 175 + .../Repository/Vcs/VcsDriverInterface.php | 117 + .../src/Composer/Repository/VcsRepository.php | 471 ++ .../Repository/VersionCacheInterface.php | 23 + .../Repository/WritableArrayRepository.php | 88 + .../WritableRepositoryInterface.php | 67 + .../composer/src/Composer/Script/Event.php | 132 + .../src/Composer/Script/ScriptEvents.php | 131 + .../composer/src/Composer/SelfUpdate/Keys.php | 36 + .../src/Composer/SelfUpdate/Versions.php | 91 + .../composer/src/Composer/Util/AuthHelper.php | 267 + .../composer/src/Composer/Util/Bitbucket.php | 265 + .../src/Composer/Util/ComposerMirror.php | 60 + .../src/Composer/Util/ConfigValidator.php | 209 + .../src/Composer/Util/ErrorHandler.php | 82 + .../composer/src/Composer/Util/Filesystem.php | 898 +++ .../composer/src/Composer/Util/Git.php | 414 ++ .../composer/src/Composer/Util/GitHub.php | 184 + .../composer/src/Composer/Util/GitLab.php | 191 + .../composer/src/Composer/Util/Hg.php | 102 + .../src/Composer/Util/Http/CurlDownloader.php | 539 ++ .../src/Composer/Util/Http/CurlResponse.php | 32 + .../src/Composer/Util/Http/ProxyHelper.php | 183 + .../src/Composer/Util/Http/ProxyManager.php | 188 + .../src/Composer/Util/Http/RequestProxy.php | 87 + .../src/Composer/Util/Http/Response.php | 98 + .../src/Composer/Util/HttpDownloader.php | 489 ++ .../composer/src/Composer/Util/IniHelper.php | 64 + .../composer/src/Composer/Util/Loop.php | 124 + .../src/Composer/Util/MetadataMinifier.php | 22 + .../src/Composer/Util/NoProxyPattern.php | 435 ++ .../src/Composer/Util/PackageSorter.php | 102 + .../composer/src/Composer/Util/Perforce.php | 580 ++ .../composer/src/Composer/Util/Platform.php | 220 + .../src/Composer/Util/ProcessExecutor.php | 467 ++ .../src/Composer/Util/RemoteFilesystem.php | 833 +++ .../composer/src/Composer/Util/Silencer.php | 78 + .../Composer/Util/StreamContextFactory.php | 256 + .../composer/src/Composer/Util/Svn.php | 380 + .../composer/src/Composer/Util/SyncHelper.php | 66 + .../composer/src/Composer/Util/Tar.php | 68 + .../composer/src/Composer/Util/TlsHelper.php | 204 + .../composer/src/Composer/Util/Url.php | 123 + .../composer/src/Composer/Util/Zip.php | 109 + .../composer/composer/src/bootstrap.php | 24 + app/vendor/composer/installed.json | 6438 +++++++++++++++++ app/vendor/composer/installed.php | 995 +++ app/vendor/composer/metadata-minifier/LICENSE | 19 + .../composer/metadata-minifier/README.md | 37 + .../composer/metadata-minifier/composer.json | 47 + .../metadata-minifier/phpstan.neon.dist | 5 + .../src/MetadataMinifier.php | 89 + app/vendor/composer/platform_check.php | 26 + app/vendor/composer/semver/CHANGELOG.md | 172 + app/vendor/composer/semver/LICENSE | 19 + app/vendor/composer/semver/README.md | 98 + app/vendor/composer/semver/composer.json | 59 + app/vendor/composer/semver/src/Comparator.php | 113 + .../composer/semver/src/CompilingMatcher.php | 71 + .../composer/semver/src/Constraint/Bound.php | 122 + .../semver/src/Constraint/Constraint.php | 435 ++ .../src/Constraint/ConstraintInterface.php | 75 + .../src/Constraint/MatchAllConstraint.php | 85 + .../src/Constraint/MatchNoneConstraint.php | 83 + .../semver/src/Constraint/MultiConstraint.php | 325 + app/vendor/composer/semver/src/Interval.php | 98 + app/vendor/composer/semver/src/Intervals.php | 478 ++ app/vendor/composer/semver/src/Semver.php | 129 + .../composer/semver/src/VersionParser.php | 583 ++ .../composer/spdx-licenses/CHANGELOG.md | 109 + app/vendor/composer/spdx-licenses/LICENSE | 19 + app/vendor/composer/spdx-licenses/README.md | 69 + .../composer/spdx-licenses/composer.json | 56 + .../spdx-licenses/res/spdx-exceptions.json | 125 + .../spdx-licenses/res/spdx-licenses.json | 2242 ++++++ .../spdx-licenses/src/SpdxLicenses.php | 343 + .../composer/xdebug-handler/CHANGELOG.md | 106 + app/vendor/composer/xdebug-handler/LICENSE | 21 + app/vendor/composer/xdebug-handler/README.md | 291 + app/vendor/composer/xdebug-handler/UPGRADE.md | 30 + .../composer/xdebug-handler/composer.json | 42 + .../composer/xdebug-handler/src/PhpConfig.php | 84 + .../composer/xdebug-handler/src/Process.php | 114 + .../composer/xdebug-handler/src/Status.php | 169 + .../xdebug-handler/src/XdebugHandler.php | 640 ++ .../.remarkrc | 6 + .../.yamllint | 6 + .../CODE_OF_CONDUCT.md | 129 + .../LICENSE.md | 21 + .../README.md | 251 + .../composer.json | 50 + .../src/Plugin.php | 620 ++ .../instantiator/.doctrine-project.json | 41 + .../doctrine/instantiator/.github/FUNDING.yml | 3 + .../.github/workflows/coding-standards.yml | 48 + .../workflows/continuous-integration.yml | 91 + .../.github/workflows/phpbench.yml | 50 + .../workflows/release-on-milestone-closed.yml | 45 + .../.github/workflows/static-analysis.yml | 47 + .../doctrine/instantiator/CONTRIBUTING.md | 35 + app/vendor/doctrine/instantiator/LICENSE | 19 + app/vendor/doctrine/instantiator/README.md | 38 + .../doctrine/instantiator/composer.json | 42 + .../doctrine/instantiator/docs/en/index.rst | 68 + .../doctrine/instantiator/docs/en/sidebar.rst | 4 + .../doctrine/instantiator/phpbench.json | 4 + .../doctrine/instantiator/phpcs.xml.dist | 50 + .../doctrine/instantiator/phpstan.neon.dist | 15 + .../Exception/ExceptionInterface.php | 12 + .../Exception/InvalidArgumentException.php | 41 + .../Exception/UnexpectedValueException.php | 57 + .../Doctrine/Instantiator/Instantiator.php | 232 + .../Instantiator/InstantiatorInterface.php | 23 + app/vendor/jasny/twig-extensions/.gitignore | 3 + app/vendor/jasny/twig-extensions/.travis.yml | 26 + app/vendor/jasny/twig-extensions/LICENSE | 20 + app/vendor/jasny/twig-extensions/README.md | 122 + .../jasny/twig-extensions/composer.json | 42 + .../jasny/twig-extensions/phpcs.xml.dist | 12 + .../jasny/twig-extensions/phpstan.neon.dist | 5 + .../jasny/twig-extensions/phpunit.xml.dist | 24 + .../twig-extensions/src/ArrayExtension.php | 110 + .../twig-extensions/src/DateExtension.php | 337 + .../twig-extensions/src/PcreExtension.php | 212 + .../twig-extensions/src/TextExtension.php | 227 + .../tests/ArrayExtensionTest.php | 90 + .../tests/DateExtensionTest.php | 157 + .../tests/PcreExtensionTest.php | 173 + .../tests/TextExtensionTest.php | 182 + .../tests/support/TestHelper.php | 66 + app/vendor/jdorn/sql-formatter/.gitignore | 1 + app/vendor/jdorn/sql-formatter/.travis.yml | 5 + app/vendor/jdorn/sql-formatter/LICENSE.txt | 21 + app/vendor/jdorn/sql-formatter/README.md | 185 + app/vendor/jdorn/sql-formatter/composer.json | 30 + app/vendor/jdorn/sql-formatter/composer.lock | 422 ++ .../jdorn/sql-formatter/examples/cli.php | 17 + .../jdorn/sql-formatter/examples/examples.php | 270 + .../jdorn/sql-formatter/lib/SqlFormatter.php | 1080 +++ .../jdorn/sql-formatter/phpunit.xml.dist | 20 + .../sql-formatter/tests/SqlFormatterTest.php | 197 + .../sql-formatter/tests/clihighlight.html | 809 +++ .../jdorn/sql-formatter/tests/compress.html | 77 + .../sql-formatter/tests/format-highlight.html | 809 +++ .../jdorn/sql-formatter/tests/format.html | 807 +++ .../jdorn/sql-formatter/tests/highlight.html | 262 + .../jdorn/sql-formatter/tests/performance.php | 44 + app/vendor/jdorn/sql-formatter/tests/sql.sql | 261 + app/vendor/josegonzalez/dotenv/.editorconfig | 12 + .../josegonzalez/dotenv/CONTRIBUTING.markdown | 62 + app/vendor/josegonzalez/dotenv/LICENSE | 21 + .../josegonzalez/dotenv/README.markdown | 426 ++ app/vendor/josegonzalez/dotenv/composer.json | 30 + .../dotenv/src/josegonzalez/Dotenv/Expect.php | 56 + .../Dotenv/Filter/CallableFilter.php | 19 + .../Dotenv/Filter/LowercaseKeyFilter.php | 21 + .../josegonzalez/Dotenv/Filter/NullFilter.php | 17 + .../Dotenv/Filter/RemapKeysFilter.php | 24 + .../Dotenv/Filter/UnderscoreArrayFilter.php | 50 + .../Dotenv/Filter/UppercaseFirstKeyFilter.php | 21 + .../Dotenv/Filter/UrlParseFilter.php | 43 + .../dotenv/src/josegonzalez/Dotenv/Loader.php | 441 ++ .../justinrainbow/json-schema/.php_cs.dist | 33 + app/vendor/justinrainbow/json-schema/LICENSE | 21 + .../justinrainbow/json-schema/README.md | 206 + .../json-schema/bin/validate-json | 251 + .../justinrainbow/json-schema/composer.json | 76 + .../justinrainbow/json-schema/demo/README.md | 14 + .../justinrainbow/json-schema/demo/data.json | 3 + .../justinrainbow/json-schema/demo/demo.php | 18 + .../json-schema/demo/schema.json | 3 + .../dist/schema/json-schema-draft-03.json | 174 + .../dist/schema/json-schema-draft-04.json | 150 + .../json-schema/phpunit.xml.dist | 26 + .../JsonSchema/Constraints/BaseConstraint.php | 148 + .../Constraints/CollectionConstraint.php | 121 + .../src/JsonSchema/Constraints/Constraint.php | 213 + .../Constraints/ConstraintInterface.php | 65 + .../JsonSchema/Constraints/EnumConstraint.php | 54 + .../src/JsonSchema/Constraints/Factory.php | 220 + .../Constraints/FormatConstraint.php | 214 + .../Constraints/NumberConstraint.php | 81 + .../Constraints/ObjectConstraint.php | 192 + .../Constraints/SchemaConstraint.php | 94 + .../Constraints/StringConstraint.php | 60 + .../Constraints/TypeCheck/LooseTypeCheck.php | 68 + .../Constraints/TypeCheck/StrictTypeCheck.php | 40 + .../TypeCheck/TypeCheckInterface.php | 18 + .../JsonSchema/Constraints/TypeConstraint.php | 261 + .../Constraints/UndefinedConstraint.php | 419 ++ .../src/JsonSchema/Entity/JsonPointer.php | 161 + .../Exception/ExceptionInterface.php | 7 + .../Exception/InvalidArgumentException.php | 17 + .../Exception/InvalidConfigException.php | 17 + .../Exception/InvalidSchemaException.php | 17 + .../InvalidSchemaMediaTypeException.php | 17 + .../Exception/InvalidSourceUriException.php | 17 + .../Exception/JsonDecodingException.php | 40 + .../Exception/ResourceNotFoundException.php | 17 + .../JsonSchema/Exception/RuntimeException.php | 17 + .../UnresolvableJsonPointerException.php | 19 + .../Exception/UriResolverException.php | 17 + .../Exception/ValidationException.php | 14 + .../JsonSchema/Iterator/ObjectIterator.php | 149 + .../json-schema/src/JsonSchema/Rfc3339.php | 30 + .../src/JsonSchema/SchemaStorage.php | 169 + .../src/JsonSchema/SchemaStorageInterface.php | 41 + .../Uri/Retrievers/AbstractRetriever.php | 34 + .../src/JsonSchema/Uri/Retrievers/Curl.php | 83 + .../Uri/Retrievers/FileGetContents.php | 93 + .../Uri/Retrievers/PredefinedArray.php | 56 + .../Uri/Retrievers/UriRetrieverInterface.php | 36 + .../src/JsonSchema/Uri/UriResolver.php | 175 + .../src/JsonSchema/Uri/UriRetriever.php | 349 + .../src/JsonSchema/UriResolverInterface.php | 26 + .../src/JsonSchema/UriRetrieverInterface.php | 26 + .../json-schema/src/JsonSchema/Validator.php | 88 + .../laminas-diactoros/.laminas-ci.json | 5 + .../laminas/laminas-diactoros/COPYRIGHT.md | 1 + .../laminas/laminas-diactoros/LICENSE.md | 26 + .../laminas/laminas-diactoros/README.md | 22 + .../laminas/laminas-diactoros/composer.json | 98 + .../laminas/laminas-diactoros/composer.lock | 4178 +++++++++++ .../laminas-diactoros/psalm-baseline.xml | 1421 ++++ .../laminas/laminas-diactoros/psalm.xml.dist | 29 + .../src/AbstractSerializer.php | 148 + .../laminas-diactoros/src/CallbackStream.php | 180 + .../laminas-diactoros/src/ConfigProvider.php | 45 + .../Exception/DeserializationException.php | 46 + .../src/Exception/ExceptionInterface.php | 14 + .../Exception/InvalidArgumentException.php | 9 + .../InvalidStreamPointerPositionException.php | 19 + .../src/Exception/RuntimeException.php | 9 + .../src/Exception/SerializationException.php | 20 + .../Exception/UnreadableStreamException.php | 30 + .../UnrecognizedProtocolVersionException.php | 17 + .../Exception/UnrewindableStreamException.php | 15 + .../Exception/UnseekableStreamException.php | 30 + .../Exception/UntellableStreamException.php | 25 + .../Exception/UnwritableStreamException.php | 30 + .../UploadedFileAlreadyMovedException.php | 19 + .../Exception/UploadedFileErrorException.php | 38 + .../laminas-diactoros/src/HeaderSecurity.php | 168 + .../laminas-diactoros/src/MessageTrait.php | 416 ++ .../laminas/laminas-diactoros/src/Module.php | 15 + .../laminas-diactoros/src/PhpInputStream.php | 88 + .../laminas-diactoros/src/RelativeStream.php | 177 + .../laminas/laminas-diactoros/src/Request.php | 70 + .../src/Request/ArraySerializer.php | 77 + .../src/Request/Serializer.php | 136 + .../laminas-diactoros/src/RequestFactory.php | 19 + .../laminas-diactoros/src/RequestTrait.php | 314 + .../laminas-diactoros/src/Response.php | 196 + .../src/Response/ArraySerializer.php | 79 + .../src/Response/EmptyResponse.php | 37 + .../src/Response/HtmlResponse.php | 74 + .../src/Response/InjectContentTypeTrait.php | 30 + .../src/Response/JsonResponse.php | 178 + .../src/Response/RedirectResponse.php | 47 + .../src/Response/Serializer.php | 99 + .../src/Response/TextResponse.php | 74 + .../src/Response/XmlResponse.php | 76 + .../laminas-diactoros/src/ResponseFactory.php | 20 + .../laminas-diactoros/src/ServerRequest.php | 250 + .../src/ServerRequestFactory.php | 94 + .../laminas/laminas-diactoros/src/Stream.php | 377 + .../laminas-diactoros/src/StreamFactory.php | 45 + .../laminas-diactoros/src/UploadedFile.php | 262 + .../src/UploadedFileFactory.php | 31 + .../laminas/laminas-diactoros/src/Uri.php | 692 ++ .../laminas-diactoros/src/UriFactory.php | 19 + .../functions/create_uploaded_file.legacy.php | 15 + .../src/functions/create_uploaded_file.php | 34 + .../marshal_headers_from_sapi.legacy.php | 15 + .../functions/marshal_headers_from_sapi.php | 69 + .../marshal_method_from_sapi.legacy.php | 15 + .../functions/marshal_method_from_sapi.php | 13 + ...shal_protocol_version_from_sapi.legacy.php | 15 + .../marshal_protocol_version_from_sapi.php | 28 + .../marshal_uri_from_sapi.legacy.php | 15 + .../src/functions/marshal_uri_from_sapi.php | 218 + .../src/functions/normalize_server.legacy.php | 15 + .../src/functions/normalize_server.php | 47 + .../normalize_uploaded_files.legacy.php | 17 + .../functions/normalize_uploaded_files.php | 124 + .../functions/parse_cookie_header.legacy.php | 15 + .../src/functions/parse_cookie_header.php | 38 + .../laminas-httphandlerrunner/CHANGELOG.md | 187 + .../laminas-httphandlerrunner/COPYRIGHT.md | 1 + .../laminas-httphandlerrunner/LICENSE.md | 26 + .../laminas-httphandlerrunner/README.md | 32 + .../laminas-httphandlerrunner/composer.json | 70 + .../psalm-baseline.xml | 228 + .../laminas-httphandlerrunner/psalm.xml.dist | 33 + .../src/ConfigProvider.php | 25 + .../src/Emitter/EmitterInterface.php | 35 + .../src/Emitter/EmitterStack.php | 100 + .../src/Emitter/SapiEmitter.php | 43 + .../src/Emitter/SapiEmitterTrait.php | 102 + .../src/Emitter/SapiStreamEmitter.php | 135 + .../src/Exception/EmitterException.php | 26 + .../src/Exception/ExceptionInterface.php | 18 + .../src/Exception/InvalidEmitterException.php | 35 + .../src/RequestHandlerRunner.php | 106 + .../.github/FUNDING.yml | 1 + .../workflows/continuous-integration.yml | 32 + .../workflows/release-on-milestone-closed.yml | 71 + .../laminas-zendframework-bridge/CHANGELOG.md | 734 ++ .../laminas-zendframework-bridge/COPYRIGHT.md | 1 + .../laminas-zendframework-bridge/LICENSE.md | 26 + .../laminas-zendframework-bridge/README.md | 30 + .../composer.json | 61 + .../config/replacements.php | 372 + .../psalm-baseline.xml | 382 + .../psalm.xml.dist | 33 + .../src/Autoloader.php | 166 + .../src/ConfigPostProcessor.php | 426 ++ .../src/Module.php | 48 + .../src/Replacements.php | 40 + .../src/RewriteRules.php | 73 + .../src/autoload.php | 3 + .../league/container/.github/FUNDING.yml | 1 + .../container/.github/workflows/test.yml | 73 + app/vendor/league/container/CHANGELOG.md | 228 + app/vendor/league/container/CONTRIBUTING.md | 29 + app/vendor/league/container/LICENSE.md | 21 + app/vendor/league/container/README.md | 65 + app/vendor/league/container/composer.json | 62 + app/vendor/league/container/phpcs.xml | 20 + app/vendor/league/container/phpunit.xml | 29 + .../Argument/ArgumentResolverInterface.php | 28 + .../src/Argument/ArgumentResolverTrait.php | 120 + .../container/src/Argument/ClassName.php | 29 + .../src/Argument/ClassNameInterface.php | 13 + .../Argument/ClassNameWithOptionalValue.php | 39 + .../container/src/Argument/RawArgument.php | 29 + .../src/Argument/RawArgumentInterface.php | 13 + app/vendor/league/container/src/Container.php | 248 + .../container/src/ContainerAwareInterface.php | 40 + .../container/src/ContainerAwareTrait.php | 76 + .../container/src/Definition/Definition.php | 278 + .../src/Definition/DefinitionAggregate.php | 124 + .../DefinitionAggregateInterface.php | 67 + .../src/Definition/DefinitionInterface.php | 120 + .../src/Exception/ContainerException.php | 10 + .../src/Exception/NotFoundException.php | 10 + .../container/src/Inflector/Inflector.php | 123 + .../src/Inflector/InflectorAggregate.php | 58 + .../Inflector/InflectorAggregateInterface.php | 27 + .../src/Inflector/InflectorInterface.php | 60 + .../container/src/ReflectionContainer.php | 131 + .../AbstractServiceProvider.php | 46 + .../BootableServiceProviderInterface.php | 14 + .../ServiceProviderAggregate.php | 106 + .../ServiceProviderAggregateInterface.php | 36 + .../ServiceProviderInterface.php | 46 + app/vendor/m1/env/.editorconfig | 15 + app/vendor/m1/env/CHANGELOG.md | 46 + app/vendor/m1/env/CONDUCT.md | 22 + app/vendor/m1/env/CONTRIBUTING.md | 32 + app/vendor/m1/env/LICENSE.md | 21 + app/vendor/m1/env/README.md | 612 ++ app/vendor/m1/env/composer.json | 51 + .../m1/env/src/Exception/ParseException.php | 63 + app/vendor/m1/env/src/Helper/StringHelper.php | 150 + app/vendor/m1/env/src/Parser.php | 246 + .../m1/env/src/Parser/AbstractParser.php | 44 + app/vendor/m1/env/src/Parser/KeyParser.php | 57 + app/vendor/m1/env/src/Parser/ValueParser.php | 267 + .../m1/env/src/Parser/VariableParser.php | 358 + .../mobiledetect/mobiledetectlib/LICENSE.txt | 48 + .../mobiledetectlib/Mobile_Detect.json | 1 + .../mobiledetectlib/Mobile_Detect.php | 1683 +++++ .../mobiledetect/mobiledetectlib/README.md | 344 + .../mobiledetectlib/composer.json | 31 + .../mobiledetectlib/docker-compose.yml | 16 + .../mobiledetectlib/docs/CONTRIBUTING.md | 48 + .../mobiledetectlib/docs/HISTORY.md | 11 + .../mobiledetectlib/docs/ISSUE_TEMPLATE.md | 15 + .../mobiledetectlib/docs/KNOWN_LIMITATIONS.md | 14 + .../mobiledetectlib/export/exportToJSON.php | 67 + .../namespaced/Detection/MobileDetect.php | 22 + .../mobiledetect/mobiledetectlib/phpcs.xml | 20 + .../myclabs/deep-copy/.github/FUNDING.yml | 12 + app/vendor/myclabs/deep-copy/LICENSE | 20 + app/vendor/myclabs/deep-copy/README.md | 375 + app/vendor/myclabs/deep-copy/composer.json | 38 + .../deep-copy/src/DeepCopy/DeepCopy.php | 298 + .../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 + app/vendor/nikic/php-parser/.editorconfig | 9 + app/vendor/nikic/php-parser/LICENSE | 29 + app/vendor/nikic/php-parser/README.md | 225 + app/vendor/nikic/php-parser/bin/php-parse | 205 + app/vendor/nikic/php-parser/composer.json | 41 + app/vendor/nikic/php-parser/grammar/README.md | 30 + .../nikic/php-parser/grammar/parser.template | 106 + app/vendor/nikic/php-parser/grammar/php5.y | 1026 +++ app/vendor/nikic/php-parser/grammar/php7.y | 1152 +++ .../nikic/php-parser/grammar/phpyLang.php | 192 + .../php-parser/grammar/rebuildParsers.php | 81 + .../nikic/php-parser/grammar/tokens.template | 17 + app/vendor/nikic/php-parser/grammar/tokens.y | 115 + .../php-parser/lib/PhpParser/Builder.php | 13 + .../lib/PhpParser/Builder/ClassConst.php | 121 + .../lib/PhpParser/Builder/Class_.php | 140 + .../lib/PhpParser/Builder/Declaration.php | 43 + .../lib/PhpParser/Builder/FunctionLike.php | 74 + .../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 | 150 + .../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 | 377 + .../lib/PhpParser/BuilderHelpers.php | 324 + .../php-parser/lib/PhpParser/Comment.php | 239 + .../php-parser/lib/PhpParser/Comment/Doc.php | 7 + .../ConstExprEvaluationException.php | 6 + .../lib/PhpParser/ConstExprEvaluator.php | 226 + .../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 | 281 + .../php-parser/lib/PhpParser/JsonDecoder.php | 103 + .../nikic/php-parser/lib/PhpParser/Lexer.php | 537 ++ .../lib/PhpParser/Lexer/Emulative.php | 244 + .../Lexer/TokenEmulator/AttributeEmulator.php | 56 + .../CoaleseEqualTokenEmulator.php | 47 + .../Lexer/TokenEmulator/EnumTokenEmulator.php | 31 + .../FlexibleDocStringEmulator.php | 76 + .../Lexer/TokenEmulator/FnTokenEmulator.php | 23 + .../Lexer/TokenEmulator/KeywordEmulator.php | 62 + .../TokenEmulator/MatchTokenEmulator.php | 23 + .../TokenEmulator/NullsafeTokenEmulator.php | 67 + .../NumericLiteralSeparatorEmulator.php | 105 + .../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 | 45 + .../lib/PhpParser/Node/Attribute.php | 34 + .../lib/PhpParser/Node/AttributeGroup.php | 29 + .../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/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 | 35 + .../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 | 40 + .../lib/PhpParser/Node/Expr/New_.php | 35 + .../Node/Expr/NullsafeMethodCall.php | 40 + .../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 | 40 + .../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/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 | 30 + .../php-parser/lib/PhpParser/Node/Param.php | 60 + .../php-parser/lib/PhpParser/Node/Scalar.php | 7 + .../lib/PhpParser/Node/Scalar/DNumber.php | 70 + .../lib/PhpParser/Node/Scalar/Encapsed.php | 31 + .../Node/Scalar/EncapsedStringPart.php | 30 + .../lib/PhpParser/Node/Scalar/LNumber.php | 73 + .../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 | 141 + .../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 | 71 + .../lib/PhpParser/Node/Stmt/ClassLike.php | 109 + .../lib/PhpParser/Node/Stmt/ClassMethod.php | 159 + .../lib/PhpParser/Node/Stmt/Class_.php | 107 + .../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 | 83 + .../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 | 30 + .../lib/PhpParser/Node/VarLikeIdentifier.php | 17 + .../php-parser/lib/PhpParser/NodeAbstract.php | 178 + .../php-parser/lib/PhpParser/NodeDumper.php | 203 + .../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 | 2630 +++++++ .../php-parser/lib/PhpParser/Parser/Php7.php | 2746 +++++++ .../lib/PhpParser/Parser/Tokens.php | 145 + .../lib/PhpParser/ParserAbstract.php | 1023 +++ .../lib/PhpParser/ParserFactory.php | 44 + .../lib/PhpParser/PrettyPrinter/Standard.php | 1097 +++ .../lib/PhpParser/PrettyPrinterAbstract.php | 1499 ++++ app/vendor/phar-io/manifest/CHANGELOG.md | 25 + app/vendor/phar-io/manifest/LICENSE | 31 + app/vendor/phar-io/manifest/README.md | 30 + app/vendor/phar-io/manifest/composer.json | 42 + app/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 | 60 + .../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 + app/vendor/phar-io/version/CHANGELOG.md | 121 + app/vendor/phar-io/version/LICENSE | 31 + app/vendor/phar-io/version/README.md | 61 + app/vendor/phar-io/version/composer.json | 34 + .../phar-io/version/src/PreReleaseSuffix.php | 85 + app/vendor/phar-io/version/src/Version.php | 162 + .../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 | 16 + .../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 + .../NoPreReleaseSuffixException.php | 5 + .../UnsupportedVersionConstraintException.php | 13 + .../reflection-common/.github/dependabot.yml | 7 + .../.github/workflows/push.yml | 223 + .../phpdocumentor/reflection-common/LICENSE | 22 + .../phpdocumentor/reflection-common/README.md | 11 + .../reflection-common/composer.json | 28 + .../reflection-common/src/Element.php | 30 + .../reflection-common/src/File.php | 35 + .../reflection-common/src/Fqsen.php | 89 + .../reflection-common/src/Location.php | 53 + .../reflection-common/src/Project.php | 25 + .../reflection-common/src/ProjectFactory.php | 28 + .../phpdocumentor/reflection-docblock/LICENSE | 21 + .../reflection-docblock/README.md | 75 + .../reflection-docblock/composer.json | 41 + .../reflection-docblock/src/DocBlock.php | 204 + .../src/DocBlock/Description.php | 114 + .../src/DocBlock/DescriptionFactory.php | 177 + .../src/DocBlock/ExampleFinder.php | 157 + .../src/DocBlock/Serializer.php | 151 + .../src/DocBlock/StandardTagFactory.php | 347 + .../reflection-docblock/src/DocBlock/Tag.php | 32 + .../src/DocBlock/TagFactory.php | 84 + .../src/DocBlock/Tags/Author.php | 100 + .../src/DocBlock/Tags/BaseTag.php | 53 + .../src/DocBlock/Tags/Covers.php | 100 + .../src/DocBlock/Tags/Deprecated.php | 108 + .../src/DocBlock/Tags/Example.php | 199 + .../DocBlock/Tags/Factory/StaticMethod.php | 25 + .../src/DocBlock/Tags/Formatter.php | 24 + .../Tags/Formatter/AlignFormatter.php | 49 + .../Tags/Formatter/PassthroughFormatter.php | 29 + .../src/DocBlock/Tags/Generic.php | 88 + .../src/DocBlock/Tags/InvalidTag.php | 144 + .../src/DocBlock/Tags/Link.php | 78 + .../src/DocBlock/Tags/Method.php | 279 + .../src/DocBlock/Tags/Param.php | 172 + .../src/DocBlock/Tags/Property.php | 119 + .../src/DocBlock/Tags/PropertyRead.php | 119 + .../src/DocBlock/Tags/PropertyWrite.php | 119 + .../src/DocBlock/Tags/Reference/Fqsen.php | 38 + .../src/DocBlock/Tags/Reference/Reference.php | 22 + .../src/DocBlock/Tags/Reference/Url.php | 36 + .../src/DocBlock/Tags/Return_.php | 64 + .../src/DocBlock/Tags/See.php | 105 + .../src/DocBlock/Tags/Since.php | 102 + .../src/DocBlock/Tags/Source.php | 117 + .../src/DocBlock/Tags/TagWithType.php | 65 + .../src/DocBlock/Tags/Throws.php | 64 + .../src/DocBlock/Tags/Uses.php | 99 + .../src/DocBlock/Tags/Var_.php | 120 + .../src/DocBlock/Tags/Version.php | 105 + .../src/DocBlockFactory.php | 286 + .../src/DocBlockFactoryInterface.php | 23 + .../src/Exception/PcreException.php | 38 + .../reflection-docblock/src/Utils.php | 57 + .../phpdocumentor/type-resolver/LICENSE | 21 + .../phpdocumentor/type-resolver/README.md | 177 + .../phpdocumentor/type-resolver/composer.json | 34 + .../phpdocumentor/type-resolver/composer.lock | 71 + .../phpdocumentor/type-resolver/phpbench.json | 10 + .../type-resolver/src/FqsenResolver.php | 79 + .../type-resolver/src/PseudoType.php | 19 + .../type-resolver/src/PseudoTypes/False_.php | 39 + .../type-resolver/src/PseudoTypes/True_.php | 39 + .../phpdocumentor/type-resolver/src/Type.php | 25 + .../type-resolver/src/TypeResolver.php | 543 ++ .../type-resolver/src/Types/AbstractList.php | 83 + .../src/Types/AggregatedType.php | 124 + .../type-resolver/src/Types/Array_.php | 29 + .../type-resolver/src/Types/Boolean.php | 32 + .../type-resolver/src/Types/Callable_.php | 32 + .../type-resolver/src/Types/ClassString.php | 56 + .../type-resolver/src/Types/Collection.php | 68 + .../type-resolver/src/Types/Compound.php | 38 + .../type-resolver/src/Types/Context.php | 97 + .../src/Types/ContextFactory.php | 423 ++ .../type-resolver/src/Types/Expression.php | 51 + .../type-resolver/src/Types/Float_.php | 32 + .../type-resolver/src/Types/Integer.php | 32 + .../type-resolver/src/Types/Intersection.php | 37 + .../type-resolver/src/Types/Iterable_.php | 38 + .../type-resolver/src/Types/Mixed_.php | 32 + .../type-resolver/src/Types/Null_.php | 32 + .../type-resolver/src/Types/Nullable.php | 51 + .../type-resolver/src/Types/Object_.php | 68 + .../type-resolver/src/Types/Parent_.php | 34 + .../type-resolver/src/Types/Resource_.php | 32 + .../type-resolver/src/Types/Scalar.php | 32 + .../type-resolver/src/Types/Self_.php | 34 + .../type-resolver/src/Types/Static_.php | 39 + .../type-resolver/src/Types/String_.php | 32 + .../type-resolver/src/Types/This.php | 35 + .../type-resolver/src/Types/Void_.php | 35 + app/vendor/phpspec/prophecy/CHANGES.md | 288 + app/vendor/phpspec/prophecy/LICENSE | 23 + app/vendor/phpspec/prophecy/README.md | 404 ++ app/vendor/phpspec/prophecy/composer.json | 50 + .../prophecy/src/Prophecy/Argument.php | 239 + .../Prophecy/Argument/ArgumentsWildcard.php | 101 + .../Prophecy/Argument/Token/AnyValueToken.php | 52 + .../Argument/Token/AnyValuesToken.php | 52 + .../Argument/Token/ApproximateValueToken.php | 55 + .../Argument/Token/ArrayCountToken.php | 86 + .../Argument/Token/ArrayEntryToken.php | 143 + .../Argument/Token/ArrayEveryEntryToken.php | 82 + .../Prophecy/Argument/Token/CallbackToken.php | 75 + .../Argument/Token/ExactValueToken.php | 118 + .../Argument/Token/IdenticalValueToken.php | 74 + .../Prophecy/Argument/Token/InArrayToken.php | 74 + .../Argument/Token/LogicalAndToken.php | 80 + .../Argument/Token/LogicalNotToken.php | 73 + .../Argument/Token/NotInArrayToken.php | 75 + .../Argument/Token/ObjectStateToken.php | 104 + .../Argument/Token/StringContainsToken.php | 67 + .../Argument/Token/TokenInterface.php | 43 + .../src/Prophecy/Argument/Token/TypeToken.php | 76 + .../prophecy/src/Prophecy/Call/Call.php | 162 + .../prophecy/src/Prophecy/Call/CallCenter.php | 240 + .../Prophecy/Comparator/ClosureComparator.php | 44 + .../src/Prophecy/Comparator/Factory.php | 47 + .../Comparator/ProphecyComparator.php | 28 + .../src/Prophecy/Doubler/CachedDoubler.php | 66 + .../ClassPatch/ClassPatchInterface.php | 48 + .../ClassPatch/DisableConstructorPatch.php | 76 + .../Doubler/ClassPatch/HhvmExceptionPatch.php | 63 + .../Doubler/ClassPatch/KeywordPatch.php | 68 + .../Doubler/ClassPatch/MagicCallPatch.php | 105 + .../ClassPatch/ProphecySubjectPatch.php | 113 + .../ReflectionClassNewInstancePatch.php | 57 + .../Doubler/ClassPatch/SplFileInfoPatch.php | 123 + .../Doubler/ClassPatch/ThrowablePatch.php | 95 + .../Doubler/ClassPatch/TraversablePatch.php | 83 + .../src/Prophecy/Doubler/DoubleInterface.php | 22 + .../prophecy/src/Prophecy/Doubler/Doubler.php | 146 + .../Doubler/Generator/ClassCodeGenerator.php | 110 + .../Doubler/Generator/ClassCreator.php | 67 + .../Doubler/Generator/ClassMirror.php | 243 + .../Doubler/Generator/Node/ArgumentNode.php | 133 + .../Generator/Node/ArgumentTypeNode.php | 10 + .../Doubler/Generator/Node/ClassNode.php | 169 + .../Doubler/Generator/Node/MethodNode.php | 210 + .../Doubler/Generator/Node/ReturnTypeNode.php | 31 + .../Generator/Node/TypeNodeAbstract.php | 96 + .../Doubler/Generator/ReflectionInterface.php | 22 + .../Doubler/Generator/TypeHintReference.php | 43 + .../src/Prophecy/Doubler/LazyDouble.php | 127 + .../src/Prophecy/Doubler/NameGenerator.php | 52 + .../Call/UnexpectedCallException.php | 40 + .../Doubler/ClassCreatorException.php | 31 + .../Doubler/ClassMirrorException.php | 31 + .../Doubler/ClassNotFoundException.php | 33 + .../Exception/Doubler/DoubleException.php | 18 + .../Exception/Doubler/DoublerException.php | 18 + .../Doubler/InterfaceNotFoundException.php | 20 + .../Doubler/MethodNotExtendableException.php | 41 + .../Doubler/MethodNotFoundException.php | 60 + .../Doubler/ReturnByReferenceException.php | 41 + .../src/Prophecy/Exception/Exception.php | 22 + .../Exception/InvalidArgumentException.php | 16 + .../Prediction/AggregateException.php | 51 + .../Prediction/FailedPredictionException.php | 24 + .../Exception/Prediction/NoCallsException.php | 18 + .../Prediction/PredictionException.php | 18 + .../UnexpectedCallsCountException.php | 31 + .../Prediction/UnexpectedCallsException.php | 32 + .../Prophecy/MethodProphecyException.php | 34 + .../Prophecy/ObjectProphecyException.php | 34 + .../Exception/Prophecy/ProphecyException.php | 18 + .../ClassAndInterfaceTagRetriever.php | 69 + .../PhpDocumentor/ClassTagRetriever.php | 60 + .../PhpDocumentor/LegacyClassTagRetriever.php | 35 + .../MethodTagRetrieverInterface.php | 30 + .../Prophecy/Prediction/CallPrediction.php | 86 + .../Prediction/CallTimesPrediction.php | 107 + .../Prediction/CallbackPrediction.php | 65 + .../Prophecy/Prediction/NoCallsPrediction.php | 68 + .../Prediction/PredictionInterface.php | 37 + .../src/Prophecy/Promise/CallbackPromise.php | 66 + .../src/Prophecy/Promise/PromiseInterface.php | 35 + .../Promise/ReturnArgumentPromise.php | 61 + .../src/Prophecy/Promise/ReturnPromise.php | 55 + .../src/Prophecy/Promise/ThrowPromise.php | 100 + .../src/Prophecy/Prophecy/MethodProphecy.php | 566 ++ .../src/Prophecy/Prophecy/ObjectProphecy.php | 286 + .../Prophecy/Prophecy/ProphecyInterface.php | 27 + .../Prophecy/ProphecySubjectInterface.php | 34 + .../src/Prophecy/Prophecy/Revealer.php | 44 + .../Prophecy/Prophecy/RevealerInterface.php | 29 + .../phpspec/prophecy/src/Prophecy/Prophet.php | 138 + .../prophecy/src/Prophecy/Util/ExportUtil.php | 210 + .../prophecy/src/Prophecy/Util/StringUtil.php | 99 + .../phpstan/phpdoc-parser/CODE_OF_CONDUCT.md | 74 + app/vendor/phpstan/phpdoc-parser/LICENSE | 21 + app/vendor/phpstan/phpdoc-parser/README.md | 30 + .../phpstan/phpdoc-parser/build-abnfgen.sh | 22 + .../phpstan/phpdoc-parser/composer.json | 44 + .../doc/grammars/phpdoc-method.peg | 41 + .../doc/grammars/phpdoc-param.peg | 14 + .../phpdoc-parser/doc/grammars/type.abnf | 243 + app/vendor/phpstan/phpdoc-parser/phpstan.neon | 3 + .../Ast/ConstExpr/ConstExprArrayItemNode.php | 31 + .../src/Ast/ConstExpr/ConstExprArrayNode.php | 25 + .../src/Ast/ConstExpr/ConstExprFalseNode.php | 13 + .../src/Ast/ConstExpr/ConstExprFloatNode.php | 22 + .../Ast/ConstExpr/ConstExprIntegerNode.php | 22 + .../src/Ast/ConstExpr/ConstExprNode.php | 10 + .../src/Ast/ConstExpr/ConstExprNullNode.php | 13 + .../src/Ast/ConstExpr/ConstExprStringNode.php | 22 + .../src/Ast/ConstExpr/ConstExprTrueNode.php | 13 + .../src/Ast/ConstExpr/ConstFetchNode.php | 31 + .../phpstan/phpdoc-parser/src/Ast/Node.php | 10 + .../src/Ast/PhpDoc/DeprecatedTagValueNode.php | 22 + .../src/Ast/PhpDoc/ExtendsTagValueNode.php | 28 + .../src/Ast/PhpDoc/GenericTagValueNode.php | 22 + .../src/Ast/PhpDoc/ImplementsTagValueNode.php | 28 + .../src/Ast/PhpDoc/InvalidTagValueNode.php | 26 + .../src/Ast/PhpDoc/MethodTagValueNode.php | 44 + .../PhpDoc/MethodTagValueParameterNode.php | 46 + .../src/Ast/PhpDoc/MixinTagValueNode.php | 28 + .../src/Ast/PhpDoc/ParamTagValueNode.php | 37 + .../src/Ast/PhpDoc/PhpDocChildNode.php | 10 + .../src/Ast/PhpDoc/PhpDocNode.php | 246 + .../src/Ast/PhpDoc/PhpDocTagNode.php | 26 + .../src/Ast/PhpDoc/PhpDocTagValueNode.php | 10 + .../src/Ast/PhpDoc/PhpDocTextNode.php | 22 + .../src/Ast/PhpDoc/PropertyTagValueNode.php | 32 + .../src/Ast/PhpDoc/ReturnTagValueNode.php | 28 + .../src/Ast/PhpDoc/TemplateTagValueNode.php | 33 + .../src/Ast/PhpDoc/ThrowsTagValueNode.php | 28 + .../src/Ast/PhpDoc/UsesTagValueNode.php | 28 + .../src/Ast/PhpDoc/VarTagValueNode.php | 32 + .../src/Ast/Type/ArrayShapeItemNode.php | 45 + .../src/Ast/Type/ArrayShapeNode.php | 22 + .../src/Ast/Type/ArrayTypeNode.php | 22 + .../src/Ast/Type/CallableTypeNode.php | 31 + .../Ast/Type/CallableTypeParameterNode.php | 44 + .../src/Ast/Type/ConstTypeNode.php | 23 + .../src/Ast/Type/GenericTypeNode.php | 26 + .../src/Ast/Type/IdentifierTypeNode.php | 22 + .../src/Ast/Type/IntersectionTypeNode.php | 22 + .../src/Ast/Type/NullableTypeNode.php | 22 + .../src/Ast/Type/ThisTypeNode.php | 13 + .../phpdoc-parser/src/Ast/Type/TypeNode.php | 10 + .../src/Ast/Type/UnionTypeNode.php | 22 + .../phpstan/phpdoc-parser/src/Lexer/Lexer.php | 168 + .../src/Parser/ConstExprParser.php | 113 + .../src/Parser/ParserException.php | 69 + .../phpdoc-parser/src/Parser/PhpDocParser.php | 408 ++ .../src/Parser/TokenIterator.php | 191 + .../phpdoc-parser/src/Parser/TypeParser.php | 399 + .../phpunit/php-code-coverage/ChangeLog.md | 366 + app/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 | 685 ++ .../php-code-coverage/src/CrapIndex.php | 55 + .../php-code-coverage/src/Directory.php | 37 + .../php-code-coverage/src/Driver/Driver.php | 167 + .../src/Driver/PcovDriver.php | 62 + .../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 | 16 + .../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 | 122 + .../src/Node/AbstractNode.php | 251 + .../php-code-coverage/src/Node/Builder.php | 264 + .../php-code-coverage/src/Node/Directory.php | 430 ++ .../php-code-coverage/src/Node/File.php | 643 ++ .../php-code-coverage/src/Node/Iterator.php | 92 + .../php-code-coverage/src/Percentage.php | 66 + .../src/ProcessedCodeCoverageData.php | 255 + .../src/RawCodeCoverageData.php | 227 + .../php-code-coverage/src/Report/Clover.php | 255 + .../src/Report/Cobertura.php | 304 + .../php-code-coverage/src/Report/Crap4j.php | 153 + .../src/Report/Html/Facade.php | 140 + .../src/Report/Html/Renderer.php | 333 + .../src/Report/Html/Renderer/Dashboard.php | 288 + .../src/Report/Html/Renderer/Directory.php | 113 + .../src/Report/Html/Renderer/File.php | 1141 +++ .../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 | 127 + .../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/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 | 11 + .../Template/method_item_branch.html.dist | 17 + .../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/Cache.php | 90 + .../src/StaticAnalysis/CacheWarmer.php | 38 + .../CachingCoveredFileAnalyser.php | 99 + .../CachingUncoveredFileAnalyser.php | 41 + .../StaticAnalysis/CodeUnitFindingVisitor.php | 293 + .../StaticAnalysis/CoveredFileAnalyser.php | 28 + .../ExecutableLinesFindingVisitor.php | 91 + .../IgnoredLinesFindingVisitor.php | 113 + .../ParsingCoveredFileAnalyser.php | 226 + .../ParsingUncoveredFileAnalyser.php | 51 + .../StaticAnalysis/UncoveredFileAnalyser.php | 18 + .../phpunit/php-code-coverage/src/Version.php | 30 + .../phpunit/php-file-iterator/ChangeLog.md | 112 + app/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 + app/vendor/phpunit/php-invoker/ChangeLog.md | 48 + app/vendor/phpunit/php-invoker/LICENSE | 33 + app/vendor/phpunit/php-invoker/README.md | 18 + app/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 + app/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 + app/vendor/phpunit/php-timer/ChangeLog.md | 138 + app/vendor/phpunit/php-timer/LICENSE | 33 + app/vendor/phpunit/php-timer/README.md | 104 + app/vendor/phpunit/php-timer/composer.json | 45 + app/vendor/phpunit/php-timer/src/Duration.php | 109 + .../php-timer/src/ResourceUsageFormatter.php | 73 + app/vendor/phpunit/php-timer/src/Timer.php | 40 + .../php-timer/src/exceptions/Exception.php | 16 + .../src/exceptions/NoActiveTimerException.php | 16 + ...nceStartOfRequestNotAvailableException.php | 16 + app/vendor/phpunit/phpunit/.phpstorm.meta.php | 33 + app/vendor/phpunit/phpunit/ChangeLog-8.5.md | 169 + app/vendor/phpunit/phpunit/ChangeLog-9.5.md | 69 + app/vendor/phpunit/phpunit/LICENSE | 33 + app/vendor/phpunit/phpunit/README.md | 43 + app/vendor/phpunit/phpunit/composer.json | 94 + app/vendor/phpunit/phpunit/phpunit | 76 + app/vendor/phpunit/phpunit/phpunit.xsd | 328 + app/vendor/phpunit/phpunit/schema/8.5.xsd | 317 + app/vendor/phpunit/phpunit/schema/9.2.xsd | 317 + app/vendor/phpunit/phpunit/src/Exception.php | 19 + .../phpunit/phpunit/src/Framework/Assert.php | 2854 ++++++++ .../src/Framework/Assert/Functions.php | 3035 ++++++++ .../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 | 269 + .../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 | 141 + .../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 | 147 + .../Constraint/Operator/LogicalAnd.php | 51 + .../Constraint/Operator/LogicalNot.php | 135 + .../Constraint/Operator/LogicalOr.php | 51 + .../Constraint/Operator/LogicalXor.php | 62 + .../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 | 42 + .../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 | 122 + .../Framework/ExecutionOrderDependency.php | 203 + .../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 + .../MockObject/Api/MockedCloneMethod.php | 21 + .../MockObject/Api/UnmockedCloneMethod.php | 23 + .../Framework/MockObject/Builder/Identity.php | 25 + .../MockObject/Builder/InvocationMocker.php | 305 + .../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 | 32 + .../MockObject/Exception/Exception.php | 19 + .../IncompatibleReturnValueException.php | 33 + .../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 | 27 + .../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 | 1004 +++ .../MockObject/Generator/deprecation.tpl | 2 + .../MockObject/Generator/mocked_class.tpl | 6 + .../MockObject/Generator/mocked_method.tpl | 22 + .../Generator/mocked_method_void.tpl | 20 + .../Generator/mocked_static_method.tpl | 5 + .../MockObject/Generator/proxied_method.tpl | 22 + .../Generator/proxied_method_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 | 216 + .../MockObject/InvocationHandler.php | 186 + .../src/Framework/MockObject/Matcher.php | 272 + .../MockObject/MethodNameConstraint.php | 48 + .../src/Framework/MockObject/MockBuilder.php | 516 ++ .../src/Framework/MockObject/MockClass.php | 69 + .../src/Framework/MockObject/MockMethod.php | 398 + .../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 | 75 + .../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 | 2580 +++++++ .../phpunit/src/Framework/TestFailure.php | 155 + .../phpunit/src/Framework/TestListener.php | 85 + .../TestListenerDefaultImplementation.php | 59 + .../phpunit/src/Framework/TestResult.php | 1289 ++++ .../phpunit/src/Framework/TestSuite.php | 914 +++ .../src/Framework/TestSuiteIterator.php | 83 + .../phpunit/src/Framework/WarningTestCase.php | 66 + .../phpunit/src/Runner/BaseTestRunner.php | 161 + .../src/Runner/DefaultTestResultCache.php | 157 + .../phpunit/phpunit/src/Runner/Exception.php | 19 + .../src/Runner/Extension/ExtensionHandler.php | 117 + .../src/Runner/Extension/PharLoader.php | 75 + .../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 | 18 + .../src/Runner/Hook/AfterLastTestHook.php | 18 + .../src/Runner/Hook/AfterRiskyTestHook.php | 18 + .../src/Runner/Hook/AfterSkippedTestHook.php | 18 + .../Runner/Hook/AfterSuccessfulTestHook.php | 18 + .../src/Runner/Hook/AfterTestErrorHook.php | 18 + .../src/Runner/Hook/AfterTestFailureHook.php | 18 + .../phpunit/src/Runner/Hook/AfterTestHook.php | 24 + .../src/Runner/Hook/AfterTestWarningHook.php | 18 + .../src/Runner/Hook/BeforeFirstTestHook.php | 18 + .../src/Runner/Hook/BeforeTestHook.php | 18 + .../phpunit/phpunit/src/Runner/Hook/Hook.php | 17 + .../phpunit/src/Runner/Hook/TestHook.php | 17 + .../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 | 123 + .../phpunit/src/Runner/TestResultCache.php | 28 + .../phpunit/src/Runner/TestSuiteLoader.php | 24 + .../phpunit/src/Runner/TestSuiteSorter.php | 391 + .../phpunit/phpunit/src/Runner/Version.php | 65 + .../src/TextUI/CliArguments/Builder.php | 887 +++ .../src/TextUI/CliArguments/Configuration.php | 2107 ++++++ .../src/TextUI/CliArguments/Exception.php | 19 + .../src/TextUI/CliArguments/Mapper.php | 365 + .../phpunit/phpunit/src/TextUI/Command.php | 903 +++ .../src/TextUI/DefaultResultPrinter.php | 592 ++ .../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 | 264 + .../phpunit/src/TextUI/ResultPrinter.php | 23 + .../phpunit/phpunit/src/TextUI/TestRunner.php | 1272 ++++ .../phpunit/src/TextUI/TestSuiteMapper.php | 103 + .../CodeCoverage/CodeCoverage.php | 362 + .../CodeCoverage/Filter/Directory.php | 65 + .../Filter/DirectoryCollection.php | 57 + .../Filter/DirectoryCollectionIterator.php | 66 + .../CodeCoverage/FilterMapper.php | 45 + .../CodeCoverage/Report/Clover.php | 34 + .../CodeCoverage/Report/Cobertura.php | 34 + .../CodeCoverage/Report/Crap4j.php | 45 + .../CodeCoverage/Report/Html.php | 56 + .../CodeCoverage/Report/Php.php | 34 + .../CodeCoverage/Report/Text.php | 56 + .../CodeCoverage/Report/Xml.php | 34 + .../TextUI/XmlConfiguration/Configuration.php | 151 + .../src/TextUI/XmlConfiguration/Exception.php | 19 + .../XmlConfiguration/Filesystem/Directory.php | 32 + .../Filesystem/DirectoryCollection.php | 62 + .../DirectoryCollectionIterator.php | 66 + .../XmlConfiguration/Filesystem/File.php | 32 + .../Filesystem/FileCollection.php | 62 + .../Filesystem/FileCollectionIterator.php | 66 + .../src/TextUI/XmlConfiguration/Generator.php | 72 + .../TextUI/XmlConfiguration/Group/Group.php | 32 + .../Group/GroupCollection.php | 69 + .../Group/GroupCollectionIterator.php | 66 + .../TextUI/XmlConfiguration/Group/Groups.php | 53 + .../src/TextUI/XmlConfiguration/Loader.php | 1264 ++++ .../TextUI/XmlConfiguration/Logging/Junit.php | 34 + .../XmlConfiguration/Logging/Logging.php | 146 + .../XmlConfiguration/Logging/TeamCity.php | 34 + .../XmlConfiguration/Logging/TestDox/Html.php | 34 + .../XmlConfiguration/Logging/TestDox/Text.php | 34 + .../XmlConfiguration/Logging/TestDox/Xml.php | 34 + .../TextUI/XmlConfiguration/Logging/Text.php | 34 + .../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 | 70 + .../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 | 43 + .../PHP/ConstantCollection.php | 57 + .../PHP/ConstantCollectionIterator.php | 66 + .../XmlConfiguration/PHP/IniSetting.php | 43 + .../PHP/IniSettingCollection.php | 57 + .../PHP/IniSettingCollectionIterator.php | 66 + .../src/TextUI/XmlConfiguration/PHP/Php.php | 142 + .../XmlConfiguration/PHP/PhpHandler.php | 121 + .../TextUI/XmlConfiguration/PHP/Variable.php | 54 + .../PHP/VariableCollection.php | 57 + .../PHP/VariableCollectionIterator.php | 66 + .../XmlConfiguration/PHPUnit/Extension.php | 71 + .../PHPUnit/ExtensionCollection.php | 50 + .../PHPUnit/ExtensionCollectionIterator.php | 66 + .../XmlConfiguration/PHPUnit/PHPUnit.php | 714 ++ .../TestSuite/TestDirectory.php | 78 + .../TestSuite/TestDirectoryCollection.php | 62 + .../TestDirectoryCollectionIterator.php | 66 + .../XmlConfiguration/TestSuite/TestFile.php | 56 + .../TestSuite/TestFileCollection.php | 62 + .../TestSuite/TestFileCollectionIterator.php | 66 + .../XmlConfiguration/TestSuite/TestSuite.php | 65 + .../TestSuite/TestSuiteCollection.php | 62 + .../TestSuite/TestSuiteCollectionIterator.php | 66 + .../phpunit/src/Util/Annotation/DocBlock.php | 550 ++ .../phpunit/src/Util/Annotation/Registry.php | 93 + .../phpunit/phpunit/src/Util/Blacklist.php | 41 + app/vendor/phpunit/phpunit/src/Util/Color.php | 157 + .../phpunit/phpunit/src/Util/ErrorHandler.php | 155 + .../phpunit/phpunit/src/Util/Exception.php | 19 + .../phpunit/phpunit/src/Util/ExcludeList.php | 261 + .../phpunit/phpunit/src/Util/FileLoader.php | 83 + .../phpunit/phpunit/src/Util/Filesystem.php | 41 + .../phpunit/phpunit/src/Util/Filter.php | 115 + .../phpunit/phpunit/src/Util/GlobalState.php | 195 + .../src/Util/InvalidDataSetException.php | 19 + app/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 | 415 ++ .../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/src/Util/RegularExpression.php | 30 + app/vendor/phpunit/phpunit/src/Util/Test.php | 784 ++ .../src/Util/TestDox/CliTestDoxPrinter.php | 380 + .../src/Util/TestDox/HtmlResultPrinter.php | 138 + .../src/Util/TestDox/NamePrettifier.php | 328 + .../src/Util/TestDox/ResultPrinter.php | 343 + .../src/Util/TestDox/TestDoxPrinter.php | 387 + .../src/Util/TestDox/TextResultPrinter.php | 52 + .../src/Util/TestDox/XmlResultPrinter.php | 260 + .../phpunit/src/Util/TextTestListRenderer.php | 54 + app/vendor/phpunit/phpunit/src/Util/Type.php | 52 + .../src/Util/VersionComparisonOperator.php | 57 + .../src/Util/XdebugFilterScriptGenerator.php | 80 + app/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 | 48 + .../Xml/SuccessfulSchemaDetectionResult.php | 38 + .../phpunit/src/Util/Xml/ValidationResult.php | 69 + .../phpunit/src/Util/Xml/Validator.php | 35 + .../phpunit/src/Util/XmlTestListRenderer.php | 90 + app/vendor/psr/container/.gitignore | 3 + app/vendor/psr/container/LICENSE | 21 + app/vendor/psr/container/README.md | 13 + app/vendor/psr/container/composer.json | 22 + .../src/ContainerExceptionInterface.php | 10 + .../psr/container/src/ContainerInterface.php | 36 + .../src/NotFoundExceptionInterface.php | 10 + app/vendor/psr/http-client/CHANGELOG.md | 23 + app/vendor/psr/http-client/LICENSE | 19 + app/vendor/psr/http-client/README.md | 12 + app/vendor/psr/http-client/composer.json | 27 + .../src/ClientExceptionInterface.php | 10 + .../psr/http-client/src/ClientInterface.php | 20 + .../src/NetworkExceptionInterface.php | 24 + .../src/RequestExceptionInterface.php | 24 + app/vendor/psr/http-factory/.gitignore | 2 + app/vendor/psr/http-factory/.pullapprove.yml | 7 + app/vendor/psr/http-factory/LICENSE | 21 + app/vendor/psr/http-factory/README.md | 10 + app/vendor/psr/http-factory/composer.json | 35 + .../src/RequestFactoryInterface.php | 18 + .../src/ResponseFactoryInterface.php | 18 + .../src/ServerRequestFactoryInterface.php | 24 + .../src/StreamFactoryInterface.php | 45 + .../src/UploadedFileFactoryInterface.php | 34 + .../http-factory/src/UriFactoryInterface.php | 17 + app/vendor/psr/http-message/CHANGELOG.md | 36 + app/vendor/psr/http-message/LICENSE | 19 + app/vendor/psr/http-message/README.md | 13 + app/vendor/psr/http-message/composer.json | 26 + .../psr/http-message/src/MessageInterface.php | 187 + .../psr/http-message/src/RequestInterface.php | 129 + .../http-message/src/ResponseInterface.php | 68 + .../src/ServerRequestInterface.php | 261 + .../psr/http-message/src/StreamInterface.php | 158 + .../src/UploadedFileInterface.php | 123 + .../psr/http-message/src/UriInterface.php | 323 + app/vendor/psr/http-server-handler/LICENSE | 21 + app/vendor/psr/http-server-handler/README.md | 6 + .../psr/http-server-handler/composer.json | 36 + .../src/RequestHandlerInterface.php | 22 + app/vendor/psr/http-server-middleware/LICENSE | 21 + .../psr/http-server-middleware/README.md | 6 + .../psr/http-server-middleware/composer.json | 36 + .../src/MiddlewareInterface.php | 25 + app/vendor/psr/log/LICENSE | 19 + app/vendor/psr/log/Psr/Log/AbstractLogger.php | 128 + .../log/Psr/Log/InvalidArgumentException.php | 7 + app/vendor/psr/log/Psr/Log/LogLevel.php | 18 + .../psr/log/Psr/Log/LoggerAwareInterface.php | 18 + .../psr/log/Psr/Log/LoggerAwareTrait.php | 26 + .../psr/log/Psr/Log/LoggerInterface.php | 125 + app/vendor/psr/log/Psr/Log/LoggerTrait.php | 142 + app/vendor/psr/log/Psr/Log/NullLogger.php | 30 + app/vendor/psr/log/Psr/Log/Test/DummyTest.php | 18 + .../log/Psr/Log/Test/LoggerInterfaceTest.php | 138 + .../psr/log/Psr/Log/Test/TestLogger.php | 147 + app/vendor/psr/log/README.md | 58 + app/vendor/psr/log/composer.json | 26 + app/vendor/psr/simple-cache/.editorconfig | 12 + app/vendor/psr/simple-cache/LICENSE.md | 21 + app/vendor/psr/simple-cache/README.md | 8 + app/vendor/psr/simple-cache/composer.json | 25 + .../psr/simple-cache/src/CacheException.php | 10 + .../psr/simple-cache/src/CacheInterface.php | 114 + .../src/InvalidArgumentException.php | 13 + app/vendor/psy/psysh/.phan/config.php | 39 + app/vendor/psy/psysh/LICENSE | 21 + app/vendor/psy/psysh/README.md | 35 + app/vendor/psy/psysh/bin/psysh | 148 + app/vendor/psy/psysh/composer.json | 51 + app/vendor/psy/psysh/src/CodeCleaner.php | 403 ++ .../src/CodeCleaner/AbstractClassPass.php | 71 + .../CodeCleaner/AssignThisVariablePass.php | 39 + .../CallTimePassByReferencePass.php | 50 + .../psysh/src/CodeCleaner/CalledClassPass.php | 83 + .../psysh/src/CodeCleaner/CodeCleanerPass.php | 22 + .../CodeCleaner/EmptyArrayDimFetchPass.php | 50 + .../psy/psysh/src/CodeCleaner/ExitPass.php | 33 + .../psysh/src/CodeCleaner/FinalClassPass.php | 70 + .../src/CodeCleaner/FunctionContextPass.php | 61 + .../FunctionReturnInWriteContextPass.php | 70 + .../src/CodeCleaner/ImplicitReturnPass.php | 128 + .../psysh/src/CodeCleaner/InstanceOfPass.php | 67 + .../psy/psysh/src/CodeCleaner/IssetPass.php | 47 + .../src/CodeCleaner/LabelContextPass.php | 91 + .../src/CodeCleaner/LeavePsyshAlonePass.php | 36 + .../psy/psysh/src/CodeCleaner/ListPass.php | 112 + .../psysh/src/CodeCleaner/LoopContextPass.php | 103 + .../src/CodeCleaner/MagicConstantsPass.php | 42 + .../src/CodeCleaner/NamespaceAwarePass.php | 71 + .../psysh/src/CodeCleaner/NamespacePass.php | 88 + .../psysh/src/CodeCleaner/NoReturnValue.php | 35 + .../CodeCleaner/PassableByReferencePass.php | 115 + .../psy/psysh/src/CodeCleaner/RequirePass.php | 131 + .../psysh/src/CodeCleaner/ReturnTypePass.php | 118 + .../psysh/src/CodeCleaner/StrictTypesPass.php | 87 + .../src/CodeCleaner/UseStatementPass.php | 136 + .../src/CodeCleaner/ValidClassNamePass.php | 424 ++ .../src/CodeCleaner/ValidConstantPass.php | 90 + .../src/CodeCleaner/ValidConstructorPass.php | 112 + .../src/CodeCleaner/ValidFunctionNamePass.php | 97 + .../psy/psysh/src/Command/BufferCommand.php | 79 + .../psy/psysh/src/Command/ClearCommand.php | 51 + app/vendor/psy/psysh/src/Command/Command.php | 289 + .../psy/psysh/src/Command/DocCommand.php | 225 + .../psy/psysh/src/Command/DumpCommand.php | 96 + .../psy/psysh/src/Command/EditCommand.php | 190 + .../psy/psysh/src/Command/ExitCommand.php | 52 + .../psy/psysh/src/Command/HelpCommand.php | 107 + .../psy/psysh/src/Command/HistoryCommand.php | 248 + .../psy/psysh/src/Command/ListCommand.php | 280 + .../ListCommand/ClassConstantEnumerator.php | 124 + .../Command/ListCommand/ClassEnumerator.php | 132 + .../ListCommand/ConstantEnumerator.php | 175 + .../src/Command/ListCommand/Enumerator.php | 106 + .../ListCommand/FunctionEnumerator.php | 116 + .../ListCommand/GlobalVariableEnumerator.php | 92 + .../Command/ListCommand/MethodEnumerator.php | 146 + .../ListCommand/PropertyEnumerator.php | 178 + .../ListCommand/VariableEnumerator.php | 137 + .../psy/psysh/src/Command/ParseCommand.php | 182 + .../psysh/src/Command/PsyVersionCommand.php | 43 + .../psysh/src/Command/ReflectingCommand.php | 324 + .../psy/psysh/src/Command/ShowCommand.php | 297 + .../psy/psysh/src/Command/SudoCommand.php | 145 + .../psy/psysh/src/Command/ThrowUpCommand.php | 166 + .../psy/psysh/src/Command/TimeitCommand.php | 197 + .../Command/TimeitCommand/TimeitVisitor.php | 140 + .../psy/psysh/src/Command/TraceCommand.php | 97 + .../psy/psysh/src/Command/WhereamiCommand.php | 159 + .../psy/psysh/src/Command/WtfCommand.php | 134 + app/vendor/psy/psysh/src/ConfigPaths.php | 413 ++ app/vendor/psy/psysh/src/Configuration.php | 1810 +++++ .../psy/psysh/src/ConsoleColorFactory.php | 39 + app/vendor/psy/psysh/src/Context.php | 320 + app/vendor/psy/psysh/src/ContextAware.php | 28 + app/vendor/psy/psysh/src/EnvInterface.php | 25 + .../psysh/src/Exception/BreakException.php | 51 + .../src/Exception/DeprecatedException.php | 20 + .../psysh/src/Exception/ErrorException.php | 114 + .../psy/psysh/src/Exception/Exception.php | 27 + .../src/Exception/FatalErrorException.php | 52 + .../src/Exception/ParseErrorException.php | 42 + .../psysh/src/Exception/RuntimeException.php | 43 + .../psysh/src/Exception/ThrowUpException.php | 57 + .../src/Exception/TypeErrorException.php | 55 + .../Exception/UnexpectedTargetException.php | 37 + app/vendor/psy/psysh/src/ExecutionClosure.php | 98 + .../src/ExecutionLoop/AbstractListener.php | 62 + .../psy/psysh/src/ExecutionLoop/Listener.php | 83 + .../psysh/src/ExecutionLoop/ProcessForker.php | 284 + .../src/ExecutionLoop/RunkitReloader.php | 144 + .../psy/psysh/src/ExecutionLoopClosure.php | 102 + .../psy/psysh/src/Formatter/CodeFormatter.php | 320 + .../psysh/src/Formatter/DocblockFormatter.php | 174 + .../psy/psysh/src/Formatter/Formatter.php | 21 + .../src/Formatter/ReflectorFormatter.php | 25 + .../src/Formatter/SignatureFormatter.php | 359 + .../psysh/src/Formatter/TraceFormatter.php | 104 + .../psy/psysh/src/Input/CodeArgument.php | 50 + .../psy/psysh/src/Input/FilterOptions.php | 145 + app/vendor/psy/psysh/src/Input/ShellInput.php | 336 + .../psy/psysh/src/Input/SilentInput.php | 44 + .../psy/psysh/src/Output/OutputPager.php | 26 + .../psy/psysh/src/Output/PassthruPager.php | 39 + .../psy/psysh/src/Output/ProcOutputPager.php | 104 + .../psy/psysh/src/Output/ShellOutput.php | 208 + app/vendor/psy/psysh/src/ParserFactory.php | 91 + .../psy/psysh/src/Readline/GNUReadline.php | 188 + .../psy/psysh/src/Readline/HoaConsole.php | 121 + app/vendor/psy/psysh/src/Readline/Libedit.php | 110 + .../psy/psysh/src/Readline/Readline.php | 76 + .../psy/psysh/src/Readline/Transient.php | 147 + .../Reflection/ReflectionClassConstant.php | 228 + .../src/Reflection/ReflectionConstant.php | 30 + .../src/Reflection/ReflectionConstant_.php | 182 + .../ReflectionLanguageConstruct.php | 164 + .../ReflectionLanguageConstructParameter.php | 103 + .../src/Reflection/ReflectionNamespace.php | 60 + app/vendor/psy/psysh/src/Shell.php | 1526 ++++ app/vendor/psy/psysh/src/Sudo.php | 182 + app/vendor/psy/psysh/src/Sudo/SudoVisitor.php | 123 + app/vendor/psy/psysh/src/SuperglobalsEnv.php | 32 + .../psysh/src/TabCompletion/AutoCompleter.php | 110 + .../Matcher/AbstractContextAwareMatcher.php | 65 + .../AbstractDefaultParametersMatcher.php | 76 + .../TabCompletion/Matcher/AbstractMatcher.php | 196 + .../Matcher/ClassAttributesMatcher.php | 87 + .../ClassMethodDefaultParametersMatcher.php | 64 + .../Matcher/ClassMethodsMatcher.php | 84 + .../Matcher/ClassNamesMatcher.php | 77 + .../TabCompletion/Matcher/CommandsMatcher.php | 114 + .../Matcher/ConstantsMatcher.php | 54 + .../FunctionDefaultParametersMatcher.php | 53 + .../Matcher/FunctionsMatcher.php | 56 + .../TabCompletion/Matcher/KeywordsMatcher.php | 85 + .../Matcher/MongoClientMatcher.php | 71 + .../Matcher/MongoDatabaseMatcher.php | 67 + .../Matcher/ObjectAttributesMatcher.php | 78 + .../ObjectMethodDefaultParametersMatcher.php | 71 + .../Matcher/ObjectMethodsMatcher.php | 80 + .../Matcher/VariablesMatcher.php | 51 + app/vendor/psy/psysh/src/Util/Docblock.php | 246 + app/vendor/psy/psysh/src/Util/Json.php | 33 + app/vendor/psy/psysh/src/Util/Mirror.php | 150 + app/vendor/psy/psysh/src/Util/Str.php | 114 + app/vendor/psy/psysh/src/VarDumper/Cloner.php | 42 + app/vendor/psy/psysh/src/VarDumper/Dumper.php | 109 + .../psy/psysh/src/VarDumper/Presenter.php | 137 + .../psysh/src/VarDumper/PresenterAware.php | 26 + .../psy/psysh/src/VersionUpdater/Checker.php | 31 + .../src/VersionUpdater/GitHubChecker.php | 93 + .../src/VersionUpdater/IntervalChecker.php | 67 + .../psysh/src/VersionUpdater/NoopChecker.php | 36 + app/vendor/psy/psysh/src/functions.php | 449 ++ app/vendor/react/promise/CHANGELOG.md | 162 + app/vendor/react/promise/LICENSE | 22 + app/vendor/react/promise/README.md | 876 +++ app/vendor/react/promise/composer.json | 29 + .../src/CancellablePromiseInterface.php | 17 + .../react/promise/src/CancellationQueue.php | 55 + app/vendor/react/promise/src/Deferred.php | 65 + .../promise/src/Exception/LengthException.php | 7 + .../promise/src/ExtendedPromiseInterface.php | 98 + .../react/promise/src/FulfilledPromise.php | 71 + app/vendor/react/promise/src/LazyPromise.php | 66 + app/vendor/react/promise/src/Promise.php | 256 + .../react/promise/src/PromiseInterface.php | 41 + .../react/promise/src/PromisorInterface.php | 13 + .../react/promise/src/RejectedPromise.php | 79 + .../src/UnhandledRejectionException.php | 31 + app/vendor/react/promise/src/functions.php | 351 + .../react/promise/src/functions_include.php | 5 + app/vendor/robmorgan/phinx/.stickler.yml | 12 + app/vendor/robmorgan/phinx/LICENSE | 9 + app/vendor/robmorgan/phinx/README.md | 143 + app/vendor/robmorgan/phinx/app/phinx.php | 36 + app/vendor/robmorgan/phinx/app/web.php | 83 + app/vendor/robmorgan/phinx/bin/phinx | 28 + app/vendor/robmorgan/phinx/bin/phinx.bat | 41 + app/vendor/robmorgan/phinx/composer.json | 69 + .../robmorgan/phinx/data/phinx.json.dist | 38 + .../robmorgan/phinx/data/phinx.php.dist | 41 + .../robmorgan/phinx/data/phinx.yml.dist | 35 + .../robmorgan/phinx/docs/config/__init__.py | 0 app/vendor/robmorgan/phinx/docs/config/all.py | 43 + .../robmorgan/phinx/docs/en/commands.rst | 411 ++ app/vendor/robmorgan/phinx/docs/en/conf.py | 9 + .../robmorgan/phinx/docs/en/configuration.rst | 442 ++ .../robmorgan/phinx/docs/en/contents.rst | 15 + .../robmorgan/phinx/docs/en/copyright.rst | 29 + app/vendor/robmorgan/phinx/docs/en/goals.rst | 13 + app/vendor/robmorgan/phinx/docs/en/index.rst | 26 + .../robmorgan/phinx/docs/en/install.rst | 28 + app/vendor/robmorgan/phinx/docs/en/intro.rst | 16 + .../robmorgan/phinx/docs/en/migrations.rst | 1874 +++++ .../robmorgan/phinx/docs/en/namespaces.rst | 152 + .../robmorgan/phinx/docs/en/seeding.rst | 267 + .../robmorgan/phinx/docs/es/commands.rst | 292 + app/vendor/robmorgan/phinx/docs/es/conf.py | 9 + .../robmorgan/phinx/docs/es/contents.rst | 8 + .../robmorgan/phinx/docs/fr/commands.rst | 339 + app/vendor/robmorgan/phinx/docs/fr/conf.py | 9 + .../robmorgan/phinx/docs/fr/configuration.rst | 308 + .../robmorgan/phinx/docs/fr/contents.rst | 11 + app/vendor/robmorgan/phinx/docs/fr/index.rst | 57 + .../robmorgan/phinx/docs/fr/migrations.rst | 1305 ++++ .../robmorgan/phinx/docs/fr/seeding.rst | 217 + .../robmorgan/phinx/docs/ja/commands.rst | 338 + app/vendor/robmorgan/phinx/docs/ja/conf.py | 9 + .../robmorgan/phinx/docs/ja/configuration.rst | 305 + .../robmorgan/phinx/docs/ja/contents.rst | 12 + app/vendor/robmorgan/phinx/docs/ja/index.rst | 60 + .../robmorgan/phinx/docs/ja/migrations.rst | 1293 ++++ .../robmorgan/phinx/docs/ja/seeding.rst | 214 + .../phinx/src/Phinx/Config/Config.php | 553 ++ .../src/Phinx/Config/ConfigInterface.php | 161 + .../Phinx/Config/NamespaceAwareInterface.php | 35 + .../src/Phinx/Config/NamespaceAwareTrait.php | 77 + .../Phinx/Console/Command/AbstractCommand.php | 406 ++ .../src/Phinx/Console/Command/Breakpoint.php | 108 + .../src/Phinx/Console/Command/Create.php | 317 + .../phinx/src/Phinx/Console/Command/Init.php | 174 + .../src/Phinx/Console/Command/ListAliases.php | 78 + .../src/Phinx/Console/Command/Migrate.php | 141 + .../src/Phinx/Console/Command/Rollback.php | 172 + .../src/Phinx/Console/Command/SeedCreate.php | 210 + .../src/Phinx/Console/Command/SeedRun.php | 118 + .../src/Phinx/Console/Command/Status.php | 91 + .../phinx/src/Phinx/Console/Command/Test.php | 100 + .../src/Phinx/Console/PhinxApplication.php | 71 + .../phinx/src/Phinx/Db/Action/Action.php | 38 + .../phinx/src/Phinx/Db/Action/AddColumn.php | 63 + .../src/Phinx/Db/Action/AddForeignKey.php | 79 + .../phinx/src/Phinx/Db/Action/AddIndex.php | 72 + .../src/Phinx/Db/Action/ChangeColumn.php | 88 + .../src/Phinx/Db/Action/ChangeComment.php | 42 + .../src/Phinx/Db/Action/ChangePrimaryKey.php | 42 + .../phinx/src/Phinx/Db/Action/CreateTable.php | 12 + .../src/Phinx/Db/Action/DropForeignKey.php | 69 + .../phinx/src/Phinx/Db/Action/DropIndex.php | 77 + .../phinx/src/Phinx/Db/Action/DropTable.php | 12 + .../src/Phinx/Db/Action/RemoveColumn.php | 60 + .../src/Phinx/Db/Action/RenameColumn.php | 80 + .../phinx/src/Phinx/Db/Action/RenameTable.php | 42 + .../src/Phinx/Db/Adapter/AbstractAdapter.php | 421 ++ .../src/Phinx/Db/Adapter/AdapterFactory.php | 180 + .../src/Phinx/Db/Adapter/AdapterInterface.php | 538 ++ .../src/Phinx/Db/Adapter/AdapterWrapper.php | 494 ++ .../Db/Adapter/DirectActionInterface.php | 152 + .../src/Phinx/Db/Adapter/MysqlAdapter.php | 1499 ++++ .../phinx/src/Phinx/Db/Adapter/PdoAdapter.php | 997 +++ .../src/Phinx/Db/Adapter/PostgresAdapter.php | 1528 ++++ .../src/Phinx/Db/Adapter/ProxyAdapter.php | 124 + .../src/Phinx/Db/Adapter/SQLiteAdapter.php | 1662 +++++ .../src/Phinx/Db/Adapter/SqlServerAdapter.php | 1372 ++++ .../Phinx/Db/Adapter/TablePrefixAdapter.php | 497 ++ .../Phinx/Db/Adapter/TimedOutputAdapter.php | 437 ++ .../UnsupportedColumnTypeException.php | 19 + .../src/Phinx/Db/Adapter/WrapperInterface.php | 41 + .../phinx/src/Phinx/Db/Plan/AlterTable.php | 73 + .../phinx/src/Phinx/Db/Plan/Intent.php | 57 + .../phinx/src/Phinx/Db/Plan/NewTable.php | 103 + .../phinx/src/Phinx/Db/Plan/Plan.php | 516 ++ .../Phinx/Db/Plan/Solver/ActionSplitter.php | 104 + .../robmorgan/phinx/src/Phinx/Db/Table.php | 724 ++ .../phinx/src/Phinx/Db/Table/Column.php | 777 ++ .../phinx/src/Phinx/Db/Table/ForeignKey.php | 244 + .../phinx/src/Phinx/Db/Table/Index.php | 233 + .../phinx/src/Phinx/Db/Table/Table.php | 85 + .../src/Phinx/Db/Util/AlterInstructions.php | 126 + .../src/Phinx/Migration/AbstractMigration.php | 340 + .../Migration/AbstractTemplateCreation.php | 74 + .../src/Phinx/Migration/CreationInterface.php | 72 + .../IrreversibleMigrationException.php | 20 + .../phinx/src/Phinx/Migration/Manager.php | 1092 +++ .../Phinx/Migration/Manager/Environment.php | 408 ++ .../Migration/Migration.template.php.dist | 23 + .../Phinx/Migration/MigrationInterface.php | 262 + .../phinx/src/Phinx/Seed/AbstractSeed.php | 187 + .../src/Phinx/Seed/Seed.template.php.dist | 20 + .../phinx/src/Phinx/Seed/SeedInterface.php | 164 + .../phinx/src/Phinx/Util/Expression.php | 42 + .../phinx/src/Phinx/Util/Literal.php | 42 + .../robmorgan/phinx/src/Phinx/Util/Util.php | 371 + .../phinx/src/Phinx/Wrapper/TextWrapper.php | 248 + .../phinx/src/composer_autoloader.php | 23 + app/vendor/sebastian/cli-parser/ChangeLog.md | 15 + app/vendor/sebastian/cli-parser/LICENSE | 33 + app/vendor/sebastian/cli-parser/README.md | 17 + app/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 + app/vendor/sebastian/code-unit/ChangeLog.md | 65 + app/vendor/sebastian/code-unit/LICENSE | 33 + app/vendor/sebastian/code-unit/README.md | 17 + app/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 + app/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 + app/vendor/sebastian/comparator/ChangeLog.md | 108 + app/vendor/sebastian/comparator/LICENSE | 33 + app/vendor/sebastian/comparator/README.md | 41 + app/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 | 59 + .../comparator/src/ExceptionComparator.php | 54 + .../sebastian/comparator/src/Factory.php | 142 + .../comparator/src/MockObjectComparator.php | 48 + .../comparator/src/NumericComparator.php | 86 + .../comparator/src/ObjectComparator.php | 112 + .../comparator/src/ResourceComparator.php | 54 + .../comparator/src/ScalarComparator.php | 98 + .../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 + app/vendor/sebastian/complexity/ChangeLog.md | 30 + app/vendor/sebastian/complexity/LICENSE | 33 + app/vendor/sebastian/complexity/README.md | 22 + app/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 + app/vendor/sebastian/diff/ChangeLog.md | 88 + app/vendor/sebastian/diff/LICENSE | 33 + app/vendor/sebastian/diff/README.md | 202 + app/vendor/sebastian/diff/composer.json | 47 + app/vendor/sebastian/diff/src/Chunk.php | 89 + app/vendor/sebastian/diff/src/Diff.php | 64 + app/vendor/sebastian/diff/src/Differ.php | 327 + .../src/Exception/ConfigurationException.php | 38 + .../diff/src/Exception/Exception.php | 16 + .../Exception/InvalidArgumentException.php | 14 + app/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 + app/vendor/sebastian/diff/src/Parser.php | 110 + ...ientLongestCommonSubsequenceCalculator.php | 70 + app/vendor/sebastian/environment/ChangeLog.md | 169 + app/vendor/sebastian/environment/LICENSE | 33 + app/vendor/sebastian/environment/README.md | 22 + .../sebastian/environment/composer.json | 40 + .../sebastian/environment/src/Console.php | 189 + .../environment/src/OperatingSystem.php | 53 + .../sebastian/environment/src/Runtime.php | 317 + app/vendor/sebastian/exporter/ChangeLog.md | 43 + app/vendor/sebastian/exporter/LICENSE | 33 + app/vendor/sebastian/exporter/README.md | 174 + app/vendor/sebastian/exporter/composer.json | 56 + .../sebastian/exporter/src/Exporter.php | 325 + .../sebastian/global-state/ChangeLog.md | 51 + app/vendor/sebastian/global-state/LICENSE | 33 + app/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 | 435 ++ .../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 + app/vendor/sebastian/lines-of-code/LICENSE | 33 + app/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 + app/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 ++++++ app/vendor/sebastian/type/ChangeLog.md | 123 + app/vendor/sebastian/type/LICENSE | 33 + app/vendor/sebastian/type/README.md | 20 + app/vendor/sebastian/type/composer.json | 49 + .../sebastian/type/src/CallableType.php | 197 + app/vendor/sebastian/type/src/FalseType.php | 46 + .../sebastian/type/src/GenericObjectType.php | 46 + .../sebastian/type/src/IterableType.php | 76 + app/vendor/sebastian/type/src/MixedType.php | 33 + app/vendor/sebastian/type/src/NullType.php | 43 + app/vendor/sebastian/type/src/ObjectType.php | 66 + .../sebastian/type/src/ReflectionMapper.php | 123 + app/vendor/sebastian/type/src/SimpleType.php | 92 + app/vendor/sebastian/type/src/StaticType.php | 60 + app/vendor/sebastian/type/src/Type.php | 101 + app/vendor/sebastian/type/src/TypeName.php | 113 + app/vendor/sebastian/type/src/UnionType.php | 115 + app/vendor/sebastian/type/src/UnknownType.php | 43 + app/vendor/sebastian/type/src/VoidType.php | 28 + .../type/src/exception/Exception.php | 16 + .../type/src/exception/LogicException.php | 14 + .../type/src/exception/RuntimeException.php | 14 + app/vendor/sebastian/version/.gitattributes | 4 + app/vendor/sebastian/version/.gitignore | 2 + app/vendor/sebastian/version/ChangeLog.md | 25 + app/vendor/sebastian/version/LICENSE | 33 + app/vendor/sebastian/version/README.md | 43 + app/vendor/sebastian/version/composer.json | 37 + app/vendor/sebastian/version/src/Version.php | 97 + app/vendor/seld/jsonlint/CHANGELOG.md | 80 + app/vendor/seld/jsonlint/LICENSE | 19 + app/vendor/seld/jsonlint/README.md | 94 + app/vendor/seld/jsonlint/bin/jsonlint | 117 + app/vendor/seld/jsonlint/composer.json | 24 + .../Seld/JsonLint/DuplicateKeyException.php | 39 + .../jsonlint/src/Seld/JsonLint/JsonParser.php | 507 ++ .../seld/jsonlint/src/Seld/JsonLint/Lexer.php | 233 + .../src/Seld/JsonLint/ParsingException.php | 35 + .../jsonlint/src/Seld/JsonLint/Undefined.php | 16 + app/vendor/seld/phar-utils/.gitignore | 1 + app/vendor/seld/phar-utils/LICENSE | 19 + app/vendor/seld/phar-utils/README.md | 45 + app/vendor/seld/phar-utils/composer.json | 26 + app/vendor/seld/phar-utils/composer.lock | 19 + app/vendor/seld/phar-utils/src/Linter.php | 110 + app/vendor/seld/phar-utils/src/Timestamps.php | 192 + .../slevomat/coding-standard/.editorconfig | 14 + .../coding-standard/CODE_OF_CONDUCT.md | 74 + .../slevomat/coding-standard/LICENSE.md | 8 + app/vendor/slevomat/coding-standard/README.md | 1348 ++++ .../Helpers/Annotation/Annotation.php | 72 + .../Helpers/Annotation/ExtendsAnnotation.php | 75 + .../Helpers/Annotation/GenericAnnotation.php | 48 + .../Annotation/ImplementsAnnotation.php | 75 + .../Helpers/Annotation/MethodAnnotation.php | 121 + .../Helpers/Annotation/MixinAnnotation.php | 81 + .../Annotation/ParameterAnnotation.php | 103 + .../Helpers/Annotation/PropertyAnnotation.php | 99 + .../Helpers/Annotation/ReturnAnnotation.php | 90 + .../Helpers/Annotation/TemplateAnnotation.php | 90 + .../Helpers/Annotation/ThrowsAnnotation.php | 82 + .../Helpers/Annotation/UseAnnotation.php | 75 + .../Helpers/Annotation/VariableAnnotation.php | 102 + .../AnnotationConstantExpressionHelper.php | 74 + .../Helpers/AnnotationHelper.php | 548 ++ .../Helpers/AnnotationTypeHelper.php | 721 ++ .../Helpers/CatchHelper.php | 58 + .../Helpers/ClassHelper.php | 120 + .../Helpers/Comment.php | 33 + .../Helpers/CommentHelper.php | 85 + .../Helpers/ConditionHelper.php | 297 + .../Helpers/ConstantHelper.php | 79 + .../Helpers/DocCommentHelper.php | 161 + .../Helpers/EmptyFileException.php | 30 + .../Helpers/FixerHelper.php | 41 + .../Helpers/FunctionHelper.php | 474 ++ .../Helpers/IdentificatorHelper.php | 208 + .../Helpers/IndentationHelper.php | 109 + .../Helpers/NamespaceHelper.php | 190 + .../Helpers/ParameterHelper.php | 34 + .../Helpers/ParameterTypeHint.php | 42 + .../Helpers/PropertyHelper.php | 120 + .../Helpers/PropertyTypeHint.php | 51 + .../Helpers/ReferencedName.php | 75 + .../Helpers/ReferencedNameHelper.php | 326 + .../Helpers/ReturnTypeHint.php | 51 + .../Helpers/ScopeHelper.php | 66 + .../Helpers/SniffLocalCache.php | 52 + .../Helpers/SniffSettingsHelper.php | 80 + .../Helpers/StringHelper.php | 22 + .../Helpers/SuppressHelper.php | 33 + .../Helpers/TokenHelper.php | 542 ++ .../TokenPointerOutOfBoundsException.php | 44 + .../Helpers/TypeHelper.php | 36 + .../Helpers/TypeHintHelper.php | 221 + .../Helpers/UseStatement.php | 130 + .../Helpers/UseStatementHelper.php | 212 + .../Helpers/VariableHelper.php | 168 + .../Helpers/YodaHelper.php | 355 + .../DisallowImplicitArrayCreationSniff.php | 266 + ...MultiLineArrayEndBracketPlacementSniff.php | 59 + .../Arrays/SingleLineArrayWhitespaceSniff.php | 234 + .../Sniffs/Arrays/TrailingArrayCommaSniff.php | 83 + .../Classes/AbstractMethodSignature.php | 71 + .../AbstractPropertyAndConstantSpacing.php | 125 + .../Classes/ClassConstantVisibilitySniff.php | 81 + .../Classes/ClassMemberSpacingSniff.php | 258 + .../Sniffs/Classes/ClassStructureSniff.php | 679 ++ .../Sniffs/Classes/ConstantSpacingSniff.php | 81 + ...llowLateStaticBindingForConstantsSniff.php | 72 + .../DisallowMultiConstantDefinitionSniff.php | 133 + .../DisallowMultiPropertyDefinitionSniff.php | 164 + .../EmptyLinesAroundClassBracesSniff.php | 160 + .../Sniffs/Classes/MethodSpacingSniff.php | 135 + .../Classes/MissingClassGroupsException.php | 23 + .../Classes/ModernClassNameReferenceSniff.php | 166 + .../Sniffs/Classes/ParentCallSpacingSniff.php | 119 + .../Sniffs/Classes/PropertySpacingSniff.php | 78 + .../RequireMultiLineMethodSignatureSniff.php | 163 + .../RequireSingleLineMethodSignatureSniff.php | 135 + .../SuperfluousAbstractClassNamingSniff.php | 71 + .../Classes/SuperfluousErrorNamingSniff.php | 56 + .../SuperfluousExceptionNamingSniff.php | 56 + .../SuperfluousInterfaceNamingSniff.php | 64 + .../Classes/SuperfluousTraitNamingSniff.php | 51 + .../Classes/TraitUseDeclarationSniff.php | 101 + .../Sniffs/Classes/TraitUseSpacingSniff.php | 300 + .../UnsupportedClassGroupException.php | 16 + .../Classes/UnusedPrivateElementsSniff.php | 702 ++ .../Classes/UselessLateStaticBindingSniff.php | 76 + .../AbstractRequireOneLineDocComment.php | 140 + .../DeprecatedAnnotationDeclarationSniff.php | 50 + .../DisallowCommentAfterCodeSniff.php | 114 + ...DisallowOneLinePropertyDocCommentSniff.php | 109 + .../Commenting/DocCommentSpacingSniff.php | 772 ++ .../Sniffs/Commenting/EmptyCommentSniff.php | 201 + .../Commenting/ForbiddenAnnotationsSniff.php | 137 + .../Commenting/ForbiddenCommentsSniff.php | 130 + .../InlineDocCommentDeclarationSniff.php | 450 ++ .../RequireOneLineDocCommentSniff.php | 19 + .../RequireOneLinePropertyDocCommentSniff.php | 62 + .../UselessFunctionDocCommentSniff.php | 157 + .../UselessInheritDocCommentSniff.php | 106 + .../AbstractControlStructureSpacing.php | 440 ++ .../AbstractLineCondition.php | 118 + .../AssignmentInConditionSniff.php | 106 + .../BlockControlStructureSpacingSniff.php | 123 + ...inueWithoutIntegerOperandInSwitchSniff.php | 64 + .../ControlStructures/DisallowEmptySniff.php | 34 + .../DisallowShortTernaryOperatorSniff.php | 73 + .../DisallowYodaComparisonSniff.php | 89 + .../ControlStructures/EarlyExitSniff.php | 490 ++ .../JumpStatementsSpacingSniff.php | 248 + .../LanguageConstructWithParenthesesSniff.php | 103 + .../NewWithParenthesesSniff.php | 105 + .../NewWithoutParenthesesSniff.php | 103 + .../RequireMultiLineConditionSniff.php | 191 + .../RequireMultiLineTernaryOperatorSniff.php | 196 + .../RequireNullCoalesceEqualOperatorSniff.php | 100 + .../RequireNullCoalesceOperatorSniff.php | 256 + .../RequireShortTernaryOperatorSniff.php | 165 + .../RequireSingleLineConditionSniff.php | 107 + .../RequireTernaryOperatorSniff.php | 284 + .../RequireYodaComparisonSniff.php | 75 + .../UnsupportedTokenException.php | 16 + .../UselessIfConditionWithReturnSniff.php | 214 + .../UselessTernaryOperatorSniff.php | 130 + .../Sniffs/Exceptions/DeadCatchSniff.php | 57 + .../ReferenceThrowableOnlySniff.php | 142 + .../Files/FilepathNamespaceExtractor.php | 88 + .../Sniffs/Files/LineLengthSniff.php | 137 + .../Files/TypeNameMatchesFileNameSniff.php | 196 + .../Sniffs/Functions/AbstractLineCall.php | 73 + .../ArrowFunctionDeclarationSniff.php | 171 + .../Functions/DisallowArrowFunctionSniff.php | 34 + .../Functions/DisallowEmptyFunctionSniff.php | 56 + .../Functions/RequireArrowFunctionSniff.php | 160 + .../Functions/RequireMultiLineCallSniff.php | 240 + .../Functions/RequireSingleLineCallSniff.php | 177 + .../Sniffs/Functions/StaticClosureSniff.php | 110 + .../Sniffs/Functions/StrictCallSniff.php | 128 + .../Functions/TrailingCommaInCallSniff.php | 105 + ...dInheritedVariablePassedToClosureSniff.php | 153 + .../Sniffs/Functions/UnusedParameterSniff.php | 75 + .../UselessParameterDefaultValueSniff.php | 89 + .../AbstractFullyQualifiedGlobalReference.php | 168 + .../AlphabeticallySortedUsesSniff.php | 168 + .../Namespaces/DisallowGroupUseSniff.php | 38 + ...llyQualifiedClassNameAfterKeywordSniff.php | 162 + ...llyQualifiedClassNameInAnnotationSniff.php | 147 + .../FullyQualifiedExceptionsSniff.php | 165 + .../FullyQualifiedGlobalConstantsSniff.php | 26 + .../FullyQualifiedGlobalFunctionsSniff.php | 45 + .../Namespaces/MultipleUsesPerLineSniff.php | 52 + .../Namespaces/NamespaceDeclarationSniff.php | 147 + .../Namespaces/NamespaceSpacingSniff.php | 163 + .../ReferenceUsedNamesOnlySniff.php | 735 ++ .../RequireOneNamespaceInFileSniff.php | 59 + .../UndefinedKeywordTokenException.php | 30 + .../Sniffs/Namespaces/UnusedUsesSniff.php | 380 + .../UseDoesNotStartWithBackslashSniff.php | 78 + .../Namespaces/UseFromSameNamespaceSniff.php | 93 + .../UseOnlyWhitelistedNamespacesSniff.php | 82 + .../Sniffs/Namespaces/UseSpacingSniff.php | 349 + .../Sniffs/Namespaces/UselessAliasSniff.php | 83 + .../DisallowNumericLiteralSeparatorSniff.php | 56 + .../RequireNumericLiteralSeparatorSniff.php | 71 + .../Operators/DisallowEqualOperatorsSniff.php | 61 + ...lowIncrementAndDecrementOperatorsSniff.php | 66 + .../NegationOperatorSpacingSniff.php | 109 + ...RequireCombinedAssignmentOperatorSniff.php | 122 + ...oneIncrementAndDecrementOperatorsSniff.php | 119 + .../Operators/SpreadOperatorSpacingSniff.php | 75 + .../DisallowDirectMagicInvokeCallSniff.php | 69 + .../Sniffs/PHP/DisallowReferenceSniff.php | 100 + .../Sniffs/PHP/ForbiddenClassesSniff.php | 280 + ...ptimizedFunctionsWithoutUnpackingSniff.php | 110 + .../Sniffs/PHP/ReferenceSpacingSniff.php | 132 + .../PHP/RequireExplicitAssertionSniff.php | 367 + .../Sniffs/PHP/RequireNowdocSniff.php | 72 + .../Sniffs/PHP/ShortListSniff.php | 52 + .../Sniffs/PHP/TypeCastSniff.php | 117 + .../Sniffs/PHP/UselessParenthesesSniff.php | 579 ++ .../Sniffs/PHP/UselessSemicolonSniff.php | 159 + .../Sniffs/TestCase.php | 200 + .../TypeHints/DeclareStrictTypesSniff.php | 255 + .../DisallowArrayTypeHintSyntaxSniff.php | 271 + .../TypeHints/DisallowMixedTypeHintSniff.php | 83 + .../Sniffs/TypeHints/LongTypeHintsSniff.php | 98 + .../NullTypeHintOnLastPositionSniff.php | 120 + .../NullableTypeForNullDefaultValueSniff.php | 113 + .../TypeHints/ParameterTypeHintSniff.php | 502 ++ .../ParameterTypeHintSpacingSniff.php | 151 + .../TypeHints/PropertyTypeHintSniff.php | 552 ++ .../PropertyTypeHintSpacingSniff.php | 166 + .../Sniffs/TypeHints/ReturnTypeHintSniff.php | 562 ++ .../TypeHints/ReturnTypeHintSpacingSniff.php | 180 + .../UselessConstantTypeHintSniff.php | 90 + .../DisallowSuperGlobalVariableSniff.php | 53 + .../DuplicateAssignmentToVariableSniff.php | 71 + .../Sniffs/Variables/UnusedVariableSniff.php | 683 ++ .../Sniffs/Variables/UselessVariableSniff.php | 396 + .../Whitespaces/DuplicateSpacesSniff.php | 162 + .../SlevomatCodingStandard/ruleset.xml | 4 + .../coding-standard/autoload-bootstrap.php | 11 + .../slevomat/coding-standard/composer.json | 45 + .../squizlabs/php_codesniffer/.cspell.json | 72 + .../squizlabs/php_codesniffer/.gitattributes | 9 + .../.github/ISSUE_TEMPLATE/bug_report.md | 45 + .../squizlabs/php_codesniffer/.gitignore | 6 + .../squizlabs/php_codesniffer/CONTRIBUTING.md | 13 + .../php_codesniffer/CodeSniffer.conf.dist | 9 + .../squizlabs/php_codesniffer/README.md | 130 + .../squizlabs/php_codesniffer/autoload.php | 339 + .../squizlabs/php_codesniffer/bin/phpcbf | 19 + .../squizlabs/php_codesniffer/bin/phpcbf.bat | 12 + .../squizlabs/php_codesniffer/bin/phpcs | 19 + .../squizlabs/php_codesniffer/bin/phpcs.bat | 12 + .../squizlabs/php_codesniffer/composer.json | 40 + .../squizlabs/php_codesniffer/licence.txt | 24 + .../squizlabs/php_codesniffer/phpcs.xml.dist | 154 + .../squizlabs/php_codesniffer/phpcs.xsd | 136 + .../squizlabs/php_codesniffer/phpstan.neon | 16 + .../ValidatePEAR/ValidatePEARPackageXML.php | 362 + .../php_codesniffer/scripts/build-phar.php | 96 + .../scripts/validate-pear-package.php | 19 + .../squizlabs/php_codesniffer/src/Config.php | 1703 +++++ .../src/Exceptions/DeepExitException.php | 18 + .../src/Exceptions/RuntimeException.php | 15 + .../src/Exceptions/TokenizerException.php | 15 + .../php_codesniffer/src/Files/DummyFile.php | 82 + .../php_codesniffer/src/Files/File.php | 2632 +++++++ .../php_codesniffer/src/Files/FileList.php | 248 + .../php_codesniffer/src/Files/LocalFile.php | 218 + .../src/Filters/ExactMatch.php | 108 + .../php_codesniffer/src/Filters/Filter.php | 282 + .../src/Filters/GitModified.php | 66 + .../php_codesniffer/src/Filters/GitStaged.php | 68 + .../squizlabs/php_codesniffer/src/Fixer.php | 798 ++ .../src/Generators/Generator.php | 117 + .../php_codesniffer/src/Generators/HTML.php | 270 + .../src/Generators/Markdown.php | 161 + .../php_codesniffer/src/Generators/Text.php | 253 + .../php_codesniffer/src/Reporter.php | 423 ++ .../php_codesniffer/src/Reports/Cbf.php | 250 + .../src/Reports/Checkstyle.php | 109 + .../php_codesniffer/src/Reports/Code.php | 362 + .../php_codesniffer/src/Reports/Csv.php | 91 + .../php_codesniffer/src/Reports/Diff.php | 130 + .../php_codesniffer/src/Reports/Emacs.php | 90 + .../php_codesniffer/src/Reports/Full.php | 231 + .../php_codesniffer/src/Reports/Gitblame.php | 91 + .../php_codesniffer/src/Reports/Hgblame.php | 110 + .../php_codesniffer/src/Reports/Info.php | 172 + .../php_codesniffer/src/Reports/Json.php | 106 + .../php_codesniffer/src/Reports/Junit.php | 131 + .../src/Reports/Notifysend.php | 241 + .../php_codesniffer/src/Reports/Report.php | 64 + .../php_codesniffer/src/Reports/Source.php | 336 + .../php_codesniffer/src/Reports/Summary.php | 183 + .../php_codesniffer/src/Reports/Svnblame.php | 73 + .../src/Reports/VersionControl.php | 376 + .../php_codesniffer/src/Reports/Xml.php | 126 + .../squizlabs/php_codesniffer/src/Ruleset.php | 1383 ++++ .../squizlabs/php_codesniffer/src/Runner.php | 889 +++ .../src/Sniffs/AbstractArraySniff.php | 172 + .../src/Sniffs/AbstractPatternSniff.php | 936 +++ .../src/Sniffs/AbstractScopeSniff.php | 191 + .../src/Sniffs/AbstractVariableSniff.php | 230 + .../php_codesniffer/src/Sniffs/Sniff.php | 80 + .../DisallowLongArraySyntaxStandard.xml | 23 + .../DisallowShortArraySyntaxStandard.xml | 23 + .../Classes/DuplicateClassNameStandard.xml | 27 + .../Classes/OpeningBraceSameLineStandard.xml | 28 + .../AssignmentInConditionStandard.xml | 23 + .../CodeAnalysis/EmptyStatementStandard.xml | 23 + .../ForLoopShouldBeWhileLoopStandard.xml | 23 + .../ForLoopWithTestFunctionCallStandard.xml | 24 + .../JumbledIncrementerStandard.xml | 25 + .../UnconditionalIfStatementStandard.xml | 39 + .../UnnecessaryFinalModifierStandard.xml | 29 + .../UnusedFunctionParameterStandard.xml | 25 + .../UselessOverridingMethodStandard.xml | 32 + .../Generic/Docs/Commenting/FixmeStandard.xml | 25 + .../Generic/Docs/Commenting/TodoStandard.xml | 25 + .../DisallowYodaConditionsStandard.xml | 23 + .../InlineControlStructureStandard.xml | 22 + .../Generic/Docs/Debug/CSSLintStandard.xml | 19 + .../Docs/Debug/ClosureLinterStandard.xml | 19 + .../Generic/Docs/Debug/JSHintStandard.xml | 19 + .../Docs/Files/ByteOrderMarkStandard.xml | 7 + .../Docs/Files/EndFileNewlineStandard.xml | 7 + .../Docs/Files/EndFileNoNewlineStandard.xml | 7 + .../Docs/Files/ExecutableFileStandard.xml | 7 + .../Generic/Docs/Files/InlineHTMLStandard.xml | 24 + .../Docs/Files/LineEndingsStandard.xml | 7 + .../Generic/Docs/Files/LineLengthStandard.xml | 7 + .../Docs/Files/LowercasedFilenameStandard.xml | 7 + .../Docs/Files/OneClassPerFileStandard.xml | 29 + .../Files/OneInterfacePerFileStandard.xml | 29 + .../OneObjectStructurePerFileStandard.xml | 29 + .../Docs/Files/OneTraitPerFileStandard.xml | 29 + .../DisallowMultipleStatementsStandard.xml | 20 + .../MultipleStatementAlignmentStandard.xml | 56 + .../Formatting/NoSpaceAfterCastStandard.xml | 19 + .../Formatting/SpaceAfterCastStandard.xml | 19 + .../Docs/Formatting/SpaceAfterNotStandard.xml | 25 + .../CallTimePassByReferenceStandard.xml | 31 + .../FunctionCallArgumentSpacingStandard.xml | 39 + .../OpeningFunctionBraceBsdAllmanStandard.xml | 24 + ...gFunctionBraceKernighanRitchieStandard.xml | 24 + .../Metrics/CyclomaticComplexityStandard.xml | 7 + .../Docs/Metrics/NestingLevelStandard.xml | 7 + .../CamelCapsFunctionNameStandard.xml | 23 + .../ConstructorNameStandard.xml | 29 + .../UpperCaseConstantNameStandard.xml | 29 + .../Docs/PHP/BacktickOperatorStandard.xml | 7 + .../CharacterBeforePHPOpeningTagStandard.xml | 22 + .../Docs/PHP/ClosingPHPTagStandard.xml | 22 + .../Docs/PHP/DeprecatedFunctionsStandard.xml | 19 + .../DisallowAlternativePHPTagsStandard.xml | 7 + .../DisallowRequestSuperglobalStandard.xml | 7 + .../Docs/PHP/DisallowShortOpenTagStandard.xml | 7 + .../Docs/PHP/DiscourageGotoStandard.xml | 7 + .../Docs/PHP/ForbiddenFunctionsStandard.xml | 19 + .../Docs/PHP/LowerCaseConstantStandard.xml | 23 + .../Docs/PHP/LowerCaseKeywordStandard.xml | 19 + .../Docs/PHP/LowerCaseTypeStandard.xml | 38 + .../Docs/PHP/NoSilencedErrorsStandard.xml | 23 + .../Generic/Docs/PHP/SAPIUsageStandard.xml | 23 + .../Docs/PHP/UpperCaseConstantStandard.xml | 23 + .../UnnecessaryStringConcatStandard.xml | 19 + .../SubversionPropertiesStandard.xml | 7 + .../ArbitraryParenthesesSpacingStandard.xml | 26 + .../DisallowSpaceIndentStandard.xml | 7 + .../WhiteSpace/DisallowTabIndentStandard.xml | 7 + .../Docs/WhiteSpace/ScopeIndentStandard.xml | 23 + .../SpreadOperatorSpacingAfterStandard.xml | 34 + .../Sniffs/Arrays/ArrayIndentSniff.php | 177 + .../Arrays/DisallowLongArraySyntaxSniff.php | 78 + .../Arrays/DisallowShortArraySyntaxSniff.php | 61 + .../Classes/DuplicateClassNameSniff.php | 117 + .../Classes/OpeningBraceSameLineSniff.php | 123 + .../AssignmentInConditionSniff.php | 170 + .../CodeAnalysis/EmptyPHPStatementSniff.php | 162 + .../CodeAnalysis/EmptyStatementSniff.php | 96 + .../ForLoopShouldBeWhileLoopSniff.php | 91 + .../ForLoopWithTestFunctionCallSniff.php | 101 + .../CodeAnalysis/JumbledIncrementerSniff.php | 134 + .../UnconditionalIfStatementSniff.php | 93 + .../UnnecessaryFinalModifierSniff.php | 85 + .../UnusedFunctionParameterSniff.php | 236 + .../UselessOverridingMethodSniff.php | 161 + .../Sniffs/Commenting/DocCommentSniff.php | 353 + .../Generic/Sniffs/Commenting/FixmeSniff.php | 78 + .../Generic/Sniffs/Commenting/TodoSniff.php | 77 + .../DisallowYodaConditionsSniff.php | 188 + .../InlineControlStructureSniff.php | 373 + .../Generic/Sniffs/Debug/CSSLintSniff.php | 95 + .../Sniffs/Debug/ClosureLinterSniff.php | 116 + .../Generic/Sniffs/Debug/ESLintSniff.php | 112 + .../Generic/Sniffs/Debug/JSHintSniff.php | 94 + .../Sniffs/Files/ByteOrderMarkSniff.php | 80 + .../Sniffs/Files/EndFileNewlineSniff.php | 81 + .../Sniffs/Files/EndFileNoNewlineSniff.php | 88 + .../Sniffs/Files/ExecutableFileSniff.php | 59 + .../Generic/Sniffs/Files/InlineHTMLSniff.php | 79 + .../Generic/Sniffs/Files/LineEndingsSniff.php | 145 + .../Generic/Sniffs/Files/LineLengthSniff.php | 201 + .../Sniffs/Files/LowercasedFilenameSniff.php | 67 + .../Sniffs/Files/OneClassPerFileSniff.php | 51 + .../Sniffs/Files/OneInterfacePerFileSniff.php | 51 + .../Files/OneObjectStructurePerFileSniff.php | 55 + .../Sniffs/Files/OneTraitPerFileSniff.php | 51 + .../DisallowMultipleStatementsSniff.php | 105 + .../MultipleStatementAlignmentSniff.php | 403 ++ .../Formatting/NoSpaceAfterCastSniff.php | 61 + .../Sniffs/Formatting/SpaceAfterCastSniff.php | 153 + .../Sniffs/Formatting/SpaceAfterNotSniff.php | 135 + .../Formatting/SpaceBeforeCastSniff.php | 73 + .../CallTimePassByReferenceSniff.php | 141 + .../FunctionCallArgumentSpacingSniff.php | 185 + .../OpeningFunctionBraceBsdAllmanSniff.php | 213 + ...ningFunctionBraceKernighanRitchieSniff.php | 184 + .../Metrics/CyclomaticComplexitySniff.php | 113 + .../Sniffs/Metrics/NestingLevelSniff.php | 100 + .../CamelCapsFunctionNameSniff.php | 223 + .../ConstructorNameSniff.php | 158 + .../UpperCaseConstantNameSniff.php | 141 + .../Sniffs/PHP/BacktickOperatorSniff.php | 48 + .../PHP/CharacterBeforePHPOpeningTagSniff.php | 86 + .../Generic/Sniffs/PHP/ClosingPHPTagSniff.php | 51 + .../Sniffs/PHP/DeprecatedFunctionsSniff.php | 73 + .../PHP/DisallowAlternativePHPTagsSniff.php | 253 + .../PHP/DisallowRequestSuperglobalSniff.php | 54 + .../Sniffs/PHP/DisallowShortOpenTagSniff.php | 168 + .../Sniffs/PHP/DiscourageGotoSniff.php | 50 + .../Sniffs/PHP/ForbiddenFunctionsSniff.php | 240 + .../Sniffs/PHP/LowerCaseConstantSniff.php | 83 + .../Sniffs/PHP/LowerCaseKeywordSniff.php | 142 + .../Generic/Sniffs/PHP/LowerCaseTypeSniff.php | 162 + .../Sniffs/PHP/NoSilencedErrorsSniff.php | 77 + .../Sniffs/PHP/RequireStrictTypesSniff.php | 69 + .../Generic/Sniffs/PHP/SAPIUsageSniff.php | 67 + .../Generic/Sniffs/PHP/SyntaxSniff.php | 71 + .../Sniffs/PHP/UpperCaseConstantSniff.php | 73 + .../Strings/UnnecessaryStringConcatSniff.php | 125 + .../VersionControl/GitMergeConflictSniff.php | 225 + .../SubversionPropertiesSniff.php | 186 + .../ArbitraryParenthesesSpacingSniff.php | 239 + .../WhiteSpace/DisallowSpaceIndentSniff.php | 217 + .../WhiteSpace/DisallowTabIndentSniff.php | 187 + .../IncrementDecrementSpacingSniff.php | 170 + .../LanguageConstructSpacingSniff.php | 146 + .../Sniffs/WhiteSpace/ScopeIndentSniff.php | 1528 ++++ .../SpreadOperatorSpacingAfterSniff.php | 146 + .../Tests/Arrays/ArrayIndentUnitTest.inc | 88 + .../Arrays/ArrayIndentUnitTest.inc.fixed | 89 + .../Tests/Arrays/ArrayIndentUnitTest.php | 66 + .../DisallowLongArraySyntaxUnitTest.1.inc | 28 + ...isallowLongArraySyntaxUnitTest.1.inc.fixed | 28 + .../DisallowLongArraySyntaxUnitTest.2.inc | 17 + ...isallowLongArraySyntaxUnitTest.2.inc.fixed | 17 + .../DisallowLongArraySyntaxUnitTest.php | 67 + .../DisallowShortArraySyntaxUnitTest.inc | 12 + ...DisallowShortArraySyntaxUnitTest.inc.fixed | 12 + .../DisallowShortArraySyntaxUnitTest.php | 53 + .../Classes/DuplicateClassNameUnitTest.1.inc | 11 + .../Classes/DuplicateClassNameUnitTest.2.inc | 5 + .../Classes/DuplicateClassNameUnitTest.3.inc | 10 + .../Classes/DuplicateClassNameUnitTest.4.inc | 5 + .../Classes/DuplicateClassNameUnitTest.5.inc | 8 + .../Classes/DuplicateClassNameUnitTest.6.inc | 12 + .../Classes/DuplicateClassNameUnitTest.php | 77 + .../Classes/OpeningBraceSameLineUnitTest.inc | 91 + .../OpeningBraceSameLineUnitTest.inc.fixed | 91 + .../Classes/OpeningBraceSameLineUnitTest.php | 61 + .../AssignmentInConditionUnitTest.inc | 93 + .../AssignmentInConditionUnitTest.php | 82 + .../EmptyPHPStatementUnitTest.inc | 81 + .../EmptyPHPStatementUnitTest.inc.fixed | 75 + .../EmptyPHPStatementUnitTest.php | 68 + .../CodeAnalysis/EmptyStatementUnitTest.inc | 72 + .../CodeAnalysis/EmptyStatementUnitTest.php | 62 + .../ForLoopShouldBeWhileLoopUnitTest.inc | 13 + .../ForLoopShouldBeWhileLoopUnitTest.php | 51 + .../ForLoopWithTestFunctionCallUnitTest.inc | 15 + .../ForLoopWithTestFunctionCallUnitTest.php | 51 + .../JumbledIncrementerUnitTest.inc | 25 + .../JumbledIncrementerUnitTest.php | 52 + .../UnconditionalIfStatementUnitTest.inc | 13 + .../UnconditionalIfStatementUnitTest.php | 52 + .../UnnecessaryFinalModifierUnitTest.inc | 29 + .../UnnecessaryFinalModifierUnitTest.php | 53 + .../UnusedFunctionParameterUnitTest.inc | 125 + .../UnusedFunctionParameterUnitTest.php | 58 + .../UselessOverridingMethodUnitTest.inc | 25 + .../UselessOverridingMethodUnitTest.php | 51 + .../Tests/Commenting/DocCommentUnitTest.inc | 252 + .../Commenting/DocCommentUnitTest.inc.fixed | 257 + .../Tests/Commenting/DocCommentUnitTest.js | 250 + .../Commenting/DocCommentUnitTest.js.fixed | 255 + .../Tests/Commenting/DocCommentUnitTest.php | 111 + .../Tests/Commenting/FixmeUnitTest.inc | 23 + .../Generic/Tests/Commenting/FixmeUnitTest.js | 23 + .../Tests/Commenting/FixmeUnitTest.php | 62 + .../Generic/Tests/Commenting/TodoUnitTest.inc | 23 + .../Generic/Tests/Commenting/TodoUnitTest.js | 23 + .../Generic/Tests/Commenting/TodoUnitTest.php | 61 + .../DisallowYodaConditionsUnitTest.inc | 166 + .../DisallowYodaConditionsUnitTest.php | 82 + .../InlineControlStructureUnitTest.1.inc | 255 + ...InlineControlStructureUnitTest.1.inc.fixed | 288 + .../InlineControlStructureUnitTest.2.inc | 8 + .../InlineControlStructureUnitTest.3.inc | 4 + .../InlineControlStructureUnitTest.4.inc | 5 + .../InlineControlStructureUnitTest.5.inc | 4 + .../InlineControlStructureUnitTest.6.inc | 6 + .../InlineControlStructureUnitTest.7.inc | 16 + .../InlineControlStructureUnitTest.js | 31 + .../InlineControlStructureUnitTest.js.fixed | 39 + .../InlineControlStructureUnitTest.php | 110 + .../Generic/Tests/Debug/CSSLintUnitTest.css | 6 + .../Generic/Tests/Debug/CSSLintUnitTest.php | 70 + .../Tests/Debug/ClosureLinterUnitTest.js | 6 + .../Tests/Debug/ClosureLinterUnitTest.php | 69 + .../Generic/Tests/Debug/ESLintUnitTest.js | 1 + .../Generic/Tests/Debug/ESLintUnitTest.php | 113 + .../Generic/Tests/Debug/JSHintUnitTest.js | 3 + .../Generic/Tests/Debug/JSHintUnitTest.php | 67 + .../Tests/Files/ByteOrderMarkUnitTest.inc | 3 + .../Tests/Files/ByteOrderMarkUnitTest.php | 48 + .../Tests/Files/EndFileNewlineUnitTest.1.css | 3 + .../Tests/Files/EndFileNewlineUnitTest.1.inc | 3 + .../Tests/Files/EndFileNewlineUnitTest.1.js | 3 + .../Tests/Files/EndFileNewlineUnitTest.2.css | 2 + .../Tests/Files/EndFileNewlineUnitTest.2.inc | 2 + .../Tests/Files/EndFileNewlineUnitTest.2.js | 2 + .../Tests/Files/EndFileNewlineUnitTest.3.css | 2 + .../Files/EndFileNewlineUnitTest.3.css.fixed | 2 + .../Tests/Files/EndFileNewlineUnitTest.3.inc | 2 + .../Files/EndFileNewlineUnitTest.3.inc.fixed | 2 + .../Tests/Files/EndFileNewlineUnitTest.3.js | 2 + .../Files/EndFileNewlineUnitTest.3.js.fixed | 2 + .../Tests/Files/EndFileNewlineUnitTest.4.inc | 2 + .../Files/EndFileNewlineUnitTest.4.inc.fixed | 2 + .../Tests/Files/EndFileNewlineUnitTest.5.inc | 2 + .../Tests/Files/EndFileNewlineUnitTest.php | 60 + .../Files/EndFileNoNewlineUnitTest.1.css | 3 + .../EndFileNoNewlineUnitTest.1.css.fixed | 2 + .../Files/EndFileNoNewlineUnitTest.1.inc | 3 + .../EndFileNoNewlineUnitTest.1.inc.fixed | 2 + .../Tests/Files/EndFileNoNewlineUnitTest.1.js | 3 + .../Files/EndFileNoNewlineUnitTest.1.js.fixed | 2 + .../Files/EndFileNoNewlineUnitTest.2.css | 2 + .../EndFileNoNewlineUnitTest.2.css.fixed | 2 + .../Files/EndFileNoNewlineUnitTest.2.inc | 3 + .../EndFileNoNewlineUnitTest.2.inc.fixed | 3 + .../Tests/Files/EndFileNoNewlineUnitTest.2.js | 2 + .../Files/EndFileNoNewlineUnitTest.2.js.fixed | 2 + .../Files/EndFileNoNewlineUnitTest.3.css | 2 + .../Files/EndFileNoNewlineUnitTest.3.inc | 2 + .../Tests/Files/EndFileNoNewlineUnitTest.3.js | 2 + .../Files/EndFileNoNewlineUnitTest.4.inc | 3 + .../Files/EndFileNoNewlineUnitTest.5.inc | 2 + .../Files/EndFileNoNewlineUnitTest.6.inc | 2 + .../EndFileNoNewlineUnitTest.6.inc.fixed | 2 + .../Files/EndFileNoNewlineUnitTest.7.inc | 6 + .../Tests/Files/EndFileNoNewlineUnitTest.php | 64 + .../Tests/Files/ExecutableFileUnitTest.1.inc | 1 + .../Tests/Files/ExecutableFileUnitTest.2.inc | 1 + .../Tests/Files/ExecutableFileUnitTest.php | 72 + .../Tests/Files/InlineHTMLUnitTest.1.inc | 3 + .../Tests/Files/InlineHTMLUnitTest.2.inc | 3 + .../Tests/Files/InlineHTMLUnitTest.3.inc | 6 + .../Tests/Files/InlineHTMLUnitTest.4.inc | 3 + .../Tests/Files/InlineHTMLUnitTest.5.inc | 3 + .../Tests/Files/InlineHTMLUnitTest.6.inc | 2 + .../Tests/Files/InlineHTMLUnitTest.7.inc | 2 + .../Tests/Files/InlineHTMLUnitTest.php | 65 + .../Tests/Files/LineEndingsUnitTest.css | 3 + .../Tests/Files/LineEndingsUnitTest.css.fixed | 3 + .../Tests/Files/LineEndingsUnitTest.inc | 18 + .../Tests/Files/LineEndingsUnitTest.inc.fixed | 18 + .../Tests/Files/LineEndingsUnitTest.js | 2 + .../Tests/Files/LineEndingsUnitTest.js.fixed | 2 + .../Tests/Files/LineEndingsUnitTest.php | 63 + .../Tests/Files/LineLengthUnitTest.1.inc | 84 + .../Tests/Files/LineLengthUnitTest.2.inc | 7 + .../Tests/Files/LineLengthUnitTest.3.inc | 16 + .../Tests/Files/LineLengthUnitTest.4.inc | 16 + .../Tests/Files/LineLengthUnitTest.php | 111 + .../Files/LowercasedFilenameUnitTest.inc | 7 + .../Files/LowercasedFilenameUnitTest.php | 48 + .../Tests/Files/OneClassPerFileUnitTest.inc | 13 + .../Tests/Files/OneClassPerFileUnitTest.php | 51 + .../Files/OneInterfacePerFileUnitTest.inc | 13 + .../Files/OneInterfacePerFileUnitTest.php | 51 + .../OneObjectStructurePerFileUnitTest.inc | 21 + .../OneObjectStructurePerFileUnitTest.php | 53 + .../Tests/Files/OneTraitPerFileUnitTest.inc | 17 + .../Tests/Files/OneTraitPerFileUnitTest.php | 51 + .../DisallowMultipleStatementsUnitTest.inc | 20 + ...sallowMultipleStatementsUnitTest.inc.fixed | 25 + .../DisallowMultipleStatementsUnitTest.php | 54 + .../MultipleStatementAlignmentUnitTest.inc | 408 ++ ...ltipleStatementAlignmentUnitTest.inc.fixed | 408 ++ .../MultipleStatementAlignmentUnitTest.js | 118 + ...ultipleStatementAlignmentUnitTest.js.fixed | 118 + .../MultipleStatementAlignmentUnitTest.php | 156 + .../Formatting/NoSpaceAfterCastUnitTest.inc | 51 + .../NoSpaceAfterCastUnitTest.inc.fixed | 51 + .../Formatting/NoSpaceAfterCastUnitTest.php | 72 + .../Formatting/SpaceAfterCastUnitTest.inc | 95 + .../SpaceAfterCastUnitTest.inc.fixed | 92 + .../Formatting/SpaceAfterCastUnitTest.php | 87 + .../Formatting/SpaceAfterNotUnitTest.inc | 86 + .../SpaceAfterNotUnitTest.inc.fixed | 83 + .../Tests/Formatting/SpaceAfterNotUnitTest.js | 5 + .../Formatting/SpaceAfterNotUnitTest.js.fixed | 5 + .../Formatting/SpaceAfterNotUnitTest.php | 91 + .../Formatting/SpaceBeforeCastUnitTest.inc | 65 + .../SpaceBeforeCastUnitTest.inc.fixed | 65 + .../Formatting/SpaceBeforeCastUnitTest.php | 78 + .../CallTimePassByReferenceUnitTest.inc | 39 + .../CallTimePassByReferenceUnitTest.php | 55 + .../FunctionCallArgumentSpacingUnitTest.inc | 151 + ...ctionCallArgumentSpacingUnitTest.inc.fixed | 151 + .../FunctionCallArgumentSpacingUnitTest.php | 75 + .../OpeningFunctionBraceBsdAllmanUnitTest.inc | 238 + ...ngFunctionBraceBsdAllmanUnitTest.inc.fixed | 258 + .../OpeningFunctionBraceBsdAllmanUnitTest.php | 81 + ...gFunctionBraceKernighanRitchieUnitTest.inc | 210 + ...ionBraceKernighanRitchieUnitTest.inc.fixed | 198 + ...gFunctionBraceKernighanRitchieUnitTest.php | 75 + .../Metrics/CyclomaticComplexityUnitTest.inc | 160 + .../Metrics/CyclomaticComplexityUnitTest.php | 51 + .../Tests/Metrics/NestingLevelUnitTest.inc | 102 + .../Tests/Metrics/NestingLevelUnitTest.php | 51 + .../CamelCapsFunctionNameUnitTest.inc | 167 + .../CamelCapsFunctionNameUnitTest.php | 88 + .../ConstructorNameUnitTest.inc | 97 + .../ConstructorNameUnitTest.php | 54 + .../UpperCaseConstantNameUnitTest.inc | 33 + .../UpperCaseConstantNameUnitTest.php | 56 + .../Tests/PHP/BacktickOperatorUnitTest.inc | 2 + .../Tests/PHP/BacktickOperatorUnitTest.php | 48 + ...CharacterBeforePHPOpeningTagUnitTest.1.inc | 9 + ...CharacterBeforePHPOpeningTagUnitTest.2.inc | 4 + ...CharacterBeforePHPOpeningTagUnitTest.3.inc | 3 + .../CharacterBeforePHPOpeningTagUnitTest.php | 57 + .../Tests/PHP/ClosingPHPTagUnitTest.inc | 10 + .../Tests/PHP/ClosingPHPTagUnitTest.php | 48 + .../Tests/PHP/DeprecatedFunctionsUnitTest.inc | 4 + .../Tests/PHP/DeprecatedFunctionsUnitTest.php | 58 + .../DisallowAlternativePHPTagsUnitTest.1.inc | 14 + ...llowAlternativePHPTagsUnitTest.1.inc.fixed | 14 + .../DisallowAlternativePHPTagsUnitTest.2.inc | 6 + ...llowAlternativePHPTagsUnitTest.2.inc.fixed | 6 + .../DisallowAlternativePHPTagsUnitTest.3.inc | 7 + .../DisallowAlternativePHPTagsUnitTest.php | 105 + .../DisallowRequestSuperglobalUnitTest.inc | 16 + .../DisallowRequestSuperglobalUnitTest.php | 51 + .../PHP/DisallowShortOpenTagUnitTest.1.inc | 11 + .../DisallowShortOpenTagUnitTest.1.inc.fixed | 11 + .../PHP/DisallowShortOpenTagUnitTest.2.inc | 8 + .../DisallowShortOpenTagUnitTest.2.inc.fixed | 8 + .../PHP/DisallowShortOpenTagUnitTest.3.inc | 16 + .../PHP/DisallowShortOpenTagUnitTest.php | 103 + .../Tests/PHP/DiscourageGotoUnitTest.inc | 18 + .../Tests/PHP/DiscourageGotoUnitTest.php | 53 + .../Tests/PHP/ForbiddenFunctionsUnitTest.inc | 57 + .../Tests/PHP/ForbiddenFunctionsUnitTest.php | 54 + .../Tests/PHP/LowerCaseConstantUnitTest.inc | 83 + .../PHP/LowerCaseConstantUnitTest.inc.fixed | 83 + .../Tests/PHP/LowerCaseConstantUnitTest.js | 14 + .../PHP/LowerCaseConstantUnitTest.js.fixed | 14 + .../Tests/PHP/LowerCaseConstantUnitTest.php | 84 + .../Tests/PHP/LowerCaseKeywordUnitTest.inc | 33 + .../PHP/LowerCaseKeywordUnitTest.inc.fixed | 33 + .../Tests/PHP/LowerCaseKeywordUnitTest.php | 61 + .../Tests/PHP/LowerCaseTypeUnitTest.inc | 47 + .../Tests/PHP/LowerCaseTypeUnitTest.inc.fixed | 47 + .../Tests/PHP/LowerCaseTypeUnitTest.php | 68 + .../Tests/PHP/NoSilencedErrorsUnitTest.inc | 9 + .../Tests/PHP/NoSilencedErrorsUnitTest.php | 48 + .../PHP/RequireStrictTypesUnitTest.1.inc | 8 + .../PHP/RequireStrictTypesUnitTest.2.inc | 2 + .../Tests/PHP/RequireStrictTypesUnitTest.php | 56 + .../Generic/Tests/PHP/SAPIUsageUnitTest.inc | 5 + .../Generic/Tests/PHP/SAPIUsageUnitTest.php | 48 + .../Generic/Tests/PHP/SyntaxUnitTest.inc | 4 + .../Generic/Tests/PHP/SyntaxUnitTest.php | 49 + .../Tests/PHP/UpperCaseConstantUnitTest.inc | 81 + .../PHP/UpperCaseConstantUnitTest.inc.fixed | 81 + .../Tests/PHP/UpperCaseConstantUnitTest.php | 63 + .../UnnecessaryStringConcatUnitTest.inc | 21 + .../UnnecessaryStringConcatUnitTest.js | 15 + .../UnnecessaryStringConcatUnitTest.php | 73 + .../GitMergeConflictUnitTest.1.css | 35 + .../GitMergeConflictUnitTest.1.inc | 61 + .../GitMergeConflictUnitTest.2.css | 32 + .../GitMergeConflictUnitTest.2.inc | 31 + .../GitMergeConflictUnitTest.3.inc | 43 + .../GitMergeConflictUnitTest.4.inc | 71 + .../GitMergeConflictUnitTest.5.inc | 34 + .../GitMergeConflictUnitTest.6.inc | 34 + .../GitMergeConflictUnitTest.js | 33 + .../GitMergeConflictUnitTest.php | 160 + .../SubversionPropertiesUnitTest.inc | 3 + .../SubversionPropertiesUnitTest.php | 61 + .../ArbitraryParenthesesSpacingUnitTest.inc | 165 + ...itraryParenthesesSpacingUnitTest.inc.fixed | 153 + .../ArbitraryParenthesesSpacingUnitTest.php | 85 + .../DisallowSpaceIndentUnitTest.1.inc | 118 + .../DisallowSpaceIndentUnitTest.1.inc.fixed | 118 + .../DisallowSpaceIndentUnitTest.2.inc | 118 + .../DisallowSpaceIndentUnitTest.2.inc.fixed | 118 + .../DisallowSpaceIndentUnitTest.css | 4 + .../DisallowSpaceIndentUnitTest.css.fixed | 4 + .../WhiteSpace/DisallowSpaceIndentUnitTest.js | 9 + .../DisallowSpaceIndentUnitTest.js.fixed | 9 + .../DisallowSpaceIndentUnitTest.php | 118 + .../WhiteSpace/DisallowTabIndentUnitTest.css | 5 + .../DisallowTabIndentUnitTest.css.fixed | 5 + .../WhiteSpace/DisallowTabIndentUnitTest.inc | 93 + .../DisallowTabIndentUnitTest.inc.fixed | 93 + .../WhiteSpace/DisallowTabIndentUnitTest.js | 9 + .../DisallowTabIndentUnitTest.js.fixed | 9 + .../WhiteSpace/DisallowTabIndentUnitTest.php | 123 + .../IncrementDecrementSpacingUnitTest.inc | 17 + ...ncrementDecrementSpacingUnitTest.inc.fixed | 16 + .../IncrementDecrementSpacingUnitTest.js | 17 + ...IncrementDecrementSpacingUnitTest.js.fixed | 16 + .../IncrementDecrementSpacingUnitTest.php | 66 + .../LanguageConstructSpacingUnitTest.inc | 79 + ...LanguageConstructSpacingUnitTest.inc.fixed | 73 + .../LanguageConstructSpacingUnitTest.php | 74 + .../WhiteSpace/ScopeIndentUnitTest.1.inc | 1501 ++++ .../ScopeIndentUnitTest.1.inc.fixed | 1501 ++++ .../Tests/WhiteSpace/ScopeIndentUnitTest.1.js | 239 + .../WhiteSpace/ScopeIndentUnitTest.1.js.fixed | 239 + .../WhiteSpace/ScopeIndentUnitTest.2.inc | 1501 ++++ .../ScopeIndentUnitTest.2.inc.fixed | 1501 ++++ .../WhiteSpace/ScopeIndentUnitTest.3.inc | 28 + .../ScopeIndentUnitTest.3.inc.fixed | 28 + .../WhiteSpace/ScopeIndentUnitTest.4.inc | 6 + .../Tests/WhiteSpace/ScopeIndentUnitTest.php | 205 + .../SpreadOperatorSpacingAfterUnitTest.inc | 73 + ...readOperatorSpacingAfterUnitTest.inc.fixed | 68 + .../SpreadOperatorSpacingAfterUnitTest.php | 58 + .../src/Standards/Generic/ruleset.xml | 4 + .../Sniffs/CSS/BrowserSpecificStylesSniff.php | 87 + .../Channels/DisallowSelfActionsSniff.php | 125 + .../Sniffs/Channels/IncludeOwnSystemSniff.php | 98 + .../Sniffs/Channels/IncludeSystemSniff.php | 314 + .../Sniffs/Channels/UnusedSystemSniff.php | 141 + .../Commenting/FunctionCommentSniff.php | 84 + .../MySource/Sniffs/Debug/DebugCodeSniff.php | 55 + .../Sniffs/Debug/FirebugConsoleSniff.php | 64 + .../Sniffs/Objects/AssignThisSniff.php | 81 + .../Objects/CreateWidgetTypeCallbackSniff.php | 218 + .../Sniffs/Objects/DisallowNewWidgetSniff.php | 59 + .../Sniffs/PHP/AjaxNullComparisonSniff.php | 103 + .../Sniffs/PHP/EvalObjectFactorySniff.php | 114 + .../Sniffs/PHP/GetRequestDataSniff.php | 106 + .../Sniffs/PHP/ReturnFunctionValueSniff.php | 63 + .../Sniffs/Strings/JoinStringsSniff.php | 76 + .../CSS/BrowserSpecificStylesUnitTest.css | 13 + .../CSS/BrowserSpecificStylesUnitTest.php | 48 + .../Channels/DisallowSelfActionsUnitTest.inc | 51 + .../Channels/DisallowSelfActionsUnitTest.php | 53 + .../Tests/Channels/IncludeSystemUnitTest.inc | 112 + .../Tests/Channels/IncludeSystemUnitTest.php | 60 + .../Tests/Channels/UnusedSystemUnitTest.inc | 67 + .../Tests/Channels/UnusedSystemUnitTest.php | 55 + .../Commenting/FunctionCommentUnitTest.inc | 101 + .../Commenting/FunctionCommentUnitTest.php | 54 + .../Tests/Debug/DebugCodeUnitTest.inc | 4 + .../Tests/Debug/DebugCodeUnitTest.php | 51 + .../Tests/Debug/FirebugConsoleUnitTest.js | 8 + .../Tests/Debug/FirebugConsoleUnitTest.php | 61 + .../Tests/Objects/AssignThisUnitTest.js | 20 + .../Tests/Objects/AssignThisUnitTest.php | 58 + .../CreateWidgetTypeCallbackUnitTest.js | 186 + .../CreateWidgetTypeCallbackUnitTest.php | 59 + .../Objects/DisallowNewWidgetUnitTest.inc | 6 + .../Objects/DisallowNewWidgetUnitTest.php | 48 + .../Tests/PHP/AjaxNullComparisonUnitTest.inc | 182 + .../Tests/PHP/AjaxNullComparisonUnitTest.php | 55 + .../Tests/PHP/EvalObjectFactoryUnitTest.inc | 26 + .../Tests/PHP/EvalObjectFactoryUnitTest.php | 52 + .../Tests/PHP/GetRequestDataUnitTest.inc | 30 + .../Tests/PHP/GetRequestDataUnitTest.php | 56 + .../Tests/PHP/ReturnFunctionValueUnitTest.inc | 9 + .../Tests/PHP/ReturnFunctionValueUnitTest.php | 52 + .../Tests/Strings/JoinStringsUnitTest.js | 18 + .../Tests/Strings/JoinStringsUnitTest.php | 62 + .../src/Standards/MySource/ruleset.xml | 18 + .../Docs/Classes/ClassDeclarationStandard.xml | 22 + .../Docs/Commenting/ClassCommentStandard.xml | 177 + .../Docs/Commenting/FileCommentStandard.xml | 286 + .../Commenting/FunctionCommentStandard.xml | 230 + .../Docs/Commenting/InlineCommentStandard.xml | 19 + .../ControlSignatureStandard.xml | 36 + .../MultiLineConditionStandard.xml | 60 + .../PEAR/Docs/Files/IncludingFileStandard.xml | 24 + .../PEAR/Docs/Files/LineLengthStandard.xml | 7 + .../MultiLineAssignmentStandard.xml | 35 + .../FunctionCallSignatureStandard.xml | 19 + .../Functions/FunctionDeclarationStandard.xml | 41 + .../Functions/ValidDefaultValueStandard.xml | 25 + .../ValidClassNameStandard.xml | 23 + .../ValidFunctionNameStandard.xml | 23 + .../ValidVariableNameStandard.xml | 29 + .../ObjectOperatorIndentStandard.xml | 39 + .../WhiteSpace/ScopeClosingBraceStandard.xml | 23 + .../Docs/WhiteSpace/ScopeIndentStandard.xml | 29 + .../Sniffs/Classes/ClassDeclarationSniff.php | 149 + .../Sniffs/Commenting/ClassCommentSniff.php | 104 + .../Sniffs/Commenting/FileCommentSniff.php | 569 ++ .../Commenting/FunctionCommentSniff.php | 472 ++ .../Sniffs/Commenting/InlineCommentSniff.php | 68 + .../ControlSignatureSniff.php | 47 + .../MultiLineConditionSniff.php | 283 + .../PEAR/Sniffs/Files/IncludingFileSniff.php | 136 + .../Formatting/MultiLineAssignmentSniff.php | 106 + .../Functions/FunctionCallSignatureSniff.php | 628 ++ .../Functions/FunctionDeclarationSniff.php | 511 ++ .../Functions/ValidDefaultValueSniff.php | 78 + .../NamingConventions/ValidClassNameSniff.php | 97 + .../ValidFunctionNameSniff.php | 284 + .../ValidVariableNameSniff.php | 103 + .../WhiteSpace/ObjectOperatorIndentSniff.php | 204 + .../WhiteSpace/ScopeClosingBraceSniff.php | 179 + .../Sniffs/WhiteSpace/ScopeIndentSniff.php | 24 + .../Classes/ClassDeclarationUnitTest.1.inc | 112 + .../ClassDeclarationUnitTest.1.inc.fixed | 121 + .../Classes/ClassDeclarationUnitTest.2.inc | 11 + .../Classes/ClassDeclarationUnitTest.php | 94 + .../Tests/Commenting/ClassCommentUnitTest.inc | 120 + .../Tests/Commenting/ClassCommentUnitTest.php | 70 + .../Tests/Commenting/FileCommentUnitTest.inc | 53 + .../Tests/Commenting/FileCommentUnitTest.php | 69 + .../Commenting/FunctionCommentUnitTest.inc | 383 + .../FunctionCommentUnitTest.inc.fixed | 383 + .../Commenting/FunctionCommentUnitTest.php | 91 + .../Commenting/InlineCommentUnitTest.inc | 29 + .../InlineCommentUnitTest.inc.fixed | 29 + .../Commenting/InlineCommentUnitTest.php | 55 + .../ControlSignatureUnitTest.inc | 159 + .../ControlSignatureUnitTest.php | 71 + .../MultiLineConditionUnitTest.inc | 251 + .../MultiLineConditionUnitTest.inc.fixed | 247 + .../MultiLineConditionUnitTest.js | 251 + .../MultiLineConditionUnitTest.js.fixed | 247 + .../MultiLineConditionUnitTest.php | 91 + .../Tests/Files/IncludingFileUnitTest.inc | 99 + .../Files/IncludingFileUnitTest.inc.fixed | 99 + .../Tests/Files/IncludingFileUnitTest.php | 67 + .../MultiLineAssignmentUnitTest.inc | 22 + .../MultiLineAssignmentUnitTest.php | 52 + .../FunctionCallSignatureUnitTest.inc | 527 ++ .../FunctionCallSignatureUnitTest.inc.fixed | 539 ++ .../FunctionCallSignatureUnitTest.js | 80 + .../FunctionCallSignatureUnitTest.js.fixed | 84 + .../FunctionCallSignatureUnitTest.php | 149 + .../Functions/FunctionDeclarationUnitTest.inc | 316 + .../FunctionDeclarationUnitTest.inc.fixed | 314 + .../Functions/FunctionDeclarationUnitTest.js | 59 + .../FunctionDeclarationUnitTest.js.fixed | 60 + .../Functions/FunctionDeclarationUnitTest.php | 121 + .../Functions/ValidDefaultValueUnitTest.inc | 104 + .../Functions/ValidDefaultValueUnitTest.php | 58 + .../ValidClassNameUnitTest.inc | 68 + .../ValidClassNameUnitTest.php | 67 + .../ValidFunctionNameUnitTest.inc | 222 + .../ValidFunctionNameUnitTest.php | 145 + .../ValidVariableNameUnitTest.inc | 101 + .../ValidVariableNameUnitTest.php | 56 + .../ObjectOperatorIndentUnitTest.inc | 136 + .../ObjectOperatorIndentUnitTest.inc.fixed | 136 + .../ObjectOperatorIndentUnitTest.php | 71 + .../WhiteSpace/ScopeClosingBraceUnitTest.inc | 146 + .../ScopeClosingBraceUnitTest.inc.fixed | 150 + .../WhiteSpace/ScopeClosingBraceUnitTest.php | 63 + .../Tests/WhiteSpace/ScopeIndentUnitTest.inc | 314 + .../Tests/WhiteSpace/ScopeIndentUnitTest.php | 66 + .../src/Standards/PEAR/ruleset.xml | 41 + .../Docs/Classes/ClassDeclarationStandard.xml | 48 + .../PSR1/Docs/Files/SideEffectsStandard.xml | 27 + .../Methods/CamelCapsMethodNameStandard.xml | 29 + .../Sniffs/Classes/ClassDeclarationSniff.php | 74 + .../PSR1/Sniffs/Files/SideEffectsSniff.php | 290 + .../Methods/CamelCapsMethodNameSniff.php | 91 + .../Classes/ClassDeclarationUnitTest.1.inc | 3 + .../Classes/ClassDeclarationUnitTest.2.inc | 4 + .../Classes/ClassDeclarationUnitTest.php | 57 + .../Tests/Files/SideEffectsUnitTest.1.inc | 72 + .../Tests/Files/SideEffectsUnitTest.10.inc | 8 + .../Tests/Files/SideEffectsUnitTest.11.inc | 11 + .../Tests/Files/SideEffectsUnitTest.12.inc | 8 + .../Tests/Files/SideEffectsUnitTest.13.inc | 2 + .../Tests/Files/SideEffectsUnitTest.14.inc | 2 + .../Tests/Files/SideEffectsUnitTest.15.inc | 2 + .../Tests/Files/SideEffectsUnitTest.16.inc | 2 + .../Tests/Files/SideEffectsUnitTest.2.inc | 24 + .../Tests/Files/SideEffectsUnitTest.3.inc | 6 + .../Tests/Files/SideEffectsUnitTest.4.inc | 10 + .../Tests/Files/SideEffectsUnitTest.5.inc | 2 + .../Tests/Files/SideEffectsUnitTest.6.inc | 9 + .../Tests/Files/SideEffectsUnitTest.7.inc | 8 + .../Tests/Files/SideEffectsUnitTest.8.inc | 8 + .../Tests/Files/SideEffectsUnitTest.9.inc | 8 + .../PSR1/Tests/Files/SideEffectsUnitTest.php | 80 + .../Methods/CamelCapsMethodNameUnitTest.inc | 81 + .../Methods/CamelCapsMethodNameUnitTest.php | 59 + .../src/Standards/PSR1/ruleset.xml | 47 + .../Classes/ClassInstantiationStandard.xml | 19 + .../NullableTypeDeclarationStandard.xml | 45 + .../ShortFormTypeKeywordsStandard.xml | 19 + .../CompoundNamespaceDepthStandard.xml | 28 + .../Operators/OperatorSpacingStandard.xml | 27 + .../Classes/AnonClassDeclarationSniff.php | 242 + .../Classes/ClassInstantiationSniff.php | 101 + .../Sniffs/Classes/ClosingBraceSniff.php | 66 + .../BooleanOperatorPlacementSniff.php | 228 + .../ControlStructureSpacingSniff.php | 191 + .../Sniffs/Files/DeclareStatementSniff.php | 256 + .../PSR12/Sniffs/Files/FileHeaderSniff.php | 411 ++ .../Sniffs/Files/ImportStatementSniff.php | 77 + .../PSR12/Sniffs/Files/OpenTagSniff.php | 73 + .../NullableTypeDeclarationSniff.php | 91 + .../Functions/ReturnTypeDeclarationSniff.php | 110 + .../Keywords/ShortFormTypeKeywordsSniff.php | 75 + .../CompoundNamespaceDepthSniff.php | 80 + .../Sniffs/Operators/OperatorSpacingSniff.php | 112 + .../Properties/ConstantVisibilitySniff.php | 61 + .../Sniffs/Traits/UseDeclarationSniff.php | 700 ++ .../Classes/AnonClassDeclarationUnitTest.inc | 84 + .../AnonClassDeclarationUnitTest.inc.fixed | 86 + .../Classes/AnonClassDeclarationUnitTest.php | 71 + .../Classes/ClassInstantiationUnitTest.inc | 38 + .../ClassInstantiationUnitTest.inc.fixed | 38 + .../Classes/ClassInstantiationUnitTest.php | 66 + .../Tests/Classes/ClosingBraceUnitTest.inc | 47 + .../Tests/Classes/ClosingBraceUnitTest.php | 54 + .../BooleanOperatorPlacementUnitTest.inc | 120 + ...BooleanOperatorPlacementUnitTest.inc.fixed | 130 + .../BooleanOperatorPlacementUnitTest.php | 58 + .../ControlStructureSpacingUnitTest.inc | 86 + .../ControlStructureSpacingUnitTest.inc.fixed | 87 + .../ControlStructureSpacingUnitTest.php | 64 + .../Tests/Files/DeclareStatementUnitTest.inc | 50 + .../Files/DeclareStatementUnitTest.inc.fixed | 54 + .../Tests/Files/DeclareStatementUnitTest.php | 72 + .../Tests/Files/FileHeaderUnitTest.1.inc | 29 + .../Tests/Files/FileHeaderUnitTest.10.inc | 4 + .../Files/FileHeaderUnitTest.10.inc.fixed | 5 + .../Tests/Files/FileHeaderUnitTest.11.inc | 21 + .../Files/FileHeaderUnitTest.11.inc.fixed | 22 + .../Tests/Files/FileHeaderUnitTest.12.inc | 17 + .../Files/FileHeaderUnitTest.12.inc.fixed | 18 + .../Tests/Files/FileHeaderUnitTest.13.inc | 24 + .../Tests/Files/FileHeaderUnitTest.14.inc | 7 + .../Tests/Files/FileHeaderUnitTest.15.inc | 5 + .../Tests/Files/FileHeaderUnitTest.16.inc | 13 + .../Tests/Files/FileHeaderUnitTest.2.inc | 33 + .../Files/FileHeaderUnitTest.2.inc.fixed | 29 + .../Tests/Files/FileHeaderUnitTest.3.inc | 27 + .../Tests/Files/FileHeaderUnitTest.4.inc | 15 + .../Files/FileHeaderUnitTest.4.inc.fixed | 19 + .../Tests/Files/FileHeaderUnitTest.5.inc | 18 + .../Tests/Files/FileHeaderUnitTest.6.inc | 13 + .../Tests/Files/FileHeaderUnitTest.7.inc | 2 + .../Files/FileHeaderUnitTest.7.inc.fixed | 3 + .../Tests/Files/FileHeaderUnitTest.8.inc | 5 + .../Tests/Files/FileHeaderUnitTest.9.inc | 7 + .../PSR12/Tests/Files/FileHeaderUnitTest.php | 82 + .../Tests/Files/ImportStatementUnitTest.inc | 19 + .../Files/ImportStatementUnitTest.inc.fixed | 19 + .../Tests/Files/ImportStatementUnitTest.php | 52 + .../PSR12/Tests/Files/OpenTagUnitTest.1.inc | 3 + .../PSR12/Tests/Files/OpenTagUnitTest.2.inc | 1 + .../Tests/Files/OpenTagUnitTest.2.inc.fixed | 2 + .../PSR12/Tests/Files/OpenTagUnitTest.3.inc | 3 + .../PSR12/Tests/Files/OpenTagUnitTest.4.inc | 2 + .../PSR12/Tests/Files/OpenTagUnitTest.5.inc | 1 + .../PSR12/Tests/Files/OpenTagUnitTest.php | 55 + .../NullableTypeDeclarationUnitTest.inc | 87 + .../NullableTypeDeclarationUnitTest.inc.fixed | 85 + .../NullableTypeDeclarationUnitTest.php | 64 + .../ReturnTypeDeclarationUnitTest.inc | 66 + .../ReturnTypeDeclarationUnitTest.inc.fixed | 62 + .../ReturnTypeDeclarationUnitTest.php | 61 + .../ShortFormTypeKeywordsUnitTest.inc | 14 + .../ShortFormTypeKeywordsUnitTest.inc.fixed | 14 + .../ShortFormTypeKeywordsUnitTest.php | 54 + .../CompoundNamespaceDepthUnitTest.inc | 31 + .../CompoundNamespaceDepthUnitTest.php | 52 + .../Operators/OperatorSpacingUnitTest.inc | 63 + .../OperatorSpacingUnitTest.inc.fixed | 63 + .../Operators/OperatorSpacingUnitTest.php | 69 + .../Properties/ConstantVisibilityUnitTest.inc | 7 + .../Properties/ConstantVisibilityUnitTest.php | 48 + .../Tests/Traits/UseDeclarationUnitTest.inc | 209 + .../Traits/UseDeclarationUnitTest.inc.fixed | 203 + .../Tests/Traits/UseDeclarationUnitTest.php | 70 + .../src/Standards/PSR12/ruleset.xml | 346 + .../Docs/Classes/ClassDeclarationStandard.xml | 23 + .../Classes/PropertyDeclarationStandard.xml | 81 + .../ControlStructureSpacingStandard.xml | 23 + .../ElseIfDeclarationStandard.xml | 27 + .../SwitchDeclarationStandard.xml | 104 + .../Docs/Files/EndFileNewlineStandard.xml | 7 + .../Methods/MethodDeclarationStandard.xml | 51 + .../NamespaceDeclarationStandard.xml | 22 + .../Namespaces/UseDeclarationStandard.xml | 57 + .../Sniffs/Classes/ClassDeclarationSniff.php | 528 ++ .../Classes/PropertyDeclarationSniff.php | 184 + .../ControlStructureSpacingSniff.php | 141 + .../ElseIfDeclarationSniff.php | 72 + .../SwitchDeclarationSniff.php | 318 + .../PSR2/Sniffs/Files/ClosingTagSniff.php | 89 + .../PSR2/Sniffs/Files/EndFileNewlineSniff.php | 104 + .../Methods/FunctionCallSignatureSniff.php | 79 + .../Methods/FunctionClosingBraceSniff.php | 91 + .../Sniffs/Methods/MethodDeclarationSniff.php | 162 + .../Namespaces/NamespaceDeclarationSniff.php | 93 + .../Sniffs/Namespaces/UseDeclarationSniff.php | 297 + .../Classes/ClassDeclarationUnitTest.inc | 241 + .../ClassDeclarationUnitTest.inc.fixed | 234 + .../Classes/ClassDeclarationUnitTest.php | 86 + .../Classes/PropertyDeclarationUnitTest.inc | 73 + .../PropertyDeclarationUnitTest.inc.fixed | 70 + .../Classes/PropertyDeclarationUnitTest.php | 74 + .../ControlStructureSpacingUnitTest.inc | 70 + .../ControlStructureSpacingUnitTest.inc.fixed | 69 + .../ControlStructureSpacingUnitTest.php | 59 + .../ElseIfDeclarationUnitTest.inc | 17 + .../ElseIfDeclarationUnitTest.inc.fixed | 17 + .../ElseIfDeclarationUnitTest.php | 51 + .../SwitchDeclarationUnitTest.inc | 273 + .../SwitchDeclarationUnitTest.inc.fixed | 276 + .../SwitchDeclarationUnitTest.php | 70 + .../PSR2/Tests/Files/ClosingTagUnitTest.1.inc | 12 + .../Files/ClosingTagUnitTest.1.inc.fixed | 12 + .../PSR2/Tests/Files/ClosingTagUnitTest.2.inc | 3 + .../PSR2/Tests/Files/ClosingTagUnitTest.3.inc | 7 + .../PSR2/Tests/Files/ClosingTagUnitTest.4.inc | 1 + .../Files/ClosingTagUnitTest.4.inc.fixed | 1 + .../PSR2/Tests/Files/ClosingTagUnitTest.5.inc | 1 + .../Files/ClosingTagUnitTest.5.inc.fixed | 1 + .../PSR2/Tests/Files/ClosingTagUnitTest.6.inc | 5 + .../Files/ClosingTagUnitTest.6.inc.fixed | 5 + .../PSR2/Tests/Files/ClosingTagUnitTest.7.inc | 5 + .../Files/ClosingTagUnitTest.7.inc.fixed | 5 + .../PSR2/Tests/Files/ClosingTagUnitTest.php | 64 + .../Tests/Files/EndFileNewlineUnitTest.1.inc | 3 + .../Files/EndFileNewlineUnitTest.1.inc.fixed | 2 + .../Tests/Files/EndFileNewlineUnitTest.10.inc | 3 + .../Files/EndFileNewlineUnitTest.10.inc.fixed | 2 + .../Tests/Files/EndFileNewlineUnitTest.2.inc | 2 + .../Tests/Files/EndFileNewlineUnitTest.3.inc | 2 + .../Files/EndFileNewlineUnitTest.3.inc.fixed | 2 + .../Tests/Files/EndFileNewlineUnitTest.4.inc | 4 + .../Tests/Files/EndFileNewlineUnitTest.5.inc | 6 + .../Tests/Files/EndFileNewlineUnitTest.6.inc | 2 + .../Files/EndFileNewlineUnitTest.6.inc.fixed | 2 + .../Tests/Files/EndFileNewlineUnitTest.7.inc | 11 + .../Files/EndFileNewlineUnitTest.7.inc.fixed | 2 + .../Tests/Files/EndFileNewlineUnitTest.8.inc | 2 + .../Tests/Files/EndFileNewlineUnitTest.9.inc | 2 + .../Files/EndFileNewlineUnitTest.9.inc.fixed | 2 + .../Tests/Files/EndFileNewlineUnitTest.php | 62 + .../Methods/FunctionCallSignatureUnitTest.inc | 244 + .../FunctionCallSignatureUnitTest.inc.fixed | 257 + .../Methods/FunctionCallSignatureUnitTest.php | 90 + .../Methods/FunctionClosingBraceUnitTest.inc | 70 + .../FunctionClosingBraceUnitTest.inc.fixed | 61 + .../Methods/FunctionClosingBraceUnitTest.php | 55 + .../Methods/MethodDeclarationUnitTest.inc | 66 + .../MethodDeclarationUnitTest.inc.fixed | 66 + .../Methods/MethodDeclarationUnitTest.php | 69 + .../NamespaceDeclarationUnitTest.inc | 22 + .../NamespaceDeclarationUnitTest.inc.fixed | 24 + .../NamespaceDeclarationUnitTest.php | 53 + .../Namespaces/UseDeclarationUnitTest.1.inc | 38 + .../Namespaces/UseDeclarationUnitTest.10.inc | 8 + .../UseDeclarationUnitTest.10.inc.fixed | 9 + .../Namespaces/UseDeclarationUnitTest.11.inc | 2 + .../UseDeclarationUnitTest.11.inc.fixed | 4 + .../Namespaces/UseDeclarationUnitTest.12.inc | 9 + .../UseDeclarationUnitTest.12.inc.fixed | 11 + .../Namespaces/UseDeclarationUnitTest.13.inc | 10 + .../UseDeclarationUnitTest.13.inc.fixed | 11 + .../Namespaces/UseDeclarationUnitTest.14.inc | 8 + .../UseDeclarationUnitTest.14.inc.fixed | 9 + .../Namespaces/UseDeclarationUnitTest.15.inc | 10 + .../Namespaces/UseDeclarationUnitTest.16.inc | 11 + .../UseDeclarationUnitTest.16.inc.fixed | 9 + .../Namespaces/UseDeclarationUnitTest.17.inc | 3 + .../Namespaces/UseDeclarationUnitTest.2.inc | 21 + .../UseDeclarationUnitTest.2.inc.fixed | 27 + .../Namespaces/UseDeclarationUnitTest.3.inc | 16 + .../UseDeclarationUnitTest.3.inc.fixed | 16 + .../Namespaces/UseDeclarationUnitTest.4.inc | 4 + .../Namespaces/UseDeclarationUnitTest.5.inc | 47 + .../UseDeclarationUnitTest.5.inc.fixed | 56 + .../Namespaces/UseDeclarationUnitTest.6.inc | 1 + .../Namespaces/UseDeclarationUnitTest.7.inc | 1 + .../Namespaces/UseDeclarationUnitTest.8.inc | 8 + .../Namespaces/UseDeclarationUnitTest.9.inc | 8 + .../Namespaces/UseDeclarationUnitTest.php | 97 + .../src/Standards/PSR2/ruleset.xml | 218 + .../Arrays/ArrayBracketSpacingStandard.xml | 19 + .../Docs/Arrays/ArrayDeclarationStandard.xml | 117 + .../LowercaseClassKeywordsStandard.xml | 23 + .../Classes/SelfMemberReferenceStandard.xml | 63 + .../DocCommentAlignmentStandard.xml | 39 + .../FunctionCommentThrowTagStandard.xml | 32 + .../ForEachLoopDeclarationStandard.xml | 39 + .../ForLoopDeclarationStandard.xml | 55 + .../LowercaseDeclarationStandard.xml | 23 + .../FunctionDuplicateArgumentStandard.xml | 23 + .../LowercaseFunctionKeywordsStandard.xml | 25 + .../Docs/Scope/StaticThisUsageStandard.xml | 31 + .../Docs/Strings/EchoedStringsStandard.xml | 19 + .../Docs/WhiteSpace/CastSpacingStandard.xml | 19 + .../FunctionOpeningBraceStandard.xml | 41 + .../LanguageConstructSpacingStandard.xml | 19 + .../ObjectOperatorSpacingStandard.xml | 19 + .../ScopeKeywordSpacingStandard.xml | 23 + .../WhiteSpace/SemicolonSpacingStandard.xml | 19 + .../Arrays/ArrayBracketSpacingSniff.php | 95 + .../Sniffs/Arrays/ArrayDeclarationSniff.php | 894 +++ .../ClassDefinitionClosingBraceSpaceSniff.php | 134 + .../CSS/ClassDefinitionNameSpacingSniff.php | 111 + .../ClassDefinitionOpeningBraceSpaceSniff.php | 176 + .../Squiz/Sniffs/CSS/ColonSpacingSniff.php | 107 + .../Sniffs/CSS/ColourDefinitionSniff.php | 88 + .../DisallowMultipleStyleDefinitionsSniff.php | 71 + .../CSS/DuplicateClassDefinitionSniff.php | 116 + .../CSS/DuplicateStyleDefinitionSniff.php | 88 + .../Sniffs/CSS/EmptyClassDefinitionSniff.php | 61 + .../Sniffs/CSS/EmptyStyleDefinitionSniff.php | 64 + .../Squiz/Sniffs/CSS/ForbiddenStylesSniff.php | 177 + .../Squiz/Sniffs/CSS/IndentationSniff.php | 150 + .../CSS/LowercaseStyleDefinitionSniff.php | 97 + .../Squiz/Sniffs/CSS/MissingColonSniff.php | 91 + .../Squiz/Sniffs/CSS/NamedColoursSniff.php | 93 + .../Squiz/Sniffs/CSS/OpacitySniff.php | 101 + .../Sniffs/CSS/SemicolonSpacingSniff.php | 103 + .../Squiz/Sniffs/CSS/ShorthandSizeSniff.php | 181 + .../Sniffs/Classes/ClassDeclarationSniff.php | 206 + .../Sniffs/Classes/ClassFileNameSniff.php | 69 + .../Sniffs/Classes/DuplicatePropertySniff.php | 82 + .../Classes/LowercaseClassKeywordsSniff.php | 72 + .../Classes/SelfMemberReferenceSniff.php | 240 + .../Sniffs/Classes/ValidClassNameSniff.php | 86 + .../Sniffs/Commenting/BlockCommentSniff.php | 388 + .../Sniffs/Commenting/ClassCommentSniff.php | 87 + .../ClosingDeclarationCommentSniff.php | 129 + .../Commenting/DocCommentAlignmentSniff.php | 158 + .../Commenting/EmptyCatchCommentSniff.php | 55 + .../Sniffs/Commenting/FileCommentSniff.php | 214 + .../Commenting/FunctionCommentSniff.php | 698 ++ .../FunctionCommentThrowTagSniff.php | 233 + .../Sniffs/Commenting/InlineCommentSniff.php | 343 + .../LongConditionClosingCommentSniff.php | 206 + .../Commenting/PostStatementCommentSniff.php | 120 + .../Commenting/VariableCommentSniff.php | 178 + .../ControlSignatureSniff.php | 324 + .../ElseIfDeclarationSniff.php | 51 + .../ForEachLoopDeclarationSniff.php | 236 + .../ForLoopDeclarationSniff.php | 316 + .../InlineIfDeclarationSniff.php | 155 + .../LowercaseDeclarationSniff.php | 74 + .../SwitchDeclarationSniff.php | 304 + .../Squiz/Sniffs/Debug/JSLintSniff.php | 85 + .../Sniffs/Debug/JavaScriptLintSniff.php | 88 + .../Squiz/Sniffs/Files/FileExtensionSniff.php | 68 + .../Formatting/OperatorBracketSniff.php | 388 + ...unctionDeclarationArgumentSpacingSniff.php | 392 + .../Functions/FunctionDeclarationSniff.php | 34 + .../FunctionDuplicateArgumentSniff.php | 64 + .../Sniffs/Functions/GlobalFunctionSniff.php | 61 + .../LowercaseFunctionKeywordsSniff.php | 69 + .../MultiLineFunctionDeclarationSniff.php | 258 + .../ValidFunctionNameSniff.php | 54 + .../ValidVariableNameSniff.php | 180 + .../DisallowObjectStringIndexSniff.php | 85 + .../Objects/ObjectInstantiationSniff.php | 67 + .../Sniffs/Objects/ObjectMemberCommaSniff.php | 64 + .../ComparisonOperatorUsageSniff.php | 235 + .../IncrementDecrementUsageSniff.php | 225 + .../Operators/ValidLogicalOperatorsSniff.php | 67 + .../Sniffs/PHP/CommentedOutCodeSniff.php | 288 + .../PHP/DisallowBooleanStatementSniff.php | 59 + .../PHP/DisallowComparisonAssignmentSniff.php | 110 + .../Sniffs/PHP/DisallowInlineIfSniff.php | 57 + .../PHP/DisallowMultipleAssignmentsSniff.php | 184 + .../PHP/DisallowSizeFunctionsInLoopsSniff.php | 116 + .../Sniffs/PHP/DiscouragedFunctionsSniff.php | 38 + .../Squiz/Sniffs/PHP/EmbeddedPhpSniff.php | 402 + .../Standards/Squiz/Sniffs/PHP/EvalSniff.php | 48 + .../Squiz/Sniffs/PHP/GlobalKeywordSniff.php | 53 + .../Squiz/Sniffs/PHP/HeredocSniff.php | 51 + .../Squiz/Sniffs/PHP/InnerFunctionsSniff.php | 68 + .../Sniffs/PHP/LowercasePHPFunctionsSniff.php | 162 + .../Sniffs/PHP/NonExecutableCodeSniff.php | 273 + .../Sniffs/Scope/MemberVarScopeSniff.php | 77 + .../Squiz/Sniffs/Scope/MethodScopeSniff.php | 92 + .../Sniffs/Scope/StaticThisUsageSniff.php | 128 + .../Strings/ConcatenationSpacingSniff.php | 164 + .../Sniffs/Strings/DoubleQuoteUsageSniff.php | 144 + .../Sniffs/Strings/EchoedStringsSniff.php | 88 + .../Sniffs/WhiteSpace/CastSpacingSniff.php | 65 + .../ControlStructureSpacingSniff.php | 347 + .../FunctionClosingBraceSpaceSniff.php | 164 + .../FunctionOpeningBraceSpaceSniff.php | 98 + .../WhiteSpace/FunctionSpacingSniff.php | 353 + .../LanguageConstructSpacingSniff.php | 89 + .../LogicalOperatorSpacingSniff.php | 102 + .../WhiteSpace/MemberVarSpacingSniff.php | 219 + .../WhiteSpace/ObjectOperatorSpacingSniff.php | 167 + .../WhiteSpace/OperatorSpacingSniff.php | 380 + .../WhiteSpace/PropertyLabelSpacingSniff.php | 79 + .../WhiteSpace/ScopeClosingBraceSniff.php | 105 + .../WhiteSpace/ScopeKeywordSpacingSniff.php | 125 + .../WhiteSpace/SemicolonSpacingSniff.php | 116 + .../WhiteSpace/SuperfluousWhitespaceSniff.php | 264 + .../Arrays/ArrayBracketSpacingUnitTest.inc | 31 + .../ArrayBracketSpacingUnitTest.inc.fixed | 31 + .../Arrays/ArrayBracketSpacingUnitTest.php | 57 + .../Arrays/ArrayDeclarationUnitTest.1.inc | 481 ++ .../ArrayDeclarationUnitTest.1.inc.fixed | 517 ++ .../Arrays/ArrayDeclarationUnitTest.2.inc | 470 ++ .../ArrayDeclarationUnitTest.2.inc.fixed | 504 ++ .../Tests/Arrays/ArrayDeclarationUnitTest.php | 236 + ...assDefinitionClosingBraceSpaceUnitTest.css | 81 + ...initionClosingBraceSpaceUnitTest.css.fixed | 85 + ...assDefinitionClosingBraceSpaceUnitTest.php | 60 + .../ClassDefinitionNameSpacingUnitTest.css | 66 + .../ClassDefinitionNameSpacingUnitTest.php | 51 + ...assDefinitionOpeningBraceSpaceUnitTest.css | 108 + ...initionOpeningBraceSpaceUnitTest.css.fixed | 106 + ...assDefinitionOpeningBraceSpaceUnitTest.php | 64 + .../Squiz/Tests/CSS/ColonSpacingUnitTest.css | 42 + .../Tests/CSS/ColonSpacingUnitTest.css.fixed | 40 + .../Squiz/Tests/CSS/ColonSpacingUnitTest.php | 60 + .../Tests/CSS/ColourDefinitionUnitTest.css | 16 + .../CSS/ColourDefinitionUnitTest.css.fixed | 16 + .../Tests/CSS/ColourDefinitionUnitTest.php | 52 + ...sallowMultipleStyleDefinitionsUnitTest.css | 17 + ...MultipleStyleDefinitionsUnitTest.css.fixed | 27 + ...sallowMultipleStyleDefinitionsUnitTest.php | 54 + .../CSS/DuplicateClassDefinitionUnitTest.css | 103 + .../CSS/DuplicateClassDefinitionUnitTest.php | 54 + .../CSS/DuplicateStyleDefinitionUnitTest.css | 27 + .../CSS/DuplicateStyleDefinitionUnitTest.php | 48 + .../CSS/EmptyClassDefinitionUnitTest.css | 15 + .../CSS/EmptyClassDefinitionUnitTest.php | 54 + .../CSS/EmptyStyleDefinitionUnitTest.css | 11 + .../CSS/EmptyStyleDefinitionUnitTest.php | 53 + .../Tests/CSS/ForbiddenStylesUnitTest.css | 18 + .../CSS/ForbiddenStylesUnitTest.css.fixed | 18 + .../Tests/CSS/ForbiddenStylesUnitTest.php | 57 + .../Squiz/Tests/CSS/IndentationUnitTest.1.css | 79 + .../Tests/CSS/IndentationUnitTest.1.css.fixed | 73 + .../Squiz/Tests/CSS/IndentationUnitTest.2.css | 3 + .../Squiz/Tests/CSS/IndentationUnitTest.php | 75 + .../CSS/LowercaseStyleDefinitionUnitTest.css | 14 + .../CSS/LowercaseStyleDefinitionUnitTest.php | 53 + .../Squiz/Tests/CSS/MissingColonUnitTest.css | 21 + .../Squiz/Tests/CSS/MissingColonUnitTest.php | 53 + .../Squiz/Tests/CSS/NamedColoursUnitTest.css | 25 + .../Squiz/Tests/CSS/NamedColoursUnitTest.php | 54 + .../Squiz/Tests/CSS/OpacityUnitTest.css | 35 + .../Squiz/Tests/CSS/OpacityUnitTest.css.fixed | 35 + .../Squiz/Tests/CSS/OpacityUnitTest.php | 60 + .../Tests/CSS/SemicolonSpacingUnitTest.css | 61 + .../CSS/SemicolonSpacingUnitTest.css.fixed | 58 + .../Tests/CSS/SemicolonSpacingUnitTest.php | 58 + .../Squiz/Tests/CSS/ShorthandSizeUnitTest.css | 45 + .../Tests/CSS/ShorthandSizeUnitTest.css.fixed | 41 + .../Squiz/Tests/CSS/ShorthandSizeUnitTest.php | 59 + .../Classes/ClassDeclarationUnitTest.inc | 121 + .../ClassDeclarationUnitTest.inc.fixed | 132 + .../Classes/ClassDeclarationUnitTest.php | 84 + .../Tests/Classes/ClassFileNameUnitTest.inc | 37 + .../Tests/Classes/ClassFileNameUnitTest.php | 70 + .../Classes/DuplicatePropertyUnitTest.js | 45 + .../Classes/DuplicatePropertyUnitTest.php | 52 + .../LowercaseClassKeywordsUnitTest.inc | 13 + .../LowercaseClassKeywordsUnitTest.inc.fixed | 13 + .../LowercaseClassKeywordsUnitTest.php | 58 + .../Classes/SelfMemberReferenceUnitTest.inc | 174 + .../SelfMemberReferenceUnitTest.inc.fixed | 162 + .../Classes/SelfMemberReferenceUnitTest.php | 64 + .../Tests/Classes/ValidClassNameUnitTest.inc | 147 + .../Tests/Classes/ValidClassNameUnitTest.php | 70 + .../Tests/Commenting/BlockCommentUnitTest.inc | 258 + .../Commenting/BlockCommentUnitTest.inc.fixed | 260 + .../Tests/Commenting/BlockCommentUnitTest.php | 102 + .../Tests/Commenting/ClassCommentUnitTest.inc | 125 + .../Tests/Commenting/ClassCommentUnitTest.php | 59 + .../ClosingDeclarationCommentUnitTest.inc | 82 + .../ClosingDeclarationCommentUnitTest.php | 57 + .../DocCommentAlignmentUnitTest.inc | 83 + .../DocCommentAlignmentUnitTest.inc.fixed | 83 + .../Commenting/DocCommentAlignmentUnitTest.js | 76 + .../DocCommentAlignmentUnitTest.js.fixed | 76 + .../DocCommentAlignmentUnitTest.php | 70 + .../Commenting/EmptyCatchCommentUnitTest.inc | 55 + .../Commenting/EmptyCatchCommentUnitTest.php | 55 + .../Commenting/FileCommentUnitTest.1.inc | 43 + .../FileCommentUnitTest.1.inc.fixed | 43 + .../Tests/Commenting/FileCommentUnitTest.1.js | 40 + .../Commenting/FileCommentUnitTest.1.js.fixed | 40 + .../Commenting/FileCommentUnitTest.2.inc | 11 + .../Tests/Commenting/FileCommentUnitTest.2.js | 10 + .../Commenting/FileCommentUnitTest.3.inc | 9 + .../Commenting/FileCommentUnitTest.4.inc | 3 + .../Commenting/FileCommentUnitTest.5.inc | 4 + .../Commenting/FileCommentUnitTest.6.inc | 12 + .../Tests/Commenting/FileCommentUnitTest.php | 74 + .../FunctionCommentThrowTagUnitTest.inc | 511 ++ .../FunctionCommentThrowTagUnitTest.php | 60 + .../Commenting/FunctionCommentUnitTest.inc | 1002 +++ .../FunctionCommentUnitTest.inc.fixed | 1002 +++ .../Commenting/FunctionCommentUnitTest.php | 165 + .../Commenting/InlineCommentUnitTest.inc | 159 + .../InlineCommentUnitTest.inc.fixed | 152 + .../Tests/Commenting/InlineCommentUnitTest.js | 129 + .../Commenting/InlineCommentUnitTest.js.fixed | 125 + .../Commenting/InlineCommentUnitTest.php | 91 + .../LongConditionClosingCommentUnitTest.inc | 962 +++ ...gConditionClosingCommentUnitTest.inc.fixed | 962 +++ .../LongConditionClosingCommentUnitTest.js | 444 ++ ...ngConditionClosingCommentUnitTest.js.fixed | 444 ++ .../LongConditionClosingCommentUnitTest.php | 100 + .../PostStatementCommentUnitTest.1.js | 36 + .../PostStatementCommentUnitTest.1.js.fixed | 39 + .../PostStatementCommentUnitTest.2.js | 2 + .../PostStatementCommentUnitTest.inc | 48 + .../PostStatementCommentUnitTest.inc.fixed | 52 + .../PostStatementCommentUnitTest.php | 68 + .../Commenting/VariableCommentUnitTest.inc | 365 + .../VariableCommentUnitTest.inc.fixed | 365 + .../Commenting/VariableCommentUnitTest.php | 81 + .../ControlSignatureUnitTest.inc | 304 + .../ControlSignatureUnitTest.inc.fixed | 307 + .../ControlSignatureUnitTest.js | 135 + .../ControlSignatureUnitTest.js.fixed | 141 + .../ControlSignatureUnitTest.php | 101 + .../ElseIfDeclarationUnitTest.inc | 14 + .../ElseIfDeclarationUnitTest.inc.fixed | 14 + .../ElseIfDeclarationUnitTest.php | 51 + .../ForEachLoopDeclarationUnitTest.inc | 36 + .../ForEachLoopDeclarationUnitTest.inc.fixed | 36 + .../ForEachLoopDeclarationUnitTest.php | 56 + .../ForLoopDeclarationUnitTest.inc | 129 + .../ForLoopDeclarationUnitTest.inc.fixed | 95 + .../ForLoopDeclarationUnitTest.js | 125 + .../ForLoopDeclarationUnitTest.js.fixed | 91 + .../ForLoopDeclarationUnitTest.php | 132 + .../InlineIfDeclarationUnitTest.inc | 48 + .../InlineIfDeclarationUnitTest.inc.fixed | 48 + .../InlineIfDeclarationUnitTest.php | 75 + .../LowercaseDeclarationUnitTest.inc | 22 + .../LowercaseDeclarationUnitTest.inc.fixed | 22 + .../LowercaseDeclarationUnitTest.php | 60 + .../SwitchDeclarationUnitTest.inc | 333 + .../SwitchDeclarationUnitTest.js | 287 + .../SwitchDeclarationUnitTest.php | 152 + .../Squiz/Tests/Debug/JSLintUnitTest.js | 2 + .../Squiz/Tests/Debug/JSLintUnitTest.php | 69 + .../Tests/Debug/JavaScriptLintUnitTest.js | 2 + .../Tests/Debug/JavaScriptLintUnitTest.php | 66 + .../Tests/Files/FileExtensionUnitTest.1.inc | 3 + .../Tests/Files/FileExtensionUnitTest.2.inc | 3 + .../Tests/Files/FileExtensionUnitTest.3.inc | 3 + .../Tests/Files/FileExtensionUnitTest.4.inc | 3 + .../Tests/Files/FileExtensionUnitTest.php | 55 + .../Formatting/OperatorBracketUnitTest.inc | 176 + .../OperatorBracketUnitTest.inc.fixed | 176 + .../Formatting/OperatorBracketUnitTest.js | 118 + .../OperatorBracketUnitTest.js.fixed | 118 + .../Formatting/OperatorBracketUnitTest.php | 112 + ...tionDeclarationArgumentSpacingUnitTest.inc | 111 + ...clarationArgumentSpacingUnitTest.inc.fixed | 111 + ...tionDeclarationArgumentSpacingUnitTest.php | 86 + .../Functions/FunctionDeclarationUnitTest.inc | 75 + .../Functions/FunctionDeclarationUnitTest.php | 51 + .../FunctionDuplicateArgumentUnitTest.inc | 6 + .../FunctionDuplicateArgumentUnitTest.php | 52 + .../Functions/GlobalFunctionUnitTest.inc | 17 + .../Functions/GlobalFunctionUnitTest.php | 48 + .../LowercaseFunctionKeywordsUnitTest.inc | 28 + ...owercaseFunctionKeywordsUnitTest.inc.fixed | 28 + .../LowercaseFunctionKeywordsUnitTest.php | 58 + .../MultiLineFunctionDeclarationUnitTest.inc | 199 + ...iLineFunctionDeclarationUnitTest.inc.fixed | 211 + .../MultiLineFunctionDeclarationUnitTest.js | 73 + ...tiLineFunctionDeclarationUnitTest.js.fixed | 81 + .../MultiLineFunctionDeclarationUnitTest.php | 99 + .../ValidFunctionNameUnitTest.inc | 27 + .../ValidFunctionNameUnitTest.php | 59 + .../ValidVariableNameUnitTest.inc | 148 + .../ValidVariableNameUnitTest.php | 86 + .../DisallowObjectStringIndexUnitTest.js | 37 + .../DisallowObjectStringIndexUnitTest.php | 59 + .../Objects/ObjectInstantiationUnitTest.inc | 17 + .../Objects/ObjectInstantiationUnitTest.php | 51 + .../Objects/ObjectMemberCommaUnitTest.js | 47 + .../ObjectMemberCommaUnitTest.js.fixed | 47 + .../Objects/ObjectMemberCommaUnitTest.php | 53 + .../ComparisonOperatorUsageUnitTest.inc | 138 + .../ComparisonOperatorUsageUnitTest.js | 71 + .../ComparisonOperatorUsageUnitTest.php | 101 + .../IncrementDecrementUsageUnitTest.inc | 42 + .../IncrementDecrementUsageUnitTest.php | 60 + .../ValidLogicalOperatorsUnitTest.inc | 28 + .../ValidLogicalOperatorsUnitTest.php | 52 + .../Tests/PHP/CommentedOutCodeUnitTest.css | 23 + .../Tests/PHP/CommentedOutCodeUnitTest.inc | 158 + .../Tests/PHP/CommentedOutCodeUnitTest.php | 77 + .../PHP/DisallowBooleanStatementUnitTest.inc | 27 + .../PHP/DisallowBooleanStatementUnitTest.php | 53 + .../DisallowComparisonAssignmentUnitTest.inc | 67 + .../DisallowComparisonAssignmentUnitTest.php | 59 + .../Tests/PHP/DisallowInlineIfUnitTest.inc | 18 + .../Tests/PHP/DisallowInlineIfUnitTest.js | 2 + .../Tests/PHP/DisallowInlineIfUnitTest.php | 63 + .../DisallowMultipleAssignmentsUnitTest.inc | 77 + .../DisallowMultipleAssignmentsUnitTest.php | 56 + .../DisallowSizeFunctionsInLoopsUnitTest.inc | 58 + .../DisallowSizeFunctionsInLoopsUnitTest.js | 13 + .../DisallowSizeFunctionsInLoopsUnitTest.php | 73 + .../PHP/DiscouragedFunctionsUnitTest.inc | 5 + .../PHP/DiscouragedFunctionsUnitTest.php | 52 + .../Squiz/Tests/PHP/EmbeddedPhpUnitTest.inc | 119 + .../Tests/PHP/EmbeddedPhpUnitTest.inc.fixed | 119 + .../Squiz/Tests/PHP/EmbeddedPhpUnitTest.php | 78 + .../Squiz/Tests/PHP/EvalUnitTest.inc | 5 + .../Squiz/Tests/PHP/EvalUnitTest.php | 51 + .../Squiz/Tests/PHP/GlobalKeywordUnitTest.inc | 13 + .../Squiz/Tests/PHP/GlobalKeywordUnitTest.php | 51 + .../Squiz/Tests/PHP/HeredocUnitTest.inc | 27 + .../Squiz/Tests/PHP/HeredocUnitTest.php | 51 + .../Tests/PHP/InnerFunctionsUnitTest.inc | 50 + .../Tests/PHP/InnerFunctionsUnitTest.php | 51 + .../PHP/LowercasePHPFunctionsUnitTest.inc | 43 + .../LowercasePHPFunctionsUnitTest.inc.fixed | 43 + .../PHP/LowercasePHPFunctionsUnitTest.php | 55 + .../Tests/PHP/NonExecutableCodeUnitTest.1.inc | 298 + .../Tests/PHP/NonExecutableCodeUnitTest.2.inc | 55 + .../Tests/PHP/NonExecutableCodeUnitTest.php | 97 + .../Tests/Scope/MemberVarScopeUnitTest.inc | 72 + .../Tests/Scope/MemberVarScopeUnitTest.php | 57 + .../Squiz/Tests/Scope/MethodScopeUnitTest.inc | 42 + .../Squiz/Tests/Scope/MethodScopeUnitTest.php | 52 + .../Tests/Scope/StaticThisUsageUnitTest.inc | 117 + .../Tests/Scope/StaticThisUsageUnitTest.php | 61 + .../Strings/ConcatenationSpacingUnitTest.inc | 49 + .../ConcatenationSpacingUnitTest.inc.fixed | 47 + .../Strings/ConcatenationSpacingUnitTest.php | 66 + .../Strings/DoubleQuoteUsageUnitTest.inc | 37 + .../DoubleQuoteUsageUnitTest.inc.fixed | 37 + .../Strings/DoubleQuoteUsageUnitTest.php | 62 + .../Tests/Strings/EchoedStringsUnitTest.inc | 13 + .../Strings/EchoedStringsUnitTest.inc.fixed | 13 + .../Tests/Strings/EchoedStringsUnitTest.php | 55 + .../Tests/WhiteSpace/CastSpacingUnitTest.inc | 9 + .../WhiteSpace/CastSpacingUnitTest.inc.fixed | 9 + .../Tests/WhiteSpace/CastSpacingUnitTest.php | 54 + .../ControlStructureSpacingUnitTest.inc | 253 + .../ControlStructureSpacingUnitTest.inc.fixed | 246 + .../ControlStructureSpacingUnitTest.js | 93 + .../ControlStructureSpacingUnitTest.js.fixed | 93 + .../ControlStructureSpacingUnitTest.php | 100 + .../FunctionClosingBraceSpaceUnitTest.inc | 39 + ...unctionClosingBraceSpaceUnitTest.inc.fixed | 45 + .../FunctionClosingBraceSpaceUnitTest.js | 132 + ...FunctionClosingBraceSpaceUnitTest.js.fixed | 133 + .../FunctionClosingBraceSpaceUnitTest.php | 76 + .../FunctionOpeningBraceSpaceUnitTest.inc | 54 + ...unctionOpeningBraceSpaceUnitTest.inc.fixed | 49 + .../FunctionOpeningBraceSpaceUnitTest.js | 115 + ...FunctionOpeningBraceSpaceUnitTest.js.fixed | 109 + .../FunctionOpeningBraceSpaceUnitTest.php | 68 + .../WhiteSpace/FunctionSpacingUnitTest.1.inc | 545 ++ .../FunctionSpacingUnitTest.1.inc.fixed | 629 ++ .../WhiteSpace/FunctionSpacingUnitTest.2.inc | 5 + .../FunctionSpacingUnitTest.2.inc.fixed | 7 + .../WhiteSpace/FunctionSpacingUnitTest.3.inc | 10 + .../FunctionSpacingUnitTest.3.inc.fixed | 7 + .../WhiteSpace/FunctionSpacingUnitTest.4.inc | 7 + .../WhiteSpace/FunctionSpacingUnitTest.5.inc | 8 + .../FunctionSpacingUnitTest.5.inc.fixed | 10 + .../WhiteSpace/FunctionSpacingUnitTest.6.inc | 13 + .../FunctionSpacingUnitTest.6.inc.fixed | 10 + .../WhiteSpace/FunctionSpacingUnitTest.7.inc | 10 + .../WhiteSpace/FunctionSpacingUnitTest.php | 129 + .../LanguageConstructSpacingUnitTest.inc | 43 + ...LanguageConstructSpacingUnitTest.inc.fixed | 41 + .../LanguageConstructSpacingUnitTest.php | 60 + .../LogicalOperatorSpacingUnitTest.inc | 19 + .../LogicalOperatorSpacingUnitTest.inc.fixed | 19 + .../LogicalOperatorSpacingUnitTest.js | 19 + .../LogicalOperatorSpacingUnitTest.js.fixed | 19 + .../LogicalOperatorSpacingUnitTest.php | 56 + .../WhiteSpace/MemberVarSpacingUnitTest.inc | 334 + .../MemberVarSpacingUnitTest.inc.fixed | 321 + .../WhiteSpace/MemberVarSpacingUnitTest.php | 80 + .../ObjectOperatorSpacingUnitTest.inc | 52 + .../ObjectOperatorSpacingUnitTest.inc.fixed | 48 + .../ObjectOperatorSpacingUnitTest.php | 68 + .../WhiteSpace/OperatorSpacingUnitTest.inc | 476 ++ .../OperatorSpacingUnitTest.inc.fixed | 470 ++ .../WhiteSpace/OperatorSpacingUnitTest.js | 103 + .../OperatorSpacingUnitTest.js.fixed | 97 + .../WhiteSpace/OperatorSpacingUnitTest.php | 170 + .../PropertyLabelSpacingUnitTest.js | 40 + .../PropertyLabelSpacingUnitTest.js.fixed | 39 + .../PropertyLabelSpacingUnitTest.php | 55 + .../WhiteSpace/ScopeClosingBraceUnitTest.inc | 109 + .../ScopeClosingBraceUnitTest.inc.fixed | 110 + .../WhiteSpace/ScopeClosingBraceUnitTest.php | 54 + .../ScopeKeywordSpacingUnitTest.inc | 84 + .../ScopeKeywordSpacingUnitTest.inc.fixed | 79 + .../ScopeKeywordSpacingUnitTest.php | 61 + .../WhiteSpace/SemicolonSpacingUnitTest.inc | 42 + .../SemicolonSpacingUnitTest.inc.fixed | 41 + .../WhiteSpace/SemicolonSpacingUnitTest.js | 25 + .../SemicolonSpacingUnitTest.js.fixed | 25 + .../WhiteSpace/SemicolonSpacingUnitTest.php | 83 + .../SuperfluousWhitespaceUnitTest.1.css | 25 + .../SuperfluousWhitespaceUnitTest.1.css.fixed | 23 + .../SuperfluousWhitespaceUnitTest.1.inc | 74 + .../SuperfluousWhitespaceUnitTest.1.inc.fixed | 68 + .../SuperfluousWhitespaceUnitTest.1.js | 56 + .../SuperfluousWhitespaceUnitTest.1.js.fixed | 50 + .../SuperfluousWhitespaceUnitTest.2.css | 3 + .../SuperfluousWhitespaceUnitTest.2.css.fixed | 3 + .../SuperfluousWhitespaceUnitTest.2.inc | 9 + .../SuperfluousWhitespaceUnitTest.2.inc.fixed | 7 + .../SuperfluousWhitespaceUnitTest.2.js | 1 + .../SuperfluousWhitespaceUnitTest.2.js.fixed | 1 + .../SuperfluousWhitespaceUnitTest.3.css | 3 + .../SuperfluousWhitespaceUnitTest.3.css.fixed | 3 + .../SuperfluousWhitespaceUnitTest.3.inc | 14 + .../SuperfluousWhitespaceUnitTest.3.inc.fixed | 5 + .../SuperfluousWhitespaceUnitTest.3.js | 1 + .../SuperfluousWhitespaceUnitTest.3.js.fixed | 1 + .../SuperfluousWhitespaceUnitTest.4.inc | 4 + .../SuperfluousWhitespaceUnitTest.4.inc.fixed | 4 + .../SuperfluousWhitespaceUnitTest.5.inc | 5 + .../SuperfluousWhitespaceUnitTest.5.inc.fixed | 4 + .../SuperfluousWhitespaceUnitTest.php | 113 + .../src/Standards/Squiz/ruleset.xml | 132 + .../Zend/Docs/Debug/CodeAnalyzerStandard.xml | 25 + .../Zend/Docs/Files/ClosingTagStandard.xml | 22 + .../ValidVariableNameStandard.xml | 37 + .../Zend/Sniffs/Debug/CodeAnalyzerSniff.php | 97 + .../Zend/Sniffs/Files/ClosingTagSniff.php | 79 + .../ValidVariableNameSniff.php | 196 + .../Zend/Tests/Debug/CodeAnalyzerUnitTest.inc | 6 + .../Zend/Tests/Debug/CodeAnalyzerUnitTest.php | 66 + .../Zend/Tests/Files/ClosingTagUnitTest.1.inc | 12 + .../Files/ClosingTagUnitTest.1.inc.fixed | 12 + .../Zend/Tests/Files/ClosingTagUnitTest.2.inc | 3 + .../Zend/Tests/Files/ClosingTagUnitTest.3.inc | 1 + .../Files/ClosingTagUnitTest.3.inc.fixed | 1 + .../Zend/Tests/Files/ClosingTagUnitTest.4.inc | 1 + .../Files/ClosingTagUnitTest.4.inc.fixed | 1 + .../Zend/Tests/Files/ClosingTagUnitTest.5.inc | 1 + .../Files/ClosingTagUnitTest.5.inc.fixed | 1 + .../Zend/Tests/Files/ClosingTagUnitTest.6.inc | 3 + .../Files/ClosingTagUnitTest.6.inc.fixed | 3 + .../Zend/Tests/Files/ClosingTagUnitTest.7.inc | 1 + .../Files/ClosingTagUnitTest.7.inc.fixed | 1 + .../Zend/Tests/Files/ClosingTagUnitTest.php | 65 + .../ValidVariableNameUnitTest.inc | 122 + .../ValidVariableNameUnitTest.php | 94 + .../src/Standards/Zend/ruleset.xml | 32 + .../php_codesniffer/src/Tokenizers/CSS.php | 537 ++ .../src/Tokenizers/Comment.php | 277 + .../php_codesniffer/src/Tokenizers/JS.php | 1256 ++++ .../php_codesniffer/src/Tokenizers/PHP.php | 2583 +++++++ .../src/Tokenizers/Tokenizer.php | 1710 +++++ .../php_codesniffer/src/Util/Cache.php | 348 + .../php_codesniffer/src/Util/Common.php | 520 ++ .../php_codesniffer/src/Util/Standards.php | 334 + .../php_codesniffer/src/Util/Timing.php | 86 + .../php_codesniffer/src/Util/Tokens.php | 691 ++ .../php_codesniffer/tests/AllTests.php | 64 + .../tests/Core/AbstractMethodUnitTest.php | 140 + .../php_codesniffer/tests/Core/AllTests.php | 63 + .../Autoloader/DetermineLoadedClassTest.php | 118 + .../tests/Core/Autoloader/TestFiles/A.inc | 3 + .../tests/Core/Autoloader/TestFiles/B.inc | 4 + .../tests/Core/Autoloader/TestFiles/C.inc | 4 + .../tests/Core/Autoloader/TestFiles/Sub/C.inc | 5 + .../tests/Core/ErrorSuppressionTest.php | 1265 ++++ .../Core/File/FindEndOfStatementTest.inc | 55 + .../Core/File/FindEndOfStatementTest.php | 240 + .../Core/File/FindExtendedClassNameTest.inc | 37 + .../Core/File/FindExtendedClassNameTest.php | 93 + .../FindImplementedInterfaceNamesTest.inc | 26 + .../FindImplementedInterfaceNamesTest.php | 89 + .../Core/File/GetMemberPropertiesTest.inc | 195 + .../Core/File/GetMemberPropertiesTest.php | 554 ++ .../Core/File/GetMethodParametersTest.inc | 43 + .../Core/File/GetMethodParametersTest.php | 361 + .../Core/File/GetMethodPropertiesTest.inc | 85 + .../Core/File/GetMethodPropertiesTest.php | 496 ++ .../tests/Core/File/IsReferenceTest.inc | 150 + .../tests/Core/File/IsReferenceTest.php | 248 + .../tests/Core/Filters/Filter/AcceptTest.php | 154 + .../tests/Core/Filters/Filter/AcceptTest.xml | 16 + .../tests/Core/IsCamelCapsTest.php | 135 + .../RuleInclusionAbsoluteLinuxTest.php | 118 + .../RuleInclusionAbsoluteLinuxTest.xml | 11 + .../RuleInclusionAbsoluteWindowsTest.php | 119 + .../RuleInclusionAbsoluteWindowsTest.xml | 11 + .../Ruleset/RuleInclusionTest-include.xml | 10 + .../tests/Core/Ruleset/RuleInclusionTest.php | 297 + .../tests/Core/Ruleset/RuleInclusionTest.xml | 46 + .../Core/Sniffs/AbstractArraySniffTest.inc | 51 + .../Core/Sniffs/AbstractArraySniffTest.php | 290 + .../Sniffs/AbstractArraySniffTestable.php | 65 + .../AnonClassParenthesisOwnerTest.inc | 19 + .../AnonClassParenthesisOwnerTest.php | 144 + .../Core/Tokenizer/BackfillFnTokenTest.inc | 135 + .../Core/Tokenizer/BackfillFnTokenTest.php | 749 ++ .../BackfillNumericSeparatorTest.inc | 82 + .../BackfillNumericSeparatorTest.php | 380 + .../Tokenizer/NullsafeObjectOperatorTest.inc | 29 + .../Tokenizer/NullsafeObjectOperatorTest.php | 140 + .../ScopeSettingWithNamespaceOperatorTest.inc | 19 + .../ScopeSettingWithNamespaceOperatorTest.php | 98 + .../tests/Core/Tokenizer/ShortArrayTest.inc | 94 + .../tests/Core/Tokenizer/ShortArrayTest.php | 131 + .../Tokenizer/StableCommentWhitespaceTest.inc | 139 + .../Tokenizer/StableCommentWhitespaceTest.php | 1056 +++ .../StableCommentWhitespaceWinTest.inc | 63 + .../StableCommentWhitespaceWinTest.php | 367 + .../UndoNamespacedNameSingleTokenTest.inc | 147 + .../UndoNamespacedNameSingleTokenTest.php | 1297 ++++ .../php_codesniffer/tests/FileList.php | 94 + .../tests/Standards/AbstractSniffUnitTest.php | 461 ++ .../tests/Standards/AllSniffs.php | 123 + .../php_codesniffer/tests/TestSuite.php | 35 + .../php_codesniffer/tests/TestSuite7.php | 35 + .../php_codesniffer/tests/bootstrap.php | 91 + .../symfony/config/Builder/ClassBuilder.php | 166 + .../config/Builder/ConfigBuilderGenerator.php | 420 ++ .../ConfigBuilderGeneratorInterface.php | 27 + .../config/Builder/ConfigBuilderInterface.php | 32 + app/vendor/symfony/config/Builder/Method.php | 34 + .../symfony/config/Builder/Property.php | 75 + app/vendor/symfony/config/CHANGELOG.md | 129 + app/vendor/symfony/config/ConfigCache.php | 62 + .../symfony/config/ConfigCacheFactory.php | 47 + .../config/ConfigCacheFactoryInterface.php | 32 + .../symfony/config/ConfigCacheInterface.php | 49 + .../symfony/config/Definition/ArrayNode.php | 396 + .../symfony/config/Definition/BaseNode.php | 591 ++ .../symfony/config/Definition/BooleanNode.php | 55 + .../Builder/ArrayNodeDefinition.php | 549 ++ .../Builder/BooleanNodeDefinition.php | 53 + .../Builder/BuilderAwareInterface.php | 25 + .../Definition/Builder/EnumNodeDefinition.php | 56 + .../config/Definition/Builder/ExprBuilder.php | 246 + .../Builder/FloatNodeDefinition.php | 32 + .../Builder/IntegerNodeDefinition.php | 32 + .../Definition/Builder/MergeBuilder.php | 63 + .../config/Definition/Builder/NodeBuilder.php | 219 + .../Definition/Builder/NodeDefinition.php | 385 + .../Builder/NodeParentInterface.php | 21 + .../Builder/NormalizationBuilder.php | 60 + .../Builder/NumericNodeDefinition.php | 73 + .../Builder/ParentNodeDefinitionInterface.php | 51 + .../Builder/ScalarNodeDefinition.php | 32 + .../config/Definition/Builder/TreeBuilder.php | 63 + .../Definition/Builder/ValidationBuilder.php | 44 + .../Builder/VariableNodeDefinition.php | 68 + .../Definition/ConfigurationInterface.php | 27 + .../Definition/Dumper/XmlReferenceDumper.php | 306 + .../Definition/Dumper/YamlReferenceDumper.php | 251 + .../symfony/config/Definition/EnumNode.php | 65 + .../Exception/DuplicateKeyException.php | 22 + .../config/Definition/Exception/Exception.php | 21 + .../Exception/ForbiddenOverwriteException.php | 22 + .../InvalidConfigurationException.php | 47 + .../Exception/InvalidDefinitionException.php | 21 + .../Exception/InvalidTypeException.php | 21 + .../Exception/UnsetKeyException.php | 22 + .../symfony/config/Definition/FloatNode.php | 51 + .../symfony/config/Definition/IntegerNode.php | 46 + .../config/Definition/NodeInterface.php | 100 + .../symfony/config/Definition/NumericNode.php | 68 + .../symfony/config/Definition/Processor.php | 95 + .../Definition/PrototypeNodeInterface.php | 25 + .../config/Definition/PrototypedArrayNode.php | 350 + .../symfony/config/Definition/ScalarNode.php | 67 + .../config/Definition/VariableNode.php | 142 + ...LoaderImportCircularReferenceException.php | 33 + .../FileLocatorFileNotFoundException.php | 34 + .../config/Exception/LoaderLoadException.php | 115 + app/vendor/symfony/config/FileLocator.php | 94 + .../symfony/config/FileLocatorInterface.php | 34 + app/vendor/symfony/config/LICENSE | 19 + .../config/Loader/DelegatingLoader.php | 50 + .../symfony/config/Loader/FileLoader.php | 180 + .../symfony/config/Loader/GlobFileLoader.php | 36 + app/vendor/symfony/config/Loader/Loader.php | 84 + .../symfony/config/Loader/LoaderInterface.php | 52 + .../symfony/config/Loader/LoaderResolver.php | 68 + .../config/Loader/LoaderResolverInterface.php | 30 + .../config/Loader/ParamConfigurator.php | 32 + app/vendor/symfony/config/README.md | 15 + .../Resource/ClassExistenceResource.php | 238 + .../config/Resource/ComposerResource.php | 70 + .../config/Resource/DirectoryResource.php | 106 + .../config/Resource/FileExistenceResource.php | 62 + .../symfony/config/Resource/FileResource.php | 67 + .../symfony/config/Resource/GlobResource.php | 238 + .../Resource/ReflectionClassResource.php | 261 + .../config/Resource/ResourceInterface.php | 33 + .../Resource/SelfCheckingResourceChecker.php | 36 + .../SelfCheckingResourceInterface.php | 30 + .../config/ResourceCheckerConfigCache.php | 188 + .../ResourceCheckerConfigCacheFactory.php | 44 + .../config/ResourceCheckerInterface.php | 45 + .../Util/Exception/InvalidXmlException.php | 21 + .../Util/Exception/XmlParsingException.php | 21 + app/vendor/symfony/config/Util/XmlUtils.php | 284 + app/vendor/symfony/config/composer.json | 46 + app/vendor/symfony/console/Application.php | 1239 ++++ .../symfony/console/Attribute/AsCommand.php | 39 + app/vendor/symfony/console/CHANGELOG.md | 210 + .../console/CI/GithubActionReporter.php | 99 + app/vendor/symfony/console/Color.php | 180 + .../symfony/console/Command/Command.php | 704 ++ .../symfony/console/Command/HelpCommand.php | 83 + .../symfony/console/Command/LazyCommand.php | 211 + .../symfony/console/Command/ListCommand.php | 77 + .../symfony/console/Command/LockableTrait.php | 69 + .../Command/SignalableCommandInterface.php | 30 + .../CommandLoader/CommandLoaderInterface.php | 42 + .../CommandLoader/ContainerCommandLoader.php | 63 + .../CommandLoader/FactoryCommandLoader.php | 62 + app/vendor/symfony/console/ConsoleEvents.php | 72 + app/vendor/symfony/console/Cursor.php | 168 + .../AddConsoleCommandPass.php | 148 + .../Descriptor/ApplicationDescription.php | 143 + .../symfony/console/Descriptor/Descriptor.php | 94 + .../Descriptor/DescriptorInterface.php | 29 + .../console/Descriptor/JsonDescriptor.php | 181 + .../console/Descriptor/MarkdownDescriptor.php | 206 + .../console/Descriptor/TextDescriptor.php | 341 + .../console/Descriptor/XmlDescriptor.php | 247 + .../console/Event/ConsoleCommandEvent.php | 51 + .../console/Event/ConsoleErrorEvent.php | 58 + .../symfony/console/Event/ConsoleEvent.php | 67 + .../console/Event/ConsoleSignalEvent.php | 35 + .../console/Event/ConsoleTerminateEvent.php | 43 + .../console/EventListener/ErrorListener.php | 95 + .../Exception/CommandNotFoundException.php | 43 + .../console/Exception/ExceptionInterface.php | 21 + .../Exception/InvalidArgumentException.php | 19 + .../Exception/InvalidOptionException.php | 21 + .../console/Exception/LogicException.php | 19 + .../Exception/MissingInputException.php | 21 + .../Exception/NamespaceNotFoundException.php | 21 + .../console/Exception/RuntimeException.php | 19 + .../console/Formatter/NullOutputFormatter.php | 72 + .../Formatter/NullOutputFormatterStyle.php | 65 + .../console/Formatter/OutputFormatter.php | 283 + .../Formatter/OutputFormatterInterface.php | 58 + .../Formatter/OutputFormatterStyle.php | 108 + .../OutputFormatterStyleInterface.php | 52 + .../Formatter/OutputFormatterStyleStack.php | 110 + .../WrappableOutputFormatterInterface.php | 25 + .../console/Helper/DebugFormatterHelper.php | 107 + .../console/Helper/DescriptorHelper.php | 87 + app/vendor/symfony/console/Helper/Dumper.php | 64 + .../console/Helper/FormatterHelper.php | 92 + app/vendor/symfony/console/Helper/Helper.php | 178 + .../console/Helper/HelperInterface.php | 39 + .../symfony/console/Helper/HelperSet.php | 98 + .../console/Helper/InputAwareHelper.php | 33 + .../symfony/console/Helper/ProcessHelper.php | 148 + .../symfony/console/Helper/ProgressBar.php | 617 ++ .../console/Helper/ProgressIndicator.php | 254 + .../symfony/console/Helper/QuestionHelper.php | 605 ++ .../console/Helper/SymfonyQuestionHelper.php | 109 + app/vendor/symfony/console/Helper/Table.php | 863 +++ .../symfony/console/Helper/TableCell.php | 78 + .../symfony/console/Helper/TableCellStyle.php | 86 + .../symfony/console/Helper/TableRows.php | 32 + .../symfony/console/Helper/TableSeparator.php | 25 + .../symfony/console/Helper/TableStyle.php | 364 + .../symfony/console/Input/ArgvInput.php | 371 + .../symfony/console/Input/ArrayInput.php | 210 + app/vendor/symfony/console/Input/Input.php | 213 + .../symfony/console/Input/InputArgument.php | 129 + .../console/Input/InputAwareInterface.php | 26 + .../symfony/console/Input/InputDefinition.php | 428 ++ .../symfony/console/Input/InputInterface.php | 153 + .../symfony/console/Input/InputOption.php | 237 + .../Input/StreamableInputInterface.php | 37 + .../symfony/console/Input/StringInput.php | 68 + app/vendor/symfony/console/LICENSE | 19 + .../symfony/console/Logger/ConsoleLogger.php | 126 + .../symfony/console/Output/BufferedOutput.php | 45 + .../symfony/console/Output/ConsoleOutput.php | 166 + .../console/Output/ConsoleOutputInterface.php | 32 + .../console/Output/ConsoleSectionOutput.php | 143 + .../symfony/console/Output/NullOutput.php | 128 + app/vendor/symfony/console/Output/Output.php | 174 + .../console/Output/OutputInterface.php | 110 + .../symfony/console/Output/StreamOutput.php | 115 + .../console/Output/TrimmedBufferOutput.php | 67 + .../console/Question/ChoiceQuestion.php | 183 + .../console/Question/ConfirmationQuestion.php | 57 + .../symfony/console/Question/Question.php | 306 + app/vendor/symfony/console/README.md | 20 + .../console/Resources/bin/hiddeninput.exe | Bin 0 -> 9216 bytes .../console/SignalRegistry/SignalRegistry.php | 65 + .../console/SingleCommandApplication.php | 67 + .../symfony/console/Style/OutputStyle.php | 153 + .../symfony/console/Style/StyleInterface.php | 132 + .../symfony/console/Style/SymfonyStyle.php | 513 ++ app/vendor/symfony/console/Terminal.php | 174 + .../console/Tester/ApplicationTester.php | 67 + .../symfony/console/Tester/CommandTester.php | 78 + .../symfony/console/Tester/TesterTrait.php | 186 + app/vendor/symfony/console/composer.json | 59 + .../symfony/deprecation-contracts/.gitignore | 3 + .../deprecation-contracts/CHANGELOG.md | 5 + .../symfony/deprecation-contracts/LICENSE | 19 + .../symfony/deprecation-contracts/README.md | 26 + .../deprecation-contracts/composer.json | 35 + .../deprecation-contracts/function.php | 27 + app/vendor/symfony/filesystem/CHANGELOG.md | 76 + .../Exception/ExceptionInterface.php | 21 + .../Exception/FileNotFoundException.php | 34 + .../filesystem/Exception/IOException.php | 39 + .../Exception/IOExceptionInterface.php | 27 + .../Exception/InvalidArgumentException.php | 19 + app/vendor/symfony/filesystem/Filesystem.php | 758 ++ app/vendor/symfony/filesystem/LICENSE | 19 + app/vendor/symfony/filesystem/README.md | 13 + app/vendor/symfony/filesystem/composer.json | 29 + app/vendor/symfony/finder/CHANGELOG.md | 79 + .../symfony/finder/Comparator/Comparator.php | 91 + .../finder/Comparator/DateComparator.php | 51 + .../finder/Comparator/NumberComparator.php | 79 + .../Exception/AccessDeniedException.php | 19 + .../Exception/DirectoryNotFoundException.php | 19 + app/vendor/symfony/finder/Finder.php | 806 +++ app/vendor/symfony/finder/Gitignore.php | 83 + app/vendor/symfony/finder/Glob.php | 111 + .../finder/Iterator/CustomFilterIterator.php | 61 + .../Iterator/DateRangeFilterIterator.php | 58 + .../Iterator/DepthRangeFilterIterator.php | 45 + .../ExcludeDirectoryFilterIterator.php | 87 + .../Iterator/FileTypeFilterIterator.php | 53 + .../Iterator/FilecontentFilterIterator.php | 58 + .../Iterator/FilenameFilterIterator.php | 47 + .../symfony/finder/Iterator/LazyIterator.php | 32 + .../Iterator/MultiplePcreFilterIterator.php | 106 + .../finder/Iterator/PathFilterIterator.php | 56 + .../Iterator/RecursiveDirectoryIterator.php | 144 + .../Iterator/SizeRangeFilterIterator.php | 57 + .../finder/Iterator/SortableIterator.php | 101 + app/vendor/symfony/finder/LICENSE | 19 + app/vendor/symfony/finder/README.md | 14 + app/vendor/symfony/finder/SplFileInfo.php | 85 + app/vendor/symfony/finder/composer.json | 28 + app/vendor/symfony/polyfill-ctype/Ctype.php | 227 + app/vendor/symfony/polyfill-ctype/LICENSE | 19 + app/vendor/symfony/polyfill-ctype/README.md | 12 + .../symfony/polyfill-ctype/bootstrap.php | 50 + .../symfony/polyfill-ctype/bootstrap80.php | 46 + .../symfony/polyfill-ctype/composer.json | 38 + .../polyfill-intl-grapheme/Grapheme.php | 237 + .../symfony/polyfill-intl-grapheme/LICENSE | 19 + .../symfony/polyfill-intl-grapheme/README.md | 31 + .../polyfill-intl-grapheme/bootstrap.php | 58 + .../polyfill-intl-grapheme/bootstrap80.php | 50 + .../polyfill-intl-grapheme/composer.json | 38 + .../symfony/polyfill-intl-normalizer/LICENSE | 19 + .../polyfill-intl-normalizer/Normalizer.php | 310 + .../polyfill-intl-normalizer/README.md | 14 + .../Resources/stubs/Normalizer.php | 17 + .../unidata/canonicalComposition.php | 945 +++ .../unidata/canonicalDecomposition.php | 2065 ++++++ .../Resources/unidata/combiningClass.php | 876 +++ .../unidata/compatibilityDecomposition.php | 3695 ++++++++++ .../polyfill-intl-normalizer/bootstrap.php | 23 + .../polyfill-intl-normalizer/bootstrap80.php | 19 + .../polyfill-intl-normalizer/composer.json | 39 + app/vendor/symfony/polyfill-mbstring/LICENSE | 19 + .../symfony/polyfill-mbstring/Mbstring.php | 869 +++ .../symfony/polyfill-mbstring/README.md | 13 + .../Resources/unidata/lowerCase.php | 1397 ++++ .../Resources/unidata/titleCaseRegexp.php | 5 + .../Resources/unidata/upperCase.php | 1489 ++++ .../symfony/polyfill-mbstring/bootstrap.php | 147 + .../symfony/polyfill-mbstring/bootstrap80.php | 143 + .../symfony/polyfill-mbstring/composer.json | 38 + app/vendor/symfony/polyfill-php73/LICENSE | 19 + app/vendor/symfony/polyfill-php73/Php73.php | 43 + app/vendor/symfony/polyfill-php73/README.md | 18 + .../Resources/stubs/JsonException.php | 14 + .../symfony/polyfill-php73/bootstrap.php | 31 + .../symfony/polyfill-php73/composer.json | 36 + app/vendor/symfony/polyfill-php80/LICENSE | 19 + app/vendor/symfony/polyfill-php80/Php80.php | 105 + app/vendor/symfony/polyfill-php80/README.md | 24 + .../Resources/stubs/Attribute.php | 22 + .../Resources/stubs/Stringable.php | 11 + .../Resources/stubs/UnhandledMatchError.php | 5 + .../Resources/stubs/ValueError.php | 5 + .../symfony/polyfill-php80/bootstrap.php | 42 + .../symfony/polyfill-php80/composer.json | 40 + app/vendor/symfony/polyfill-php81/LICENSE | 19 + app/vendor/symfony/polyfill-php81/Php81.php | 37 + app/vendor/symfony/polyfill-php81/README.md | 16 + .../Resources/stubs/ReturnTypeWillChange.php | 9 + .../symfony/polyfill-php81/bootstrap.php | 28 + .../symfony/polyfill-php81/composer.json | 36 + app/vendor/symfony/process/CHANGELOG.md | 116 + .../process/Exception/ExceptionInterface.php | 21 + .../Exception/InvalidArgumentException.php | 21 + .../process/Exception/LogicException.php | 21 + .../Exception/ProcessFailedException.php | 54 + .../Exception/ProcessSignaledException.php | 41 + .../Exception/ProcessTimedOutException.php | 69 + .../process/Exception/RuntimeException.php | 21 + .../symfony/process/ExecutableFinder.php | 86 + app/vendor/symfony/process/InputStream.php | 93 + app/vendor/symfony/process/LICENSE | 19 + .../symfony/process/PhpExecutableFinder.php | 99 + app/vendor/symfony/process/PhpProcess.php | 72 + .../symfony/process/Pipes/AbstractPipes.php | 178 + .../symfony/process/Pipes/PipesInterface.php | 61 + .../symfony/process/Pipes/UnixPipes.php | 163 + .../symfony/process/Pipes/WindowsPipes.php | 204 + app/vendor/symfony/process/Process.php | 1674 +++++ app/vendor/symfony/process/ProcessUtils.php | 69 + app/vendor/symfony/process/README.md | 13 + app/vendor/symfony/process/composer.json | 29 + .../symfony/service-contracts/.gitignore | 3 + .../service-contracts/Attribute/Required.php | 25 + .../symfony/service-contracts/CHANGELOG.md | 5 + app/vendor/symfony/service-contracts/LICENSE | 19 + .../symfony/service-contracts/README.md | 9 + .../service-contracts/ResetInterface.php | 30 + .../service-contracts/ServiceLocatorTrait.php | 128 + .../ServiceProviderInterface.php | 36 + .../ServiceSubscriberInterface.php | 53 + .../ServiceSubscriberTrait.php | 66 + .../Test/ServiceLocatorTest.php | 92 + .../symfony/service-contracts/composer.json | 38 + app/vendor/symfony/string/AbstractString.php | 727 ++ .../symfony/string/AbstractUnicodeString.php | 580 ++ app/vendor/symfony/string/ByteString.php | 506 ++ app/vendor/symfony/string/CHANGELOG.md | 30 + app/vendor/symfony/string/CodePointString.php | 270 + .../string/Exception/ExceptionInterface.php | 16 + .../Exception/InvalidArgumentException.php | 16 + .../string/Exception/RuntimeException.php | 16 + .../string/Inflector/EnglishInflector.php | 508 ++ .../string/Inflector/FrenchInflector.php | 157 + .../string/Inflector/InflectorInterface.php | 33 + app/vendor/symfony/string/LICENSE | 19 + app/vendor/symfony/string/LazyString.php | 164 + app/vendor/symfony/string/README.md | 14 + .../Resources/data/wcswidth_table_wide.php | 1119 +++ .../Resources/data/wcswidth_table_zero.php | 1339 ++++ .../symfony/string/Resources/functions.php | 38 + .../symfony/string/Slugger/AsciiSlugger.php | 183 + .../string/Slugger/SluggerInterface.php | 27 + app/vendor/symfony/string/UnicodeString.php | 377 + app/vendor/symfony/string/composer.json | 40 + app/vendor/symfony/var-dumper/CHANGELOG.md | 65 + .../symfony/var-dumper/Caster/AmqpCaster.php | 212 + .../symfony/var-dumper/Caster/ArgsStub.php | 80 + .../symfony/var-dumper/Caster/Caster.php | 174 + .../symfony/var-dumper/Caster/ClassStub.php | 106 + .../symfony/var-dumper/Caster/ConstStub.php | 36 + .../var-dumper/Caster/CutArrayStub.php | 30 + .../symfony/var-dumper/Caster/CutStub.php | 64 + .../symfony/var-dumper/Caster/DOMCaster.php | 304 + .../symfony/var-dumper/Caster/DateCaster.php | 126 + .../var-dumper/Caster/DoctrineCaster.php | 62 + .../symfony/var-dumper/Caster/DsCaster.php | 70 + .../symfony/var-dumper/Caster/DsPairStub.php | 28 + .../symfony/var-dumper/Caster/EnumStub.php | 30 + .../var-dumper/Caster/ExceptionCaster.php | 382 + .../symfony/var-dumper/Caster/FrameStub.php | 30 + .../symfony/var-dumper/Caster/GmpCaster.php | 32 + .../var-dumper/Caster/ImagineCaster.php | 37 + .../symfony/var-dumper/Caster/ImgStub.php | 26 + .../symfony/var-dumper/Caster/IntlCaster.php | 172 + .../symfony/var-dumper/Caster/LinkStub.php | 108 + .../var-dumper/Caster/MemcachedCaster.php | 81 + .../symfony/var-dumper/Caster/PdoCaster.php | 122 + .../symfony/var-dumper/Caster/PgSqlCaster.php | 156 + .../var-dumper/Caster/ProxyManagerCaster.php | 33 + .../var-dumper/Caster/RdKafkaCaster.php | 186 + .../symfony/var-dumper/Caster/RedisCaster.php | 152 + .../var-dumper/Caster/ReflectionCaster.php | 438 ++ .../var-dumper/Caster/ResourceCaster.php | 105 + .../symfony/var-dumper/Caster/SplCaster.php | 245 + .../symfony/var-dumper/Caster/StubCaster.php | 84 + .../var-dumper/Caster/SymfonyCaster.php | 69 + .../symfony/var-dumper/Caster/TraceStub.php | 36 + .../symfony/var-dumper/Caster/UuidCaster.php | 30 + .../var-dumper/Caster/XmlReaderCaster.php | 79 + .../var-dumper/Caster/XmlResourceCaster.php | 63 + .../var-dumper/Cloner/AbstractCloner.php | 384 + .../var-dumper/Cloner/ClonerInterface.php | 27 + .../symfony/var-dumper/Cloner/Cursor.php | 43 + app/vendor/symfony/var-dumper/Cloner/Data.php | 451 ++ .../var-dumper/Cloner/DumperInterface.php | 56 + app/vendor/symfony/var-dumper/Cloner/Stub.php | 67 + .../symfony/var-dumper/Cloner/VarCloner.php | 288 + .../Command/Descriptor/CliDescriptor.php | 88 + .../Descriptor/DumpDescriptorInterface.php | 23 + .../Command/Descriptor/HtmlDescriptor.php | 119 + .../var-dumper/Command/ServerDumpCommand.php | 102 + .../var-dumper/Dumper/AbstractDumper.php | 204 + .../symfony/var-dumper/Dumper/CliDumper.php | 643 ++ .../ContextProvider/CliContextProvider.php | 32 + .../ContextProviderInterface.php | 25 + .../RequestContextProvider.php | 51 + .../ContextProvider/SourceContextProvider.php | 126 + .../Dumper/ContextualizedDumper.php | 43 + .../var-dumper/Dumper/DataDumperInterface.php | 24 + .../symfony/var-dumper/Dumper/HtmlDumper.php | 991 +++ .../var-dumper/Dumper/ServerDumper.php | 53 + .../Exception/ThrowingCasterException.php | 26 + app/vendor/symfony/var-dumper/LICENSE | 19 + app/vendor/symfony/var-dumper/README.md | 15 + .../var-dumper/Resources/bin/var-dump-server | 63 + .../Resources/css/htmlDescriptor.css | 130 + .../var-dumper/Resources/functions/dump.php | 43 + .../var-dumper/Resources/js/htmlDescriptor.js | 10 + .../symfony/var-dumper/Server/Connection.php | 95 + .../symfony/var-dumper/Server/DumpServer.php | 111 + .../var-dumper/Test/VarDumperTestTrait.php | 84 + app/vendor/symfony/var-dumper/VarDumper.php | 109 + app/vendor/symfony/var-dumper/composer.json | 49 + app/vendor/theseer/tokenizer/.php_cs.dist | 213 + app/vendor/theseer/tokenizer/CHANGELOG.md | 63 + app/vendor/theseer/tokenizer/LICENSE | 30 + app/vendor/theseer/tokenizer/README.md | 49 + app/vendor/theseer/tokenizer/composer.json | 27 + .../theseer/tokenizer/src/Exception.php | 5 + .../theseer/tokenizer/src/NamespaceUri.php | 25 + .../tokenizer/src/NamespaceUriException.php | 5 + app/vendor/theseer/tokenizer/src/Token.php | 35 + .../theseer/tokenizer/src/TokenCollection.php | 93 + .../src/TokenCollectionException.php | 5 + .../theseer/tokenizer/src/Tokenizer.php | 137 + .../theseer/tokenizer/src/XMLSerializer.php | 79 + app/vendor/twig/markdown-extra/.gitattributes | 2 + app/vendor/twig/markdown-extra/.gitignore | 4 + .../twig/markdown-extra/DefaultMarkdown.php | 39 + .../twig/markdown-extra/ErusevMarkdown.php | 29 + app/vendor/twig/markdown-extra/LICENSE | 19 + .../twig/markdown-extra/LeagueMarkdown.php | 29 + .../twig/markdown-extra/MarkdownExtension.php | 48 + .../twig/markdown-extra/MarkdownInterface.php | 17 + .../twig/markdown-extra/MarkdownRuntime.php | 32 + .../twig/markdown-extra/MichelfMarkdown.php | 34 + app/vendor/twig/markdown-extra/README.md | 11 + app/vendor/twig/markdown-extra/composer.json | 39 + app/vendor/twig/twig/.editorconfig | 18 + app/vendor/twig/twig/.gitattributes | 3 + app/vendor/twig/twig/.github/workflows/ci.yml | 173 + .../twig/.github/workflows/documentation.yml | 60 + app/vendor/twig/twig/.gitignore | 4 + app/vendor/twig/twig/.php-cs-fixer.dist.php | 20 + app/vendor/twig/twig/CHANGELOG | 1621 +++++ app/vendor/twig/twig/LICENSE | 27 + app/vendor/twig/twig/README.rst | 24 + app/vendor/twig/twig/composer.json | 50 + app/vendor/twig/twig/doc/.doctor-rst.yaml | 54 + .../twig/twig/doc/_build/.requirements.txt | 6 + app/vendor/twig/twig/doc/_build/Makefile | 153 + app/vendor/twig/twig/doc/_build/conf.py | 271 + app/vendor/twig/twig/doc/advanced.rst | 911 +++ app/vendor/twig/twig/doc/api.rst | 583 ++ app/vendor/twig/twig/doc/coding_standards.rst | 101 + app/vendor/twig/twig/doc/deprecated.rst | 6 + app/vendor/twig/twig/doc/filters/abs.rst | 18 + app/vendor/twig/twig/doc/filters/batch.rst | 44 + .../twig/twig/doc/filters/capitalize.rst | 11 + app/vendor/twig/twig/doc/filters/column.rst | 24 + .../twig/doc/filters/convert_encoding.rst | 22 + .../twig/twig/doc/filters/country_name.rst | 44 + .../twig/twig/doc/filters/currency_name.rst | 47 + .../twig/twig/doc/filters/currency_symbol.rst | 47 + app/vendor/twig/twig/doc/filters/data_uri.rst | 55 + app/vendor/twig/twig/doc/filters/date.rst | 78 + .../twig/twig/doc/filters/date_modify.rst | 20 + app/vendor/twig/twig/doc/filters/default.rst | 42 + app/vendor/twig/twig/doc/filters/escape.rst | 117 + app/vendor/twig/twig/doc/filters/filter.rst | 55 + app/vendor/twig/twig/doc/filters/first.rst | 22 + app/vendor/twig/twig/doc/filters/format.rst | 18 + .../twig/twig/doc/filters/format_currency.rst | 77 + .../twig/twig/doc/filters/format_date.rst | 36 + .../twig/twig/doc/filters/format_datetime.rst | 73 + .../twig/twig/doc/filters/format_number.rst | 117 + .../twig/twig/doc/filters/format_time.rst | 36 + .../twig/doc/filters/html_to_markdown.rst | 77 + app/vendor/twig/twig/doc/filters/index.rst | 60 + .../twig/twig/doc/filters/inky_to_html.rst | 42 + .../twig/twig/doc/filters/inline_css.rst | 66 + app/vendor/twig/twig/doc/filters/join.rst | 32 + .../twig/twig/doc/filters/json_encode.rst | 23 + app/vendor/twig/twig/doc/filters/keys.rst | 11 + .../twig/twig/doc/filters/language_name.rst | 47 + app/vendor/twig/twig/doc/filters/last.rst | 22 + app/vendor/twig/twig/doc/filters/length.rst | 19 + .../twig/twig/doc/filters/locale_name.rst | 47 + app/vendor/twig/twig/doc/filters/lower.rst | 10 + app/vendor/twig/twig/doc/filters/map.rst | 34 + .../twig/doc/filters/markdown_to_html.rst | 72 + app/vendor/twig/twig/doc/filters/merge.rst | 48 + app/vendor/twig/twig/doc/filters/nl2br.rst | 19 + .../twig/twig/doc/filters/number_format.rst | 51 + app/vendor/twig/twig/doc/filters/raw.rst | 12 + app/vendor/twig/twig/doc/filters/reduce.rst | 29 + app/vendor/twig/twig/doc/filters/replace.rst | 27 + app/vendor/twig/twig/doc/filters/reverse.rst | 44 + app/vendor/twig/twig/doc/filters/round.rst | 34 + app/vendor/twig/twig/doc/filters/slice.rst | 68 + app/vendor/twig/twig/doc/filters/slug.rst | 59 + app/vendor/twig/twig/doc/filters/sort.rst | 42 + .../twig/twig/doc/filters/spaceless.rst | 56 + app/vendor/twig/twig/doc/filters/split.rst | 50 + .../twig/twig/doc/filters/striptags.rst | 29 + .../twig/twig/doc/filters/timezone_name.rst | 46 + app/vendor/twig/twig/doc/filters/title.rst | 11 + app/vendor/twig/twig/doc/filters/trim.rst | 39 + app/vendor/twig/twig/doc/filters/u.rst | 87 + app/vendor/twig/twig/doc/filters/upper.rst | 10 + .../twig/twig/doc/filters/url_encode.rst | 23 + .../twig/twig/doc/functions/attribute.rst | 23 + app/vendor/twig/twig/doc/functions/block.rst | 37 + .../twig/twig/doc/functions/constant.rst | 23 + .../twig/doc/functions/country_timezones.rst | 32 + app/vendor/twig/twig/doc/functions/cycle.rst | 28 + app/vendor/twig/twig/doc/functions/date.rst | 44 + app/vendor/twig/twig/doc/functions/dump.rst | 66 + .../twig/twig/doc/functions/html_classes.rst | 35 + .../twig/twig/doc/functions/include.rst | 77 + app/vendor/twig/twig/doc/functions/index.rst | 22 + app/vendor/twig/twig/doc/functions/max.rst | 17 + app/vendor/twig/twig/doc/functions/min.rst | 17 + app/vendor/twig/twig/doc/functions/parent.rst | 22 + app/vendor/twig/twig/doc/functions/random.rst | 25 + app/vendor/twig/twig/doc/functions/range.rst | 58 + app/vendor/twig/twig/doc/functions/source.rst | 26 + .../doc/functions/template_from_string.rst | 37 + app/vendor/twig/twig/doc/index.rst | 19 + app/vendor/twig/twig/doc/installation.rst | 10 + app/vendor/twig/twig/doc/internals.rst | 140 + app/vendor/twig/twig/doc/intro.rst | 74 + app/vendor/twig/twig/doc/recipes.rst | 531 ++ app/vendor/twig/twig/doc/tags/apply.rst | 20 + app/vendor/twig/twig/doc/tags/autoescape.rst | 61 + app/vendor/twig/twig/doc/tags/block.rst | 12 + app/vendor/twig/twig/doc/tags/cache.rst | 113 + app/vendor/twig/twig/doc/tags/deprecated.rst | 27 + app/vendor/twig/twig/doc/tags/do.rst | 9 + app/vendor/twig/twig/doc/tags/embed.rst | 177 + app/vendor/twig/twig/doc/tags/extends.rst | 263 + app/vendor/twig/twig/doc/tags/flush.rst | 14 + app/vendor/twig/twig/doc/tags/for.rst | 141 + app/vendor/twig/twig/doc/tags/from.rst | 6 + app/vendor/twig/twig/doc/tags/if.rst | 79 + app/vendor/twig/twig/doc/tags/import.rst | 6 + app/vendor/twig/twig/doc/tags/include.rst | 110 + app/vendor/twig/twig/doc/tags/index.rst | 26 + app/vendor/twig/twig/doc/tags/macro.rst | 140 + app/vendor/twig/twig/doc/tags/sandbox.rst | 30 + app/vendor/twig/twig/doc/tags/set.rst | 78 + app/vendor/twig/twig/doc/tags/use.rst | 117 + app/vendor/twig/twig/doc/tags/verbatim.rst | 16 + app/vendor/twig/twig/doc/tags/with.rst | 41 + app/vendor/twig/twig/doc/templates.rst | 859 +++ app/vendor/twig/twig/doc/tests/constant.rst | 19 + app/vendor/twig/twig/doc/tests/defined.rst | 30 + .../twig/twig/doc/tests/divisibleby.rst | 10 + app/vendor/twig/twig/doc/tests/empty.rst | 18 + app/vendor/twig/twig/doc/tests/even.rst | 12 + app/vendor/twig/twig/doc/tests/index.rst | 15 + app/vendor/twig/twig/doc/tests/iterable.rst | 16 + app/vendor/twig/twig/doc/tests/null.rst | 12 + app/vendor/twig/twig/doc/tests/odd.rst | 12 + app/vendor/twig/twig/doc/tests/sameas.rst | 11 + app/vendor/twig/twig/drupal_test.sh | 50 + .../twig/twig/src/Cache/CacheInterface.php | 46 + .../twig/twig/src/Cache/FilesystemCache.php | 87 + app/vendor/twig/twig/src/Cache/NullCache.php | 38 + app/vendor/twig/twig/src/Compiler.php | 214 + app/vendor/twig/twig/src/Environment.php | 814 +++ app/vendor/twig/twig/src/Error/Error.php | 227 + .../twig/twig/src/Error/LoaderError.php | 21 + .../twig/twig/src/Error/RuntimeError.php | 22 + .../twig/twig/src/Error/SyntaxError.php | 46 + app/vendor/twig/twig/src/ExpressionParser.php | 825 +++ .../twig/src/Extension/AbstractExtension.php | 45 + .../twig/twig/src/Extension/CoreExtension.php | 1631 +++++ .../twig/src/Extension/DebugExtension.php | 64 + .../twig/src/Extension/EscaperExtension.php | 421 ++ .../twig/src/Extension/ExtensionInterface.php | 68 + .../twig/src/Extension/GlobalsInterface.php | 25 + .../twig/src/Extension/OptimizerExtension.php | 29 + .../twig/src/Extension/ProfilerExtension.php | 52 + .../Extension/RuntimeExtensionInterface.php | 19 + .../twig/src/Extension/SandboxExtension.php | 123 + .../twig/src/Extension/StagingExtension.php | 100 + .../src/Extension/StringLoaderExtension.php | 42 + app/vendor/twig/twig/src/ExtensionSet.php | 463 ++ .../src/FileExtensionEscapingStrategy.php | 60 + app/vendor/twig/twig/src/Lexer.php | 501 ++ .../twig/twig/src/Loader/ArrayLoader.php | 77 + .../twig/twig/src/Loader/ChainLoader.php | 119 + .../twig/twig/src/Loader/FilesystemLoader.php | 283 + .../twig/twig/src/Loader/LoaderInterface.php | 49 + app/vendor/twig/twig/src/Markup.php | 47 + .../twig/twig/src/Node/AutoEscapeNode.php | 38 + app/vendor/twig/twig/src/Node/BlockNode.php | 44 + .../twig/twig/src/Node/BlockReferenceNode.php | 36 + app/vendor/twig/twig/src/Node/BodyNode.php | 21 + .../twig/src/Node/CheckSecurityCallNode.php | 28 + .../twig/twig/src/Node/CheckSecurityNode.php | 88 + .../twig/twig/src/Node/CheckToStringNode.php | 45 + .../twig/twig/src/Node/DeprecatedNode.php | 53 + app/vendor/twig/twig/src/Node/DoNode.php | 38 + app/vendor/twig/twig/src/Node/EmbedNode.php | 48 + .../Node/Expression/AbstractExpression.php | 24 + .../src/Node/Expression/ArrayExpression.php | 85 + .../Expression/ArrowFunctionExpression.php | 64 + .../Node/Expression/AssignNameExpression.php | 27 + .../Node/Expression/Binary/AbstractBinary.php | 42 + .../src/Node/Expression/Binary/AddBinary.php | 23 + .../src/Node/Expression/Binary/AndBinary.php | 23 + .../Expression/Binary/BitwiseAndBinary.php | 23 + .../Expression/Binary/BitwiseOrBinary.php | 23 + .../Expression/Binary/BitwiseXorBinary.php | 23 + .../Node/Expression/Binary/ConcatBinary.php | 23 + .../src/Node/Expression/Binary/DivBinary.php | 23 + .../Node/Expression/Binary/EndsWithBinary.php | 35 + .../Node/Expression/Binary/EqualBinary.php | 39 + .../Node/Expression/Binary/FloorDivBinary.php | 29 + .../Node/Expression/Binary/GreaterBinary.php | 39 + .../Expression/Binary/GreaterEqualBinary.php | 39 + .../src/Node/Expression/Binary/InBinary.php | 33 + .../src/Node/Expression/Binary/LessBinary.php | 39 + .../Expression/Binary/LessEqualBinary.php | 39 + .../Node/Expression/Binary/MatchesBinary.php | 33 + .../src/Node/Expression/Binary/ModBinary.php | 23 + .../src/Node/Expression/Binary/MulBinary.php | 23 + .../Node/Expression/Binary/NotEqualBinary.php | 39 + .../Node/Expression/Binary/NotInBinary.php | 33 + .../src/Node/Expression/Binary/OrBinary.php | 23 + .../Node/Expression/Binary/PowerBinary.php | 22 + .../Node/Expression/Binary/RangeBinary.php | 33 + .../Expression/Binary/SpaceshipBinary.php | 22 + .../Expression/Binary/StartsWithBinary.php | 35 + .../src/Node/Expression/Binary/SubBinary.php | 23 + .../Expression/BlockReferenceExpression.php | 86 + .../src/Node/Expression/CallExpression.php | 320 + .../Node/Expression/ConditionalExpression.php | 36 + .../Node/Expression/ConstantExpression.php | 28 + .../Node/Expression/Filter/DefaultFilter.php | 52 + .../src/Node/Expression/FilterExpression.php | 40 + .../Node/Expression/FunctionExpression.php | 43 + .../src/Node/Expression/GetAttrExpression.php | 87 + .../twig/src/Node/Expression/InlinePrint.php | 35 + .../Node/Expression/MethodCallExpression.php | 62 + .../src/Node/Expression/NameExpression.php | 97 + .../Expression/NullCoalesceExpression.php | 60 + .../src/Node/Expression/ParentExpression.php | 46 + .../Node/Expression/TempNameExpression.php | 31 + .../src/Node/Expression/Test/ConstantTest.php | 49 + .../src/Node/Expression/Test/DefinedTest.php | 74 + .../Node/Expression/Test/DivisiblebyTest.php | 36 + .../src/Node/Expression/Test/EvenTest.php | 35 + .../src/Node/Expression/Test/NullTest.php | 34 + .../twig/src/Node/Expression/Test/OddTest.php | 35 + .../src/Node/Expression/Test/SameasTest.php | 34 + .../src/Node/Expression/TestExpression.php | 42 + .../Node/Expression/Unary/AbstractUnary.php | 34 + .../src/Node/Expression/Unary/NegUnary.php | 23 + .../src/Node/Expression/Unary/NotUnary.php | 23 + .../src/Node/Expression/Unary/PosUnary.php | 23 + .../Node/Expression/VariadicExpression.php | 24 + app/vendor/twig/twig/src/Node/FlushNode.php | 35 + app/vendor/twig/twig/src/Node/ForLoopNode.php | 49 + app/vendor/twig/twig/src/Node/ForNode.php | 107 + app/vendor/twig/twig/src/Node/IfNode.php | 70 + app/vendor/twig/twig/src/Node/ImportNode.php | 63 + app/vendor/twig/twig/src/Node/IncludeNode.php | 106 + app/vendor/twig/twig/src/Node/MacroNode.php | 113 + app/vendor/twig/twig/src/Node/ModuleNode.php | 464 ++ app/vendor/twig/twig/src/Node/Node.php | 178 + .../twig/src/Node/NodeCaptureInterface.php | 21 + .../twig/src/Node/NodeOutputInterface.php | 21 + app/vendor/twig/twig/src/Node/PrintNode.php | 39 + app/vendor/twig/twig/src/Node/SandboxNode.php | 52 + app/vendor/twig/twig/src/Node/SetNode.php | 105 + app/vendor/twig/twig/src/Node/TextNode.php | 38 + app/vendor/twig/twig/src/Node/WithNode.php | 70 + app/vendor/twig/twig/src/NodeTraverser.php | 76 + .../src/NodeVisitor/AbstractNodeVisitor.php | 49 + .../src/NodeVisitor/EscaperNodeVisitor.php | 208 + .../MacroAutoImportNodeVisitor.php | 74 + .../src/NodeVisitor/NodeVisitorInterface.php | 46 + .../src/NodeVisitor/OptimizerNodeVisitor.php | 217 + .../NodeVisitor/SafeAnalysisNodeVisitor.php | 160 + .../src/NodeVisitor/SandboxNodeVisitor.php | 136 + app/vendor/twig/twig/src/Parser.php | 349 + .../twig/src/Profiler/Dumper/BaseDumper.php | 63 + .../src/Profiler/Dumper/BlackfireDumper.php | 72 + .../twig/src/Profiler/Dumper/HtmlDumper.php | 47 + .../twig/src/Profiler/Dumper/TextDumper.php | 35 + .../src/Profiler/Node/EnterProfileNode.php | 42 + .../src/Profiler/Node/LeaveProfileNode.php | 36 + .../NodeVisitor/ProfilerNodeVisitor.php | 76 + app/vendor/twig/twig/src/Profiler/Profile.php | 181 + .../RuntimeLoader/ContainerRuntimeLoader.php | 37 + .../RuntimeLoader/FactoryRuntimeLoader.php | 41 + .../RuntimeLoader/RuntimeLoaderInterface.php | 27 + .../twig/twig/src/Sandbox/SecurityError.php | 23 + .../Sandbox/SecurityNotAllowedFilterError.php | 33 + .../SecurityNotAllowedFunctionError.php | 33 + .../Sandbox/SecurityNotAllowedMethodError.php | 40 + .../SecurityNotAllowedPropertyError.php | 40 + .../Sandbox/SecurityNotAllowedTagError.php | 33 + .../twig/twig/src/Sandbox/SecurityPolicy.php | 126 + .../src/Sandbox/SecurityPolicyInterface.php | 35 + app/vendor/twig/twig/src/Source.php | 51 + app/vendor/twig/twig/src/Template.php | 422 ++ app/vendor/twig/twig/src/TemplateWrapper.php | 109 + .../twig/src/Test/IntegrationTestCase.php | 265 + .../twig/twig/src/Test/NodeTestCase.php | 65 + app/vendor/twig/twig/src/Token.php | 178 + .../src/TokenParser/AbstractTokenParser.php | 32 + .../twig/src/TokenParser/ApplyTokenParser.php | 60 + .../src/TokenParser/AutoEscapeTokenParser.php | 58 + .../twig/src/TokenParser/BlockTokenParser.php | 78 + .../src/TokenParser/DeprecatedTokenParser.php | 43 + .../twig/src/TokenParser/DoTokenParser.php | 38 + .../twig/src/TokenParser/EmbedTokenParser.php | 73 + .../src/TokenParser/ExtendsTokenParser.php | 52 + .../twig/src/TokenParser/FlushTokenParser.php | 38 + .../twig/src/TokenParser/ForTokenParser.php | 78 + .../twig/src/TokenParser/FromTokenParser.php | 66 + .../twig/src/TokenParser/IfTokenParser.php | 89 + .../src/TokenParser/ImportTokenParser.php | 44 + .../src/TokenParser/IncludeTokenParser.php | 69 + .../twig/src/TokenParser/MacroTokenParser.php | 66 + .../src/TokenParser/SandboxTokenParser.php | 66 + .../twig/src/TokenParser/SetTokenParser.php | 73 + .../src/TokenParser/TokenParserInterface.php | 46 + .../twig/src/TokenParser/UseTokenParser.php | 73 + .../twig/src/TokenParser/WithTokenParser.php | 56 + app/vendor/twig/twig/src/TokenStream.php | 132 + app/vendor/twig/twig/src/TwigFilter.php | 134 + app/vendor/twig/twig/src/TwigFunction.php | 122 + app/vendor/twig/twig/src/TwigTest.php | 100 + .../twig/src/Util/DeprecationCollector.php | 77 + .../twig/src/Util/TemplateDirIterator.php | 28 + app/vendor/webmozart/assert/.editorconfig | 12 + .../assert/.github/workflows/ci.yaml | 120 + app/vendor/webmozart/assert/.php_cs | 24 + app/vendor/webmozart/assert/CHANGELOG.md | 190 + app/vendor/webmozart/assert/LICENSE | 20 + app/vendor/webmozart/assert/README.md | 287 + app/vendor/webmozart/assert/composer.json | 43 + app/vendor/webmozart/assert/psalm.xml | 14 + app/vendor/webmozart/assert/src/Assert.php | 2066 ++++++ .../assert/src/InvalidArgumentException.php | 16 + app/vendor/webmozart/assert/src/Mixin.php | 2916 ++++++++ 5937 files changed, 787060 insertions(+) create mode 100644 app/vendor/.gitkeep create mode 100644 app/vendor/autoload.php create mode 120000 app/vendor/bin/composer create mode 120000 app/vendor/bin/jsonlint create mode 120000 app/vendor/bin/phinx create mode 120000 app/vendor/bin/php-parse create mode 120000 app/vendor/bin/phpcbf create mode 120000 app/vendor/bin/phpcs create mode 120000 app/vendor/bin/phpunit create mode 120000 app/vendor/bin/psysh create mode 120000 app/vendor/bin/validate-json create mode 120000 app/vendor/bin/var-dump-server create mode 100644 app/vendor/brick/varexporter/LICENSE create mode 100644 app/vendor/brick/varexporter/composer.json create mode 100644 app/vendor/brick/varexporter/src/ExportException.php create mode 100644 app/vendor/brick/varexporter/src/Internal/GenericExporter.php create mode 100644 app/vendor/brick/varexporter/src/Internal/ObjectExporter.php create mode 100644 app/vendor/brick/varexporter/src/Internal/ObjectExporter/AnyObjectExporter.php create mode 100644 app/vendor/brick/varexporter/src/Internal/ObjectExporter/ClosureExporter.php create mode 100644 app/vendor/brick/varexporter/src/Internal/ObjectExporter/ClosureExporter/PrettyPrinter.php create mode 100644 app/vendor/brick/varexporter/src/Internal/ObjectExporter/InternalClassExporter.php create mode 100644 app/vendor/brick/varexporter/src/Internal/ObjectExporter/SerializeExporter.php create mode 100644 app/vendor/brick/varexporter/src/Internal/ObjectExporter/SetStateExporter.php create mode 100644 app/vendor/brick/varexporter/src/Internal/ObjectExporter/StdClassExporter.php create mode 100644 app/vendor/brick/varexporter/src/VarExporter.php create mode 100644 app/vendor/cakephp-plugins.php create mode 100644 app/vendor/cakephp/bake/Dockerfile create mode 100644 app/vendor/cakephp/bake/LICENSE.txt create mode 100644 app/vendor/cakephp/bake/README.md create mode 100644 app/vendor/cakephp/bake/composer.json create mode 100644 app/vendor/cakephp/bake/docs.Dockerfile create mode 100644 app/vendor/cakephp/bake/docs/config/__init__.py create mode 100644 app/vendor/cakephp/bake/docs/config/all.py create mode 100644 app/vendor/cakephp/bake/docs/en/conf.py create mode 100644 app/vendor/cakephp/bake/docs/en/contents.rst create mode 100644 app/vendor/cakephp/bake/docs/en/development.rst create mode 100644 app/vendor/cakephp/bake/docs/en/index.rst create mode 100644 app/vendor/cakephp/bake/docs/en/usage.rst create mode 100644 app/vendor/cakephp/bake/docs/es/conf.py create mode 100644 app/vendor/cakephp/bake/docs/es/contents.rst create mode 100644 app/vendor/cakephp/bake/docs/es/development.rst create mode 100644 app/vendor/cakephp/bake/docs/es/index.rst create mode 100644 app/vendor/cakephp/bake/docs/es/usage.rst create mode 100644 app/vendor/cakephp/bake/docs/fr/conf.py create mode 100644 app/vendor/cakephp/bake/docs/fr/contents.rst create mode 100644 app/vendor/cakephp/bake/docs/fr/development.rst create mode 100644 app/vendor/cakephp/bake/docs/fr/index.rst create mode 100644 app/vendor/cakephp/bake/docs/fr/usage.rst create mode 100644 app/vendor/cakephp/bake/docs/ja/conf.py create mode 100644 app/vendor/cakephp/bake/docs/ja/contents.rst create mode 100644 app/vendor/cakephp/bake/docs/ja/development.rst create mode 100644 app/vendor/cakephp/bake/docs/ja/index.rst create mode 100644 app/vendor/cakephp/bake/docs/ja/usage.rst create mode 100644 app/vendor/cakephp/bake/docs/pt/conf.py create mode 100644 app/vendor/cakephp/bake/docs/pt/contents.rst create mode 100644 app/vendor/cakephp/bake/docs/pt/development.rst create mode 100644 app/vendor/cakephp/bake/docs/pt/index.rst create mode 100644 app/vendor/cakephp/bake/docs/pt/usage.rst create mode 100644 app/vendor/cakephp/bake/docs/ru/conf.py create mode 100644 app/vendor/cakephp/bake/docs/ru/contents.rst create mode 100644 app/vendor/cakephp/bake/docs/ru/development.rst create mode 100644 app/vendor/cakephp/bake/docs/ru/index.rst create mode 100644 app/vendor/cakephp/bake/docs/ru/usage.rst create mode 100644 app/vendor/cakephp/bake/phpcs.xml.dist create mode 100644 app/vendor/cakephp/bake/phpstan.neon create mode 100644 app/vendor/cakephp/bake/psalm-baseline.xml create mode 100644 app/vendor/cakephp/bake/psalm.xml create mode 100644 app/vendor/cakephp/bake/src/Command/AllCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/BakeCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/BehaviorCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/CellCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/CommandCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/ComponentCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/ControllerAllCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/ControllerCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/EntryCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/FixtureAllCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/FixtureCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/FormCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/HelperCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/MailerCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/MiddlewareCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/ModelAllCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/ModelCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/PluginCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/ShellHelperCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/SimpleBakeCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/TemplateAllCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/TemplateCommand.php create mode 100644 app/vendor/cakephp/bake/src/Command/TestCommand.php create mode 100644 app/vendor/cakephp/bake/src/Plugin.php create mode 100644 app/vendor/cakephp/bake/src/Shell/Task/BakeTask.php create mode 100644 app/vendor/cakephp/bake/src/Shell/Task/SimpleBakeTask.php create mode 100644 app/vendor/cakephp/bake/src/Utility/CommonOptionsTrait.php create mode 100644 app/vendor/cakephp/bake/src/Utility/Model/AssociationFilter.php create mode 100644 app/vendor/cakephp/bake/src/Utility/Process.php create mode 100644 app/vendor/cakephp/bake/src/Utility/SubsetSchemaCollection.php create mode 100644 app/vendor/cakephp/bake/src/Utility/TableScanner.php create mode 100644 app/vendor/cakephp/bake/src/Utility/TemplateRenderer.php create mode 100644 app/vendor/cakephp/bake/src/View/BakeView.php create mode 100644 app/vendor/cakephp/bake/src/View/Helper/BakeHelper.php create mode 100644 app/vendor/cakephp/bake/src/View/Helper/DocBlockHelper.php create mode 100644 app/vendor/cakephp/bake/templates/bake/Command/command.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Controller/component.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Controller/controller.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Form/form.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Mailer/mailer.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Middleware/middleware.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Model/behavior.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Model/entity.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Model/table.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Plugin/.gitignore.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Plugin/README.md.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Plugin/composer.json.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Plugin/phpunit.xml.dist.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Plugin/src/Controller/AppController.php.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Plugin/src/Plugin.php.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Plugin/tests/bootstrap.php.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Plugin/webroot/.gitkeep.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Shell/helper.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Template/add.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Template/edit.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Template/index.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Template/login.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/Template/view.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/View/cell.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/View/helper.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/element/Controller/add.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/element/Controller/delete.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/element/Controller/edit.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/element/Controller/index.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/element/Controller/login.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/element/Controller/logout.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/element/Controller/view.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/element/array_property.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/element/form.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/layout/default.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/tests/fixture.twig create mode 100644 app/vendor/cakephp/bake/templates/bake/tests/test_case.twig create mode 100644 app/vendor/cakephp/bake/tests/Fixture/BakeArticlesBakeTagsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/BakeArticlesFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/BakeCarFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/BakeCommentsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/BakeTagsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/BakeTemplateAuthorsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/BakeTemplateProfilesFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/BakeTemplateRolesFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/BinaryTestsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/CategoriesFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/CategoriesProductsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/CategoryThreadsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/DatatypesFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/InvitationsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/NumberTreesFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/OldProductsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/ProductVersionsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/ProductsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/TodoItemsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/TodoItemsTodoLabelsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/TodoLabelsFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/TodoTasksFixture.php create mode 100644 app/vendor/cakephp/bake/tests/Fixture/UsersFixture.php create mode 100644 app/vendor/cakephp/bake/tests/bootstrap.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/.github/codecov.yml create mode 100644 app/vendor/cakephp/cakephp-codesniffer/.github/workflows/ci.yml create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/Classes/ReturnTypeHintSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/Commenting/DocBlockAlignmentSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/Commenting/FunctionCommentSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/Commenting/InheritDocSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/ControlStructures/ControlStructuresSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/ControlStructures/ElseIfDeclarationSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/ControlStructures/WhileStructuresSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/Formatting/BlankLineBeforeReturnSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/Functions/ClosureDeclarationSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/NamingConventions/ValidFunctionNameSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/NamingConventions/ValidTraitNameSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/PHP/DisallowShortOpenTagSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/PHP/SingleQuoteSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/WhiteSpace/EmptyLinesSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/WhiteSpace/FunctionCallSpacingSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/WhiteSpace/FunctionClosingBraceSpaceSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/WhiteSpace/FunctionOpeningBraceSpaceSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/WhiteSpace/FunctionSpacingSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/Sniffs/WhiteSpace/TabAndSpaceSniff.php create mode 100644 app/vendor/cakephp/cakephp-codesniffer/CakePHP/ruleset.xml create mode 100644 app/vendor/cakephp/cakephp-codesniffer/LICENSE create mode 100644 app/vendor/cakephp/cakephp-codesniffer/README.md create mode 100644 app/vendor/cakephp/cakephp-codesniffer/composer.json create mode 100644 app/vendor/cakephp/cakephp-codesniffer/docs/README.md create mode 100644 app/vendor/cakephp/cakephp-codesniffer/docs/generate.php create mode 100644 app/vendor/cakephp/cakephp/LICENSE create mode 100644 app/vendor/cakephp/cakephp/README.md create mode 100644 app/vendor/cakephp/cakephp/SECURITY.md create mode 100644 app/vendor/cakephp/cakephp/VERSION.txt create mode 100644 app/vendor/cakephp/cakephp/composer.json create mode 100644 app/vendor/cakephp/cakephp/config/bootstrap.php create mode 100644 app/vendor/cakephp/cakephp/config/config.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/AbstractPasswordHasher.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/BaseAuthenticate.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/BaseAuthorize.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/BasicAuthenticate.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/ControllerAuthorize.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/DefaultPasswordHasher.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/DigestAuthenticate.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/FallbackPasswordHasher.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/FormAuthenticate.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/PasswordHasherFactory.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/Storage/MemoryStorage.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/Storage/SessionStorage.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/Storage/StorageInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Auth/WeakPasswordHasher.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/Cache.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/CacheEngine.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/CacheEngineInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/CacheRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/Engine/ApcuEngine.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/Engine/ArrayEngine.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/Engine/FileEngine.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/Engine/MemcachedEngine.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/Engine/NullEngine.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/Engine/RedisEngine.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/Engine/WincacheEngine.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/InvalidArgumentException.php create mode 100644 app/vendor/cakephp/cakephp/src/Cache/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Cache/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Cache/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Collection.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/CollectionInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/CollectionTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/ExtractTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/BufferedIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/ExtractIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/FilterIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/InsertIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/MapReduce.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/NestIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/NoChildrenIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/ReplaceIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/SortIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/StoppableIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/TreeIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/TreePrinter.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/UnfoldIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/Iterator/ZipIterator.php create mode 100644 app/vendor/cakephp/cakephp/src/Collection/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Collection/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Collection/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Collection/functions.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/CacheClearCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/CacheClearallCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/CacheListCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/Command.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/CompletionCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/I18nCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/I18nExtractCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/I18nInitCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/PluginAssetsCopyCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/PluginAssetsRemoveCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/PluginAssetsSymlinkCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/PluginAssetsTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/PluginLoadCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/PluginLoadedCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/PluginUnloadCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/RoutesCheckCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/RoutesCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/RoutesGenerateCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/SchemacacheBuildCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/SchemacacheClearCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/ServerCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Command/VersionCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Arguments.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/BaseCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Command.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Command/HelpCommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/CommandCollection.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/CommandCollectionAwareInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/CommandFactory.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/CommandFactoryInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/CommandInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/CommandRunner.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/CommandScanner.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/ConsoleErrorHandler.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/ConsoleInput.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/ConsoleInputArgument.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/ConsoleInputOption.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/ConsoleInputSubcommand.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/ConsoleIo.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/ConsoleOptionParser.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/ConsoleOutput.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Exception/ConsoleException.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Exception/MissingHelperException.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Exception/MissingOptionException.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Exception/MissingShellException.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Exception/MissingShellMethodException.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Exception/MissingTaskException.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Exception/StopException.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/HelpFormatter.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/Helper.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/HelperRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Console/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Console/Shell.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/ShellDispatcher.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/TaskRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/Console/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Component.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Component/AuthComponent.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Component/FlashComponent.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Component/FormProtectionComponent.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Component/PaginatorComponent.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Component/RequestHandlerComponent.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Component/SecurityComponent.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/ComponentRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Controller.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/ControllerFactory.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/ErrorController.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Exception/AuthSecurityException.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Exception/MissingActionException.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Exception/MissingComponentException.php create mode 100644 app/vendor/cakephp/cakephp/src/Controller/Exception/SecurityException.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/App.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/BasePlugin.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/ClassLoader.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Configure.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Configure/ConfigEngineInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Configure/Engine/IniConfig.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Configure/Engine/JsonConfig.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Configure/Engine/PhpConfig.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Configure/FileConfigTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/ConsoleApplicationInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Container.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/ContainerApplicationInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/ContainerInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/ConventionsTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Exception/CakeException.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Exception/Exception.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Exception/MissingPluginException.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/HttpApplicationInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/InstanceConfigTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Core/ObjectRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Plugin.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/PluginApplicationInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/PluginCollection.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/PluginInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Core/Retry/CommandRetry.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/Retry/RetryStrategyInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/ServiceConfig.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/ServiceProvider.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/StaticConfigTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Core/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Core/functions.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Connection.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/ConstraintsInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Driver.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Driver/Mysql.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Driver/Postgres.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Driver/SqlDialectTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Driver/Sqlite.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Driver/Sqlserver.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Driver/TupleComparisonTranslatorTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/DriverInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Exception.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Exception/DatabaseException.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Exception/MissingConnectionException.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Exception/MissingDriverException.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Exception/MissingExtensionException.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Exception/NestedTransactionRollbackException.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/AggregateExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/BetweenExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/CaseExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/CommonTableExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/Comparison.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/ComparisonExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/FieldInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/FieldTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/FunctionExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/IdentifierExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/OrderByExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/OrderClauseExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/QueryExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/StringExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/TupleComparison.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/UnaryExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/ValuesExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/WindowExpression.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Expression/WindowInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/ExpressionInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/FieldTypeConverter.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/FunctionsBuilder.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/IdentifierQuoter.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Database/Log/LoggedQuery.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Log/LoggingStatement.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Log/QueryLogger.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/PostgresCompiler.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Query.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/QueryCompiler.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Database/Retry/ErrorCodeWaitStrategy.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Retry/ReconnectStrategy.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/BaseSchema.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/CachedCollection.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/Collection.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/CollectionInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/MysqlSchema.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/MysqlSchemaDialect.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/PostgresSchema.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/PostgresSchemaDialect.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/SchemaDialect.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/SqlGeneratorInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/SqliteSchema.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/SqliteSchemaDialect.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/SqlserverSchema.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/SqlserverSchemaDialect.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/TableSchema.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/TableSchemaAwareInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Schema/TableSchemaInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/SchemaCache.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/SqlDialectTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/SqliteCompiler.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/SqlserverCompiler.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Statement/BufferResultsTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Statement/BufferedStatement.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Statement/CallbackStatement.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Statement/MysqlStatement.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Statement/PDOStatement.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Statement/SqliteStatement.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Statement/SqlserverStatement.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Statement/StatementDecorator.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/StatementInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/BaseType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/BatchCastingInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/BinaryType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/BinaryUuidType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/BoolType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/DateTimeFractionalType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/DateTimeTimezoneType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/DateTimeType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/DateType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/DecimalType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/ExpressionTypeCasterTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/ExpressionTypeInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/FloatType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/IntegerType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/JsonType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/OptionalConvertInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/StringType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/TimeType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/Type/UuidType.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/TypeConverterTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/TypeFactory.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/TypeInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/TypeMap.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/TypeMapTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/TypedResultInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/TypedResultTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/ValueBinder.php create mode 100644 app/vendor/cakephp/cakephp/src/Database/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/ConnectionInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/ConnectionManager.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/ConnectionRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/EntityInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/EntityTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/Exception/InvalidPrimaryKeyException.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/Exception/MissingDatasourceConfigException.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/Exception/MissingDatasourceException.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/Exception/MissingModelException.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/Exception/PageOutOfBoundsException.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/Exception/RecordNotFoundException.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/FactoryLocator.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/FixtureInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/InvalidPropertyInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/Locator/AbstractLocator.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/Locator/LocatorInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/ModelAwareTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/Paginator.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/PaginatorInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/QueryCacher.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/QueryInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/QueryTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/RepositoryInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/ResultSetDecorator.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/ResultSetInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/RuleInvoker.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/RulesAwareTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/RulesChecker.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/SchemaInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/SimplePaginator.php create mode 100644 app/vendor/cakephp/cakephp/src/Datasource/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Error/BaseErrorHandler.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/ConsoleErrorHandler.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/ArrayItemNode.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/ArrayNode.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/ClassNode.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/ConsoleFormatter.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/DebugContext.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/FormatterInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/HtmlFormatter.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/NodeInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/PropertyNode.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/ReferenceNode.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/ScalarNode.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/SpecialNode.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/TextFormatter.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debug/dumpHeader.html create mode 100644 app/vendor/cakephp/cakephp/src/Error/Debugger.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/ErrorHandler.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/ErrorLogger.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/ErrorLoggerInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/ExceptionRenderer.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/ExceptionRendererInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/FatalErrorException.php create mode 100644 app/vendor/cakephp/cakephp/src/Error/Middleware/ErrorHandlerMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/Decorator/AbstractDecorator.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/Decorator/ConditionDecorator.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/Decorator/SubjectFilterDecorator.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/Event.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/EventDispatcherInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/EventDispatcherTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/EventInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/EventList.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/EventListenerInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/EventManager.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/EventManagerInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Event/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Event/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Event/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Filesystem/File.php create mode 100644 app/vendor/cakephp/cakephp/src/Filesystem/Filesystem.php create mode 100644 app/vendor/cakephp/cakephp/src/Filesystem/Folder.php create mode 100644 app/vendor/cakephp/cakephp/src/Filesystem/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Filesystem/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Filesystem/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Form/Form.php create mode 100644 app/vendor/cakephp/cakephp/src/Form/FormProtector.php create mode 100644 app/vendor/cakephp/cakephp/src/Form/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Form/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Form/Schema.php create mode 100644 app/vendor/cakephp/cakephp/src/Form/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Http/BaseApplication.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/CallbackStream.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Adapter/Curl.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Adapter/Stream.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/AdapterInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Auth/Basic.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Auth/Digest.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Auth/Oauth.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Exception/ClientException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Exception/NetworkException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Exception/RequestException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/FormData.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/FormDataPart.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Message.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Request.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Client/Response.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/ControllerFactory.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/ControllerFactoryInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Cookie/Cookie.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Cookie/CookieCollection.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Cookie/CookieInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/CorsBuilder.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/BadRequestException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/ConflictException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/ForbiddenException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/GoneException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/HttpException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/InternalErrorException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/InvalidCsrfTokenException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/MethodNotAllowedException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/MissingControllerException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/NotAcceptableException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/NotFoundException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/NotImplementedException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/RedirectException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/ServiceUnavailableException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/UnauthorizedException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Exception/UnavailableForLegalReasonsException.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/FlashMessage.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Http/Middleware/BodyParserMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Middleware/ClosureDecoratorMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Middleware/CspMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Middleware/CsrfProtectionMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Middleware/DoublePassDecoratorMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Middleware/EncryptedCookieMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Middleware/HttpsEnforcerMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Middleware/SecurityHeadersMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Middleware/SessionCsrfProtectionMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/MiddlewareApplication.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/MiddlewareQueue.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Http/Response.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/ResponseEmitter.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Runner.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Server.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/ServerRequest.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/ServerRequestFactory.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Session.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Session/CacheSession.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/Session/DatabaseSession.php create mode 100644 app/vendor/cakephp/cakephp/src/Http/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/I18n/ChainMessagesLoader.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Date.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/DateFormatTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Exception/I18nException.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Formatter/IcuFormatter.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Formatter/SprintfFormatter.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/FormatterInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/FormatterLocator.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/FrozenDate.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/FrozenTime.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/I18n.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/I18nDateTimeInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/I18n/MessagesFileLoader.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Middleware/LocaleSelectorMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Number.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Package.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/PackageLocator.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Parser/MoFileParser.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Parser/PoFileParser.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/PluralRules.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/README.md create mode 100644 app/vendor/cakephp/cakephp/src/I18n/RelativeTimeFormatter.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Time.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/Translator.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/TranslatorRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/I18n/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/I18n/functions.php create mode 100644 app/vendor/cakephp/cakephp/src/Log/Engine/ArrayLog.php create mode 100644 app/vendor/cakephp/cakephp/src/Log/Engine/BaseLog.php create mode 100644 app/vendor/cakephp/cakephp/src/Log/Engine/ConsoleLog.php create mode 100644 app/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php create mode 100644 app/vendor/cakephp/cakephp/src/Log/Engine/SyslogLog.php create mode 100644 app/vendor/cakephp/cakephp/src/Log/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Log/Log.php create mode 100644 app/vendor/cakephp/cakephp/src/Log/LogEngineRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/Log/LogTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Log/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Log/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/AbstractTransport.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/Email.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/Exception/MissingActionException.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/Exception/MissingMailerException.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/Mailer.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/MailerAwareTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/Message.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/Renderer.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/Transport/DebugTransport.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/Transport/MailTransport.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/Transport/SmtpTransport.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/TransportFactory.php create mode 100644 app/vendor/cakephp/cakephp/src/Mailer/TransportRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/Network/Exception/SocketException.php create mode 100644 app/vendor/cakephp/cakephp/src/Network/Socket.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Association.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Association/BelongsTo.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Association/BelongsToMany.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Association/DependentDeleteHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Association/HasMany.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Association/HasOne.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Association/Loader/SelectLoader.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Association/Loader/SelectWithPivotLoader.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/AssociationCollection.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/AssociationsNormalizerTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Behavior.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Behavior/CounterCacheBehavior.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Behavior/TimestampBehavior.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Behavior/Translate/EavStrategy.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Behavior/Translate/ShadowTableStrategy.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Behavior/Translate/TranslateStrategyInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Behavior/Translate/TranslateStrategyTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Behavior/Translate/TranslateTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Behavior/TranslateBehavior.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Behavior/TreeBehavior.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/BehaviorRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/EagerLoadable.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/EagerLoader.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Entity.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Exception/MissingBehaviorException.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Exception/MissingEntityException.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Exception/MissingTableClassException.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Exception/PersistenceFailedException.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Exception/RolledbackTransactionException.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/ORM/LazyEagerLoader.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Locator/LocatorAwareTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Locator/LocatorInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Locator/TableLocator.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Marshaller.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/PropertyMarshalInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Query.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/README.md create mode 100644 app/vendor/cakephp/cakephp/src/ORM/ResultSet.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Rule/ExistsIn.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Rule/IsUnique.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Rule/LinkConstraint.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Rule/ValidCount.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/RulesChecker.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/SaveOptionsBuilder.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/Table.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/TableRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/ORM/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Asset.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Exception/DuplicateNamedRouteException.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Exception/MissingControllerException.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Exception/MissingDispatcherFilterException.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Exception/MissingRouteException.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Exception/RedirectException.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Middleware/AssetMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Middleware/RoutingMiddleware.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Route/DashedRoute.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Route/EntityRoute.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Route/InflectedRoute.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Route/PluginShortRoute.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Route/RedirectRoute.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Route/Route.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/RouteBuilder.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/RouteCollection.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/Router.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/RoutingApplicationInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Routing/functions.php create mode 100644 app/vendor/cakephp/cakephp/src/Shell/Helper/ProgressHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/Shell/Helper/TableHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/Shell/Task/CommandTask.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/ConsoleIntegrationTestCase.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/ConsoleIntegrationTestTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Console/ContentsBase.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Console/ContentsContain.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Console/ContentsContainRow.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Console/ContentsEmpty.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Console/ContentsNotContain.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Console/ContentsRegExp.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Console/ExitCode.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/MailConstraintBase.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/MailContains.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/MailContainsAttachment.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/MailContainsHtml.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/MailContainsText.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/MailCount.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/MailSentFrom.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/MailSentTo.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/MailSentWith.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/MailSubjectContains.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Email/NoMailSent.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/EventFired.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/EventFiredWith.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/BodyContains.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/BodyEmpty.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/BodyEquals.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/BodyNotContains.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/BodyNotEmpty.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/BodyNotEquals.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/BodyNotRegExp.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/BodyRegExp.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/ContentType.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/CookieEncryptedEquals.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/CookieEquals.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/CookieNotSet.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/CookieSet.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/FileSent.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/FileSentAs.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/HeaderContains.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/HeaderEquals.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/HeaderNotContains.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/HeaderNotSet.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/HeaderSet.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/ResponseBase.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/StatusCode.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/StatusCodeBase.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/StatusError.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/StatusFailure.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/StatusOk.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Response/StatusSuccess.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Session/FlashParamEquals.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Session/SessionEquals.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/Session/SessionHasKey.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/View/LayoutFileEquals.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Constraint/View/TemplateFileEquals.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/ContainerStubTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/EmailTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Fixture/FixtureInjector.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Fixture/FixtureManager.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Fixture/TestFixture.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/IntegrationTestCase.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/IntegrationTestTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/LegacyCommandRunner.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/LegacyShellDispatcher.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/MiddlewareDispatcher.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/StringCompareTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Stub/ConsoleInput.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Stub/ConsoleOutput.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Stub/MissingConsoleInputException.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/Stub/TestExceptionRenderer.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/TestCase.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/TestEmailTransport.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/TestListenerTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/TestSession.php create mode 100644 app/vendor/cakephp/cakephp/src/TestSuite/TestSuite.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/CookieCryptTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/Crypto/OpenSsl.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/Exception/XmlException.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/Hash.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/Inflector.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Utility/MergeVariablesTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Utility/Security.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/Text.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/Xml.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/bootstrap.php create mode 100644 app/vendor/cakephp/cakephp/src/Utility/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/Validation/LICENSE.txt create mode 100644 app/vendor/cakephp/cakephp/src/Validation/README.md create mode 100644 app/vendor/cakephp/cakephp/src/Validation/RulesProvider.php create mode 100644 app/vendor/cakephp/cakephp/src/Validation/ValidatableInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Validation/Validation.php create mode 100644 app/vendor/cakephp/cakephp/src/Validation/ValidationRule.php create mode 100644 app/vendor/cakephp/cakephp/src/Validation/ValidationSet.php create mode 100644 app/vendor/cakephp/cakephp/src/Validation/Validator.php create mode 100644 app/vendor/cakephp/cakephp/src/Validation/ValidatorAwareInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/Validation/ValidatorAwareTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/Validation/composer.json create mode 100644 app/vendor/cakephp/cakephp/src/View/AjaxView.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Cell.php create mode 100644 app/vendor/cakephp/cakephp/src/View/CellTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Exception/MissingCellException.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Exception/MissingCellTemplateException.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Exception/MissingElementException.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Exception/MissingHelperException.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Exception/MissingLayoutException.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Exception/MissingTemplateException.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Exception/MissingViewException.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Exception/SerializationFailureException.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Form/ArrayContext.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Form/ContextFactory.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Form/ContextInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Form/EntityContext.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Form/FormContext.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Form/NullContext.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper/BreadcrumbsHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper/FlashHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper/FormHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper/HtmlHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper/IdGeneratorTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper/NumberHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper/PaginatorHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper/TextHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper/TimeHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Helper/UrlHelper.php create mode 100644 app/vendor/cakephp/cakephp/src/View/HelperRegistry.php create mode 100644 app/vendor/cakephp/cakephp/src/View/JsonView.php create mode 100644 app/vendor/cakephp/cakephp/src/View/SerializedView.php create mode 100644 app/vendor/cakephp/cakephp/src/View/StringTemplate.php create mode 100644 app/vendor/cakephp/cakephp/src/View/StringTemplateTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/View/View.php create mode 100644 app/vendor/cakephp/cakephp/src/View/ViewBlock.php create mode 100644 app/vendor/cakephp/cakephp/src/View/ViewBuilder.php create mode 100644 app/vendor/cakephp/cakephp/src/View/ViewVarsTrait.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/BasicWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/ButtonWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/CheckboxWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/DateTimeWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/FileWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/LabelWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/MultiCheckboxWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/NestingLabelWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/RadioWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/SelectBoxWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/TextareaWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/WidgetInterface.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/WidgetLocator.php create mode 100644 app/vendor/cakephp/cakephp/src/View/Widget/YearWidget.php create mode 100644 app/vendor/cakephp/cakephp/src/View/XmlView.php create mode 100644 app/vendor/cakephp/cakephp/src/basics.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/duplicate_named_route.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/fatal_error.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_action.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_behavior.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_cell_template.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_component.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_connection.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_controller.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_datasource.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_datasource_config.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_helper.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_layout.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_plugin.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_route.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_template.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/missing_view.php create mode 100644 app/vendor/cakephp/cakephp/templates/Error/pdo_error.php create mode 100644 app/vendor/cakephp/cakephp/templates/element/auto_table_warning.php create mode 100644 app/vendor/cakephp/cakephp/templates/element/exception_stack_trace.php create mode 100644 app/vendor/cakephp/cakephp/templates/element/exception_stack_trace_nav.php create mode 100644 app/vendor/cakephp/cakephp/templates/element/plugin_class_error.php create mode 100644 app/vendor/cakephp/cakephp/templates/layout/dev_error.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/ArticlesFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/ArticlesMoreTranslationsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/ArticlesTagsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/ArticlesTranslationsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/AssertIntegrationTestCase.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/AttachmentsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/AuthUsersFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/AuthorsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/AuthorsTagsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/AuthorsTranslationsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/BinaryUuidItemsBinaryUuidTagsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/BinaryUuidItemsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/BinaryUuidTagsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/CakeSessionsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/CategoriesFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/CommentsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/CommentsTranslationsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/CompositeIncrementsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/CounterCacheCategoriesFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/CounterCacheCommentsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/CounterCachePostsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/CounterCacheUserCategoryPostsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/CounterCacheUsersFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/DatatypesFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/DateKeysFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/FeaturedTagsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/FixturizedTestCase.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/MembersFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/MenuLinkTreesFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/NumberTreesFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/OrderedUuidItemsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/OrdersFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/OtherArticlesFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/PolymorphicTaggedFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/PostsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/ProductsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/ProfilesFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/SectionsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/SectionsMembersFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/SectionsTranslationsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/SessionsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/SiteArticlesFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/SiteArticlesTagsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/SiteAuthorsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/SiteTagsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/SpecialTagsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/SpecialTagsTranslationsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/TagsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/TagsShadowTranslationsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/TagsTranslationsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/TestPluginCommentsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/ThingsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/TranslatesFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/UniqueAuthorsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/UsersFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/UuidItemsFixture.php create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/rss.xml create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/sample.a68 create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/sample.html create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/sample.xml create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/soap_request.xml create mode 100644 app/vendor/cakephp/cakephp/tests/Fixture/soap_response.xml create mode 100644 app/vendor/cakephp/cakephp/tests/PHPStan/AssociationTableMixinClassReflectionExtension.php create mode 100644 app/vendor/cakephp/cakephp/tests/PHPStan/TableFindByPropertyMethodReflection.php create mode 100644 app/vendor/cakephp/cakephp/tests/bootstrap.php create mode 100644 app/vendor/cakephp/chronos/Dockerfile create mode 100644 app/vendor/cakephp/chronos/LICENSE create mode 100644 app/vendor/cakephp/chronos/README.md create mode 100644 app/vendor/cakephp/chronos/composer.json create mode 100644 app/vendor/cakephp/chronos/docs.Dockerfile create mode 100644 app/vendor/cakephp/chronos/docs/config/__init__.py create mode 100644 app/vendor/cakephp/chronos/docs/config/all.py create mode 100644 app/vendor/cakephp/chronos/docs/en/conf.py create mode 100644 app/vendor/cakephp/chronos/docs/en/contents.rst create mode 100644 app/vendor/cakephp/chronos/docs/en/index.rst create mode 100644 app/vendor/cakephp/chronos/docs/fr/conf.py create mode 100644 app/vendor/cakephp/chronos/docs/fr/contents.rst create mode 100644 app/vendor/cakephp/chronos/docs/fr/index.rst create mode 100644 app/vendor/cakephp/chronos/docs/ja/conf.py create mode 100644 app/vendor/cakephp/chronos/docs/ja/contents.rst create mode 100644 app/vendor/cakephp/chronos/docs/ja/index.rst create mode 100644 app/vendor/cakephp/chronos/docs/pt/conf.py create mode 100644 app/vendor/cakephp/chronos/docs/pt/contents.rst create mode 100644 app/vendor/cakephp/chronos/docs/pt/index.rst create mode 100644 app/vendor/cakephp/chronos/src/Chronos.php create mode 100644 app/vendor/cakephp/chronos/src/ChronosInterface.php create mode 100644 app/vendor/cakephp/chronos/src/ChronosInterval.php create mode 100644 app/vendor/cakephp/chronos/src/Date.php create mode 100644 app/vendor/cakephp/chronos/src/DifferenceFormatter.php create mode 100644 app/vendor/cakephp/chronos/src/DifferenceFormatterInterface.php create mode 100644 app/vendor/cakephp/chronos/src/MutableDate.php create mode 100644 app/vendor/cakephp/chronos/src/MutableDateTime.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/ComparisonTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/CopyTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/DifferenceTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/FactoryTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/FormattingTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/FrozenTimeTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/MagicPropertyTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/ModifierTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/RelativeKeywordTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/TestingAidTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Traits/TimezoneTrait.php create mode 100644 app/vendor/cakephp/chronos/src/Translator.php create mode 100644 app/vendor/cakephp/chronos/src/carbon_compat.php create mode 100644 app/vendor/cakephp/debug_kit/Dockerfile create mode 100644 app/vendor/cakephp/debug_kit/LICENSE.txt create mode 100644 app/vendor/cakephp/debug_kit/README.md create mode 100644 app/vendor/cakephp/debug_kit/composer.json create mode 100644 app/vendor/cakephp/debug_kit/config/bootstrap.php create mode 100644 app/vendor/cakephp/debug_kit/config/routes.php create mode 100644 app/vendor/cakephp/debug_kit/docs.Dockerfile create mode 100644 app/vendor/cakephp/debug_kit/docs/config/__init__.py create mode 100644 app/vendor/cakephp/debug_kit/docs/config/all.py create mode 100644 app/vendor/cakephp/debug_kit/docs/en/conf.py create mode 100644 app/vendor/cakephp/debug_kit/docs/en/contents.rst create mode 100644 app/vendor/cakephp/debug_kit/docs/en/index.rst create mode 100644 app/vendor/cakephp/debug_kit/docs/fr/conf.py create mode 100644 app/vendor/cakephp/debug_kit/docs/fr/contents.rst create mode 100644 app/vendor/cakephp/debug_kit/docs/fr/index.rst create mode 100644 app/vendor/cakephp/debug_kit/docs/ja/conf.py create mode 100644 app/vendor/cakephp/debug_kit/docs/ja/contents.rst create mode 100644 app/vendor/cakephp/debug_kit/docs/ja/index.rst create mode 100644 app/vendor/cakephp/debug_kit/docs/pt/conf.py create mode 100644 app/vendor/cakephp/debug_kit/docs/pt/contents.rst create mode 100644 app/vendor/cakephp/debug_kit/docs/pt/index.rst create mode 100644 app/vendor/cakephp/debug_kit/psalm-baseline.xml create mode 100644 app/vendor/cakephp/debug_kit/psalm.xml create mode 100644 app/vendor/cakephp/debug_kit/src/Cache/Engine/DebugEngine.php create mode 100644 app/vendor/cakephp/debug_kit/src/Command/BenchmarkCommand.php create mode 100644 app/vendor/cakephp/debug_kit/src/Controller/ComposerController.php create mode 100644 app/vendor/cakephp/debug_kit/src/Controller/DashboardController.php create mode 100644 app/vendor/cakephp/debug_kit/src/Controller/DebugKitController.php create mode 100644 app/vendor/cakephp/debug_kit/src/Controller/MailPreviewController.php create mode 100644 app/vendor/cakephp/debug_kit/src/Controller/PanelsController.php create mode 100644 app/vendor/cakephp/debug_kit/src/Controller/RequestsController.php create mode 100644 app/vendor/cakephp/debug_kit/src/Controller/ToolbarController.php create mode 100644 app/vendor/cakephp/debug_kit/src/Database/Log/DebugLog.php create mode 100644 app/vendor/cakephp/debug_kit/src/DebugInclude.php create mode 100644 app/vendor/cakephp/debug_kit/src/DebugMemory.php create mode 100644 app/vendor/cakephp/debug_kit/src/DebugPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/DebugSql.php create mode 100644 app/vendor/cakephp/debug_kit/src/DebugTimer.php create mode 100644 app/vendor/cakephp/debug_kit/src/Locale/debug_kit.pot create mode 100644 app/vendor/cakephp/debug_kit/src/Locale/eng/LC_MESSAGES/debug_kit.po create mode 100644 app/vendor/cakephp/debug_kit/src/Locale/fra/LC_MESSAGES/debug_kit.po create mode 100644 app/vendor/cakephp/debug_kit/src/Locale/lim/LC_MESSAGES/debug_kit.po create mode 100644 app/vendor/cakephp/debug_kit/src/Locale/nld/LC_MESSAGES/debug_kit.po create mode 100644 app/vendor/cakephp/debug_kit/src/Locale/pt_BR/LC_MESSAGES/debug_kit.po create mode 100644 app/vendor/cakephp/debug_kit/src/Locale/spa/LC_MESSAGES/debug_kit.po create mode 100644 app/vendor/cakephp/debug_kit/src/Log/Engine/DebugKitLog.php create mode 100644 app/vendor/cakephp/debug_kit/src/Mailer/AbstractResult.php create mode 100644 app/vendor/cakephp/debug_kit/src/Mailer/MailPreview.php create mode 100644 app/vendor/cakephp/debug_kit/src/Mailer/PreviewResult.php create mode 100644 app/vendor/cakephp/debug_kit/src/Mailer/SentMailResult.php create mode 100644 app/vendor/cakephp/debug_kit/src/Mailer/Transport/DebugKitTransport.php create mode 100644 app/vendor/cakephp/debug_kit/src/Middleware/DebugKitMiddleware.php create mode 100644 app/vendor/cakephp/debug_kit/src/Model/Behavior/TimedBehavior.php create mode 100644 app/vendor/cakephp/debug_kit/src/Model/Entity/Panel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Model/Entity/Request.php create mode 100644 app/vendor/cakephp/debug_kit/src/Model/Table/LazyTableTrait.php create mode 100644 app/vendor/cakephp/debug_kit/src/Model/Table/PanelsTable.php create mode 100644 app/vendor/cakephp/debug_kit/src/Model/Table/RequestsTable.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/CachePanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/DeprecationsPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/EnvironmentPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/HistoryPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/IncludePanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/LogPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/MailPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/PackagesPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/PanelRegistry.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/RequestPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/RoutesPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/SessionPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/SqlLogPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/TimerPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Panel/VariablesPanel.php create mode 100644 app/vendor/cakephp/debug_kit/src/Plugin.php create mode 100644 app/vendor/cakephp/debug_kit/src/ToolbarService.php create mode 100644 app/vendor/cakephp/debug_kit/src/View/AjaxView.php create mode 100644 app/vendor/cakephp/debug_kit/src/View/Helper/CredentialsHelper.php create mode 100644 app/vendor/cakephp/debug_kit/src/View/Helper/SimpleGraphHelper.php create mode 100644 app/vendor/cakephp/debug_kit/src/View/Helper/ToolbarHelper.php create mode 100644 app/vendor/cakephp/debug_kit/templates/Dashboard/index.php create mode 100644 app/vendor/cakephp/debug_kit/templates/MailPreview/email.php create mode 100644 app/vendor/cakephp/debug_kit/templates/MailPreview/index.php create mode 100644 app/vendor/cakephp/debug_kit/templates/Panels/view.php create mode 100644 app/vendor/cakephp/debug_kit/templates/Requests/view.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/cache_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/deprecations_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/environment_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/history_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/include_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/log_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/mail_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/packages_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/preview_header.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/request_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/routes_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/session_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/sql_log_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/timer_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/element/variables_panel.php create mode 100644 app/vendor/cakephp/debug_kit/templates/layout/dashboard.php create mode 100644 app/vendor/cakephp/debug_kit/templates/layout/mailer.php create mode 100644 app/vendor/cakephp/debug_kit/templates/layout/toolbar.php create mode 100644 app/vendor/cakephp/debug_kit/tests/Fixture/PanelsFixture.php create mode 100644 app/vendor/cakephp/debug_kit/tests/Fixture/RequestsFixture.php create mode 100644 app/vendor/cakephp/debug_kit/webroot/css/raleway-regular.eot create mode 100644 app/vendor/cakephp/debug_kit/webroot/css/raleway-regular.svg create mode 100644 app/vendor/cakephp/debug_kit/webroot/css/raleway-regular.ttf create mode 100644 app/vendor/cakephp/debug_kit/webroot/css/raleway-regular.woff create mode 100644 app/vendor/cakephp/debug_kit/webroot/css/reset.css create mode 100644 app/vendor/cakephp/debug_kit/webroot/css/toolbar.css create mode 100644 app/vendor/cakephp/debug_kit/webroot/img/cake.icon.png create mode 100644 app/vendor/cakephp/debug_kit/webroot/js/debug_kit.js create mode 100644 app/vendor/cakephp/debug_kit/webroot/js/jquery.js create mode 100644 app/vendor/cakephp/debug_kit/webroot/js/toolbar-app.js create mode 100644 app/vendor/cakephp/debug_kit/webroot/js/toolbar.js create mode 100644 app/vendor/cakephp/migrations/Dockerfile create mode 100644 app/vendor/cakephp/migrations/LICENSE.txt create mode 100644 app/vendor/cakephp/migrations/README.md create mode 100644 app/vendor/cakephp/migrations/composer.json create mode 100644 app/vendor/cakephp/migrations/docs.Dockerfile create mode 100644 app/vendor/cakephp/migrations/docs/config/__init__.py create mode 100644 app/vendor/cakephp/migrations/docs/config/all.py create mode 100644 app/vendor/cakephp/migrations/docs/en/conf.py create mode 100644 app/vendor/cakephp/migrations/docs/en/contents.rst create mode 100644 app/vendor/cakephp/migrations/docs/en/index.rst create mode 100644 app/vendor/cakephp/migrations/docs/fr/conf.py create mode 100644 app/vendor/cakephp/migrations/docs/fr/contents.rst create mode 100644 app/vendor/cakephp/migrations/docs/fr/index.rst create mode 100644 app/vendor/cakephp/migrations/docs/ja/conf.py create mode 100644 app/vendor/cakephp/migrations/docs/ja/contents.rst create mode 100644 app/vendor/cakephp/migrations/docs/ja/index.rst create mode 100644 app/vendor/cakephp/migrations/docs/pt/conf.py create mode 100644 app/vendor/cakephp/migrations/docs/pt/contents.rst create mode 100644 app/vendor/cakephp/migrations/docs/pt/index.rst create mode 100644 app/vendor/cakephp/migrations/docs/ru/conf.py create mode 100644 app/vendor/cakephp/migrations/docs/ru/contents.rst create mode 100644 app/vendor/cakephp/migrations/docs/ru/index.rst create mode 100644 app/vendor/cakephp/migrations/psalm-baseline.xml create mode 100644 app/vendor/cakephp/migrations/psalm.xml create mode 100644 app/vendor/cakephp/migrations/src/AbstractMigration.php create mode 100644 app/vendor/cakephp/migrations/src/AbstractSeed.php create mode 100644 app/vendor/cakephp/migrations/src/CakeAdapter.php create mode 100644 app/vendor/cakephp/migrations/src/CakeManager.php create mode 100644 app/vendor/cakephp/migrations/src/Command/BakeMigrationCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/BakeMigrationDiffCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/BakeMigrationSnapshotCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/BakeSeedCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/BakeSimpleMigrationCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/MigrationsCacheBuildCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/MigrationsCacheClearCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/MigrationsCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/MigrationsCreateCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/MigrationsDumpCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/MigrationsMarkMigratedCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/MigrationsMigrateCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/MigrationsRollbackCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/MigrationsSeedCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/MigrationsStatusCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/BaseCommand.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/CacheBuild.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/CacheClear.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/CommandTrait.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/Create.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/Dump.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/MarkMigrated.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/Migrate.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/Rollback.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/Seed.php create mode 100644 app/vendor/cakephp/migrations/src/Command/Phinx/Status.php create mode 100644 app/vendor/cakephp/migrations/src/Command/SnapshotTrait.php create mode 100644 app/vendor/cakephp/migrations/src/ConfigurationTrait.php create mode 100644 app/vendor/cakephp/migrations/src/Migrations.php create mode 100644 app/vendor/cakephp/migrations/src/MigrationsDispatcher.php create mode 100644 app/vendor/cakephp/migrations/src/Plugin.php create mode 100644 app/vendor/cakephp/migrations/src/Shell/Task/SimpleMigrationTask.php create mode 100644 app/vendor/cakephp/migrations/src/Table.php create mode 100644 app/vendor/cakephp/migrations/src/TableFinderTrait.php create mode 100644 app/vendor/cakephp/migrations/src/Util/ColumnParser.php create mode 100644 app/vendor/cakephp/migrations/src/Util/SchemaTrait.php create mode 100644 app/vendor/cakephp/migrations/src/Util/UtilTrait.php create mode 100644 app/vendor/cakephp/migrations/src/View/Helper/MigrationHelper.php create mode 100644 app/vendor/cakephp/migrations/templates/Phinx/create.php.template create mode 100644 app/vendor/cakephp/migrations/templates/bake/Seed/seed.twig create mode 100644 app/vendor/cakephp/migrations/templates/bake/config/diff.twig create mode 100644 app/vendor/cakephp/migrations/templates/bake/config/skeleton.twig create mode 100644 app/vendor/cakephp/migrations/templates/bake/config/snapshot.twig create mode 100644 app/vendor/cakephp/migrations/templates/bake/element/add-columns.twig create mode 100644 app/vendor/cakephp/migrations/templates/bake/element/add-foreign-keys.twig create mode 100644 app/vendor/cakephp/migrations/templates/bake/element/add-indexes.twig create mode 100644 app/vendor/cakephp/migrations/templates/bake/element/create-tables.twig create mode 100644 app/vendor/cakephp/plugin-installer/.gitattributes create mode 100644 app/vendor/cakephp/plugin-installer/.gitignore create mode 100644 app/vendor/cakephp/plugin-installer/LICENSE.txt create mode 100644 app/vendor/cakephp/plugin-installer/README.md create mode 100644 app/vendor/cakephp/plugin-installer/composer.json create mode 100644 app/vendor/cakephp/plugin-installer/src/Installer/PluginInstaller.php create mode 100644 app/vendor/cakephp/plugin-installer/src/Plugin.php create mode 100644 app/vendor/cakephp/plugin-installer/tests/TestCase/Installer/PluginInstallerTest.php create mode 100644 app/vendor/cakephp/plugin-installer/tests/TestCase/PluginTest.php create mode 100644 app/vendor/cakephp/plugin-installer/tests/php56/TestCase/Installer/PluginInstallerTest.php create mode 100644 app/vendor/cakephp/plugin-installer/tests/php56/TestCase/PHPUnitAssertionCompatTrait.php create mode 100644 app/vendor/cakephp/plugin-installer/tests/php56/TestCase/PluginTest.php create mode 100644 app/vendor/cakephp/twig-view/LICENSE create mode 100644 app/vendor/cakephp/twig-view/README.md create mode 100644 app/vendor/cakephp/twig-view/composer.json create mode 100644 app/vendor/cakephp/twig-view/src/Command/CompileCommand.php create mode 100644 app/vendor/cakephp/twig-view/src/Filesystem/RelativeScanner.php create mode 100644 app/vendor/cakephp/twig-view/src/Filesystem/Scanner.php create mode 100644 app/vendor/cakephp/twig-view/src/Filesystem/TreeScanner.php create mode 100644 app/vendor/cakephp/twig-view/src/Panel/TwigPanel.php create mode 100644 app/vendor/cakephp/twig-view/src/Plugin.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/ArraysExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/BasicExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/ConfigureExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/I18nExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/InflectorExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/NumberExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/ProfilerExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/StringsExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/TimeExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/UtilsExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Extension/ViewExtension.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/FileLoader.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Node/Cell.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Node/Element.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/Node/LayoutNode.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/TokenParser/CellParser.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/TokenParser/ElementParser.php create mode 100644 app/vendor/cakephp/twig-view/src/Twig/TokenParser/LayoutParser.php create mode 100644 app/vendor/cakephp/twig-view/src/View/TwigView.php create mode 100644 app/vendor/cakephp/twig-view/templates/element/twig_panel.php create mode 100644 app/vendor/composer/ClassLoader.php create mode 100644 app/vendor/composer/InstalledVersions.php create mode 100644 app/vendor/composer/LICENSE create mode 100644 app/vendor/composer/autoload_classmap.php create mode 100644 app/vendor/composer/autoload_files.php create mode 100644 app/vendor/composer/autoload_namespaces.php create mode 100644 app/vendor/composer/autoload_psr4.php create mode 100644 app/vendor/composer/autoload_real.php create mode 100644 app/vendor/composer/autoload_static.php create mode 100644 app/vendor/composer/ca-bundle/LICENSE create mode 100644 app/vendor/composer/ca-bundle/README.md create mode 100644 app/vendor/composer/ca-bundle/composer.json create mode 100644 app/vendor/composer/ca-bundle/res/cacert.pem create mode 100644 app/vendor/composer/ca-bundle/src/CaBundle.php create mode 100644 app/vendor/composer/composer/.editorconfig create mode 100644 app/vendor/composer/composer/.gitattributes create mode 100644 app/vendor/composer/composer/.gitignore create mode 100644 app/vendor/composer/composer/CHANGELOG.md create mode 100644 app/vendor/composer/composer/CODE_OF_CONDUCT.md create mode 100644 app/vendor/composer/composer/LICENSE create mode 100644 app/vendor/composer/composer/PORTING_INFO create mode 100644 app/vendor/composer/composer/README.md create mode 100644 app/vendor/composer/composer/UPGRADE-2.0.md create mode 100755 app/vendor/composer/composer/bin/compile create mode 100755 app/vendor/composer/composer/bin/composer create mode 100644 app/vendor/composer/composer/composer.json create mode 100644 app/vendor/composer/composer/composer.lock create mode 100644 app/vendor/composer/composer/doc/00-intro.md create mode 100644 app/vendor/composer/composer/doc/01-basic-usage.md create mode 100644 app/vendor/composer/composer/doc/02-libraries.md create mode 100644 app/vendor/composer/composer/doc/03-cli.md create mode 100644 app/vendor/composer/composer/doc/04-schema.md create mode 100644 app/vendor/composer/composer/doc/05-repositories.md create mode 100644 app/vendor/composer/composer/doc/06-config.md create mode 100644 app/vendor/composer/composer/doc/07-runtime.md create mode 100644 app/vendor/composer/composer/doc/08-community.md create mode 100644 app/vendor/composer/composer/doc/articles/aliases.md create mode 100644 app/vendor/composer/composer/doc/articles/authentication-for-private-packages.md create mode 100644 app/vendor/composer/composer/doc/articles/autoloader-optimization.md create mode 100644 app/vendor/composer/composer/doc/articles/custom-installers.md create mode 100644 app/vendor/composer/composer/doc/articles/handling-private-packages.md create mode 100644 app/vendor/composer/composer/doc/articles/plugins.md create mode 100644 app/vendor/composer/composer/doc/articles/repository-priorities.md create mode 100644 app/vendor/composer/composer/doc/articles/resolving-merge-conflicts.md create mode 100644 app/vendor/composer/composer/doc/articles/scripts.md create mode 100644 app/vendor/composer/composer/doc/articles/troubleshooting.md create mode 100644 app/vendor/composer/composer/doc/articles/vendor-binaries.md create mode 100644 app/vendor/composer/composer/doc/articles/versions.md create mode 100644 app/vendor/composer/composer/doc/dev/DefaultPolicy.md create mode 100644 app/vendor/composer/composer/doc/faqs/how-do-i-install-a-package-to-a-custom-path-for-my-framework.md create mode 100644 app/vendor/composer/composer/doc/faqs/how-to-install-composer-programmatically.md create mode 100644 app/vendor/composer/composer/doc/faqs/how-to-install-untrusted-packages-safely.md create mode 100644 app/vendor/composer/composer/doc/faqs/should-i-commit-the-dependencies-in-my-vendor-directory.md create mode 100644 app/vendor/composer/composer/doc/faqs/which-version-numbering-system-does-composer-itself-use.md create mode 100644 app/vendor/composer/composer/doc/faqs/why-are-unbound-version-constraints-a-bad-idea.md create mode 100644 app/vendor/composer/composer/doc/faqs/why-are-version-constraints-combining-comparisons-and-wildcards-a-bad-idea.md create mode 100644 app/vendor/composer/composer/doc/faqs/why-can't-composer-load-repositories-recursively.md create mode 100644 app/vendor/composer/composer/doc/fixtures/fixtures.md create mode 100644 app/vendor/composer/composer/doc/fixtures/repo-composer-plain/packages.json create mode 100644 app/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/bar/baz$923363b3c22e73abb2e3fd891c8156dd4d0821a97fd3e428bc910833e3e46dbe.json create mode 100644 app/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/foo/bar$4baabb3303afa3e34a4d3af18fb138e5f3b79029c1f8d9ab5b477ea15776ba0a.json create mode 100644 app/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/gar/nix$5d210670cb46c8364c8e3fb449967b9bea558b971e5b082f330ae4f1d484c321.json create mode 100644 app/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/provider-active$1893a061e579543822389ecd12d791c612db0c05e22d90e9286e233cacd86ed8.json create mode 100644 app/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/p/qux/quux$c142d1a07ca354be46b613f59f1d601923a5a00ccc5fcce50a77ecdd461eb72d.json create mode 100644 app/vendor/composer/composer/doc/fixtures/repo-composer-with-providers/packages.json create mode 100644 app/vendor/composer/composer/res/composer-repository-schema.json create mode 100644 app/vendor/composer/composer/res/composer-schema.json create mode 100644 app/vendor/composer/composer/src/Composer/Autoload/AutoloadGenerator.php create mode 100644 app/vendor/composer/composer/src/Composer/Autoload/ClassLoader.php create mode 100644 app/vendor/composer/composer/src/Composer/Autoload/ClassMapGenerator.php create mode 100644 app/vendor/composer/composer/src/Composer/Cache.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/AboutCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/ArchiveCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/BaseCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/BaseDependencyCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/ClearCacheCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/ConfigCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/CreateProjectCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/DependsCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/DiagnoseCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/DumpAutoloadCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/ExecCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/FundCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/GlobalCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/HomeCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/InitCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/InstallCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/LicensesCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/OutdatedCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/ProhibitsCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/ReinstallCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/RemoveCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/RequireCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/RunScriptCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/ScriptAliasCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/SearchCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/SelfUpdateCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/ShowCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/StatusCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/SuggestsCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/UpdateCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Command/ValidateCommand.php create mode 100644 app/vendor/composer/composer/src/Composer/Compiler.php create mode 100644 app/vendor/composer/composer/src/Composer/Composer.php create mode 100644 app/vendor/composer/composer/src/Composer/Config.php create mode 100644 app/vendor/composer/composer/src/Composer/Config/ConfigSourceInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Config/JsonConfigSource.php create mode 100644 app/vendor/composer/composer/src/Composer/Console/Application.php create mode 100644 app/vendor/composer/composer/src/Composer/Console/GithubActionError.php create mode 100644 app/vendor/composer/composer/src/Composer/Console/HtmlOutputFormatter.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Decisions.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/GenericRule.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/LocalRepoTransaction.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/LockTransaction.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/MultiConflictRule.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Pool.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/PoolBuilder.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Problem.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Request.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Rule.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/RuleSet.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Solver.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/SolverBugException.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php create mode 100644 app/vendor/composer/composer/src/Composer/DependencyResolver/Transaction.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/ArchiveDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/ChangeReportInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/DownloadManager.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/DownloaderInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/FileDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/FilesystemException.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/FossilDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/GitDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/GzipDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/HgDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/MaxFileSizeExceededException.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/PathDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/PerforceDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/PharDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/RarDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/SvnDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/TarDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/TransportException.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/VcsDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/XzDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Downloader/ZipDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/EventDispatcher/Event.php create mode 100644 app/vendor/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php create mode 100644 app/vendor/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php create mode 100644 app/vendor/composer/composer/src/Composer/Exception/IrrecoverableDownloadException.php create mode 100644 app/vendor/composer/composer/src/Composer/Exception/NoSslException.php create mode 100644 app/vendor/composer/composer/src/Composer/Factory.php create mode 100644 app/vendor/composer/composer/src/Composer/IO/BaseIO.php create mode 100644 app/vendor/composer/composer/src/Composer/IO/BufferIO.php create mode 100644 app/vendor/composer/composer/src/Composer/IO/ConsoleIO.php create mode 100644 app/vendor/composer/composer/src/Composer/IO/IOInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/IO/NullIO.php create mode 100644 app/vendor/composer/composer/src/Composer/InstalledVersions.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/BinaryInstaller.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/InstallationManager.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/InstallerEvent.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/InstallerEvents.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/InstallerInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/LibraryInstaller.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/MetapackageInstaller.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/NoopInstaller.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/PackageEvent.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/PackageEvents.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/PluginInstaller.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/ProjectInstaller.php create mode 100644 app/vendor/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php create mode 100644 app/vendor/composer/composer/src/Composer/Json/JsonFile.php create mode 100644 app/vendor/composer/composer/src/Composer/Json/JsonFormatter.php create mode 100644 app/vendor/composer/composer/src/Composer/Json/JsonManipulator.php create mode 100644 app/vendor/composer/composer/src/Composer/Json/JsonValidationException.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/AliasPackage.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Archiver/PharArchiver.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/BasePackage.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Comparer/Comparer.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/CompleteAliasPackage.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/CompletePackage.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/CompletePackageInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Link.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Loader/ArrayLoader.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Loader/JsonLoader.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Loader/LoaderInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Locker.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Package.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/PackageInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/RootAliasPackage.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/RootPackage.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/RootPackageInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Version/StabilityFilter.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Version/VersionGuesser.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Version/VersionParser.php create mode 100644 app/vendor/composer/composer/src/Composer/Package/Version/VersionSelector.php create mode 100644 app/vendor/composer/composer/src/Composer/Platform/HhvmDetector.php create mode 100644 app/vendor/composer/composer/src/Composer/Platform/Runtime.php create mode 100644 app/vendor/composer/composer/src/Composer/Platform/Version.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/Capability/Capability.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/Capable.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/CommandEvent.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/PluginEvents.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/PluginInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/PluginManager.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/PostFileDownloadEvent.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php create mode 100644 app/vendor/composer/composer/src/Composer/Plugin/PrePoolCreateEvent.php create mode 100644 app/vendor/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/ArrayRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/ArtifactRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/ComposerRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/CompositeRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/FilesystemRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/FilterRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/InstalledArrayRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/InstalledRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/InvalidRepositoryException.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/LockArrayRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/PackageRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/PathRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/PearRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/PlatformRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/RepositoryFactory.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/RepositoryInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/RepositoryManager.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/RepositorySecurityException.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/RepositorySet.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/RootPackageRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/GitDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/HgDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/VcsRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/VersionCacheInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/WritableArrayRepository.php create mode 100644 app/vendor/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php create mode 100644 app/vendor/composer/composer/src/Composer/Script/Event.php create mode 100644 app/vendor/composer/composer/src/Composer/Script/ScriptEvents.php create mode 100644 app/vendor/composer/composer/src/Composer/SelfUpdate/Keys.php create mode 100644 app/vendor/composer/composer/src/Composer/SelfUpdate/Versions.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/AuthHelper.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Bitbucket.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/ComposerMirror.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/ConfigValidator.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/ErrorHandler.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Filesystem.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Git.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/GitHub.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/GitLab.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Hg.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Http/CurlDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Http/CurlResponse.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Http/ProxyHelper.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Http/ProxyManager.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Http/RequestProxy.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Http/Response.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/HttpDownloader.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/IniHelper.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Loop.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/MetadataMinifier.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/NoProxyPattern.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/PackageSorter.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Perforce.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Platform.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/ProcessExecutor.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/RemoteFilesystem.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Silencer.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/StreamContextFactory.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Svn.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/SyncHelper.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Tar.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/TlsHelper.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Url.php create mode 100644 app/vendor/composer/composer/src/Composer/Util/Zip.php create mode 100644 app/vendor/composer/composer/src/bootstrap.php create mode 100644 app/vendor/composer/installed.json create mode 100644 app/vendor/composer/installed.php create mode 100644 app/vendor/composer/metadata-minifier/LICENSE create mode 100644 app/vendor/composer/metadata-minifier/README.md create mode 100644 app/vendor/composer/metadata-minifier/composer.json create mode 100644 app/vendor/composer/metadata-minifier/phpstan.neon.dist create mode 100644 app/vendor/composer/metadata-minifier/src/MetadataMinifier.php create mode 100644 app/vendor/composer/platform_check.php create mode 100644 app/vendor/composer/semver/CHANGELOG.md create mode 100644 app/vendor/composer/semver/LICENSE create mode 100644 app/vendor/composer/semver/README.md create mode 100644 app/vendor/composer/semver/composer.json create mode 100644 app/vendor/composer/semver/src/Comparator.php create mode 100644 app/vendor/composer/semver/src/CompilingMatcher.php create mode 100644 app/vendor/composer/semver/src/Constraint/Bound.php create mode 100644 app/vendor/composer/semver/src/Constraint/Constraint.php create mode 100644 app/vendor/composer/semver/src/Constraint/ConstraintInterface.php create mode 100644 app/vendor/composer/semver/src/Constraint/MatchAllConstraint.php create mode 100644 app/vendor/composer/semver/src/Constraint/MatchNoneConstraint.php create mode 100644 app/vendor/composer/semver/src/Constraint/MultiConstraint.php create mode 100644 app/vendor/composer/semver/src/Interval.php create mode 100644 app/vendor/composer/semver/src/Intervals.php create mode 100644 app/vendor/composer/semver/src/Semver.php create mode 100644 app/vendor/composer/semver/src/VersionParser.php create mode 100644 app/vendor/composer/spdx-licenses/CHANGELOG.md create mode 100644 app/vendor/composer/spdx-licenses/LICENSE create mode 100644 app/vendor/composer/spdx-licenses/README.md create mode 100644 app/vendor/composer/spdx-licenses/composer.json create mode 100644 app/vendor/composer/spdx-licenses/res/spdx-exceptions.json create mode 100644 app/vendor/composer/spdx-licenses/res/spdx-licenses.json create mode 100644 app/vendor/composer/spdx-licenses/src/SpdxLicenses.php create mode 100644 app/vendor/composer/xdebug-handler/CHANGELOG.md create mode 100644 app/vendor/composer/xdebug-handler/LICENSE create mode 100644 app/vendor/composer/xdebug-handler/README.md create mode 100644 app/vendor/composer/xdebug-handler/UPGRADE.md create mode 100644 app/vendor/composer/xdebug-handler/composer.json create mode 100644 app/vendor/composer/xdebug-handler/src/PhpConfig.php create mode 100644 app/vendor/composer/xdebug-handler/src/Process.php create mode 100644 app/vendor/composer/xdebug-handler/src/Status.php create mode 100644 app/vendor/composer/xdebug-handler/src/XdebugHandler.php create mode 100644 app/vendor/dealerdirect/phpcodesniffer-composer-installer/.remarkrc create mode 100644 app/vendor/dealerdirect/phpcodesniffer-composer-installer/.yamllint create mode 100644 app/vendor/dealerdirect/phpcodesniffer-composer-installer/CODE_OF_CONDUCT.md create mode 100644 app/vendor/dealerdirect/phpcodesniffer-composer-installer/LICENSE.md create mode 100644 app/vendor/dealerdirect/phpcodesniffer-composer-installer/README.md create mode 100644 app/vendor/dealerdirect/phpcodesniffer-composer-installer/composer.json create mode 100644 app/vendor/dealerdirect/phpcodesniffer-composer-installer/src/Plugin.php create mode 100644 app/vendor/doctrine/instantiator/.doctrine-project.json create mode 100644 app/vendor/doctrine/instantiator/.github/FUNDING.yml create mode 100644 app/vendor/doctrine/instantiator/.github/workflows/coding-standards.yml create mode 100644 app/vendor/doctrine/instantiator/.github/workflows/continuous-integration.yml create mode 100644 app/vendor/doctrine/instantiator/.github/workflows/phpbench.yml create mode 100644 app/vendor/doctrine/instantiator/.github/workflows/release-on-milestone-closed.yml create mode 100644 app/vendor/doctrine/instantiator/.github/workflows/static-analysis.yml create mode 100644 app/vendor/doctrine/instantiator/CONTRIBUTING.md create mode 100644 app/vendor/doctrine/instantiator/LICENSE create mode 100644 app/vendor/doctrine/instantiator/README.md create mode 100644 app/vendor/doctrine/instantiator/composer.json create mode 100644 app/vendor/doctrine/instantiator/docs/en/index.rst create mode 100644 app/vendor/doctrine/instantiator/docs/en/sidebar.rst create mode 100644 app/vendor/doctrine/instantiator/phpbench.json create mode 100644 app/vendor/doctrine/instantiator/phpcs.xml.dist create mode 100644 app/vendor/doctrine/instantiator/phpstan.neon.dist create mode 100644 app/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php create mode 100644 app/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php create mode 100644 app/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php create mode 100644 app/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php create mode 100644 app/vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php create mode 100644 app/vendor/jasny/twig-extensions/.gitignore create mode 100644 app/vendor/jasny/twig-extensions/.travis.yml create mode 100644 app/vendor/jasny/twig-extensions/LICENSE create mode 100644 app/vendor/jasny/twig-extensions/README.md create mode 100644 app/vendor/jasny/twig-extensions/composer.json create mode 100644 app/vendor/jasny/twig-extensions/phpcs.xml.dist create mode 100644 app/vendor/jasny/twig-extensions/phpstan.neon.dist create mode 100644 app/vendor/jasny/twig-extensions/phpunit.xml.dist create mode 100644 app/vendor/jasny/twig-extensions/src/ArrayExtension.php create mode 100644 app/vendor/jasny/twig-extensions/src/DateExtension.php create mode 100644 app/vendor/jasny/twig-extensions/src/PcreExtension.php create mode 100644 app/vendor/jasny/twig-extensions/src/TextExtension.php create mode 100644 app/vendor/jasny/twig-extensions/tests/ArrayExtensionTest.php create mode 100644 app/vendor/jasny/twig-extensions/tests/DateExtensionTest.php create mode 100644 app/vendor/jasny/twig-extensions/tests/PcreExtensionTest.php create mode 100644 app/vendor/jasny/twig-extensions/tests/TextExtensionTest.php create mode 100644 app/vendor/jasny/twig-extensions/tests/support/TestHelper.php create mode 100644 app/vendor/jdorn/sql-formatter/.gitignore create mode 100644 app/vendor/jdorn/sql-formatter/.travis.yml create mode 100644 app/vendor/jdorn/sql-formatter/LICENSE.txt create mode 100644 app/vendor/jdorn/sql-formatter/README.md create mode 100644 app/vendor/jdorn/sql-formatter/composer.json create mode 100644 app/vendor/jdorn/sql-formatter/composer.lock create mode 100644 app/vendor/jdorn/sql-formatter/examples/cli.php create mode 100644 app/vendor/jdorn/sql-formatter/examples/examples.php create mode 100644 app/vendor/jdorn/sql-formatter/lib/SqlFormatter.php create mode 100644 app/vendor/jdorn/sql-formatter/phpunit.xml.dist create mode 100644 app/vendor/jdorn/sql-formatter/tests/SqlFormatterTest.php create mode 100644 app/vendor/jdorn/sql-formatter/tests/clihighlight.html create mode 100644 app/vendor/jdorn/sql-formatter/tests/compress.html create mode 100644 app/vendor/jdorn/sql-formatter/tests/format-highlight.html create mode 100644 app/vendor/jdorn/sql-formatter/tests/format.html create mode 100644 app/vendor/jdorn/sql-formatter/tests/highlight.html create mode 100644 app/vendor/jdorn/sql-formatter/tests/performance.php create mode 100644 app/vendor/jdorn/sql-formatter/tests/sql.sql create mode 100644 app/vendor/josegonzalez/dotenv/.editorconfig create mode 100644 app/vendor/josegonzalez/dotenv/CONTRIBUTING.markdown create mode 100644 app/vendor/josegonzalez/dotenv/LICENSE create mode 100644 app/vendor/josegonzalez/dotenv/README.markdown create mode 100644 app/vendor/josegonzalez/dotenv/composer.json create mode 100644 app/vendor/josegonzalez/dotenv/src/josegonzalez/Dotenv/Expect.php create mode 100644 app/vendor/josegonzalez/dotenv/src/josegonzalez/Dotenv/Filter/CallableFilter.php create mode 100644 app/vendor/josegonzalez/dotenv/src/josegonzalez/Dotenv/Filter/LowercaseKeyFilter.php create mode 100644 app/vendor/josegonzalez/dotenv/src/josegonzalez/Dotenv/Filter/NullFilter.php create mode 100644 app/vendor/josegonzalez/dotenv/src/josegonzalez/Dotenv/Filter/RemapKeysFilter.php create mode 100644 app/vendor/josegonzalez/dotenv/src/josegonzalez/Dotenv/Filter/UnderscoreArrayFilter.php create mode 100644 app/vendor/josegonzalez/dotenv/src/josegonzalez/Dotenv/Filter/UppercaseFirstKeyFilter.php create mode 100644 app/vendor/josegonzalez/dotenv/src/josegonzalez/Dotenv/Filter/UrlParseFilter.php create mode 100644 app/vendor/josegonzalez/dotenv/src/josegonzalez/Dotenv/Loader.php create mode 100644 app/vendor/justinrainbow/json-schema/.php_cs.dist create mode 100644 app/vendor/justinrainbow/json-schema/LICENSE create mode 100644 app/vendor/justinrainbow/json-schema/README.md create mode 100755 app/vendor/justinrainbow/json-schema/bin/validate-json create mode 100644 app/vendor/justinrainbow/json-schema/composer.json create mode 100644 app/vendor/justinrainbow/json-schema/demo/README.md create mode 100644 app/vendor/justinrainbow/json-schema/demo/data.json create mode 100644 app/vendor/justinrainbow/json-schema/demo/demo.php create mode 100644 app/vendor/justinrainbow/json-schema/demo/schema.json create mode 100644 app/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-03.json create mode 100644 app/vendor/justinrainbow/json-schema/dist/schema/json-schema-draft-04.json create mode 100644 app/vendor/justinrainbow/json-schema/phpunit.xml.dist create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php create mode 100644 app/vendor/justinrainbow/json-schema/src/JsonSchema/Validator.php create mode 100644 app/vendor/laminas/laminas-diactoros/.laminas-ci.json create mode 100644 app/vendor/laminas/laminas-diactoros/COPYRIGHT.md create mode 100644 app/vendor/laminas/laminas-diactoros/LICENSE.md create mode 100644 app/vendor/laminas/laminas-diactoros/README.md create mode 100644 app/vendor/laminas/laminas-diactoros/composer.json create mode 100644 app/vendor/laminas/laminas-diactoros/composer.lock create mode 100644 app/vendor/laminas/laminas-diactoros/psalm-baseline.xml create mode 100644 app/vendor/laminas/laminas-diactoros/psalm.xml.dist create mode 100644 app/vendor/laminas/laminas-diactoros/src/AbstractSerializer.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/CallbackStream.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/ConfigProvider.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/DeserializationException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/ExceptionInterface.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/InvalidArgumentException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/InvalidStreamPointerPositionException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/RuntimeException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/SerializationException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/UnreadableStreamException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/UnrecognizedProtocolVersionException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/UnrewindableStreamException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/UnseekableStreamException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/UntellableStreamException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/UnwritableStreamException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/UploadedFileAlreadyMovedException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Exception/UploadedFileErrorException.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/HeaderSecurity.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/MessageTrait.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Module.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/PhpInputStream.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/RelativeStream.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Request.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Request/ArraySerializer.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Request/Serializer.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/RequestFactory.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/RequestTrait.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Response.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Response/ArraySerializer.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Response/EmptyResponse.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Response/HtmlResponse.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Response/InjectContentTypeTrait.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Response/JsonResponse.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Response/RedirectResponse.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Response/Serializer.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Response/TextResponse.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Response/XmlResponse.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/ResponseFactory.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/ServerRequest.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/ServerRequestFactory.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Stream.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/StreamFactory.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/UploadedFile.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/UploadedFileFactory.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/Uri.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/UriFactory.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/create_uploaded_file.legacy.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/create_uploaded_file.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/marshal_headers_from_sapi.legacy.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/marshal_headers_from_sapi.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/marshal_method_from_sapi.legacy.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/marshal_method_from_sapi.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/marshal_protocol_version_from_sapi.legacy.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/marshal_protocol_version_from_sapi.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/marshal_uri_from_sapi.legacy.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/marshal_uri_from_sapi.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/normalize_server.legacy.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/normalize_server.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/normalize_uploaded_files.legacy.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/normalize_uploaded_files.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/parse_cookie_header.legacy.php create mode 100644 app/vendor/laminas/laminas-diactoros/src/functions/parse_cookie_header.php create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/CHANGELOG.md create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/COPYRIGHT.md create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/LICENSE.md create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/README.md create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/composer.json create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/psalm-baseline.xml create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/psalm.xml.dist create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/src/ConfigProvider.php create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/src/Emitter/EmitterInterface.php create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/src/Emitter/EmitterStack.php create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/src/Emitter/SapiEmitter.php create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/src/Emitter/SapiEmitterTrait.php create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/src/Emitter/SapiStreamEmitter.php create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/src/Exception/EmitterException.php create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/src/Exception/ExceptionInterface.php create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/src/Exception/InvalidEmitterException.php create mode 100644 app/vendor/laminas/laminas-httphandlerrunner/src/RequestHandlerRunner.php create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/.github/FUNDING.yml create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/.github/workflows/continuous-integration.yml create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/.github/workflows/release-on-milestone-closed.yml create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/CHANGELOG.md create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/COPYRIGHT.md create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/LICENSE.md create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/README.md create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/composer.json create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/config/replacements.php create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/psalm-baseline.xml create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/psalm.xml.dist create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/src/Autoloader.php create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/src/ConfigPostProcessor.php create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/src/Module.php create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/src/Replacements.php create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/src/RewriteRules.php create mode 100644 app/vendor/laminas/laminas-zendframework-bridge/src/autoload.php create mode 100644 app/vendor/league/container/.github/FUNDING.yml create mode 100644 app/vendor/league/container/.github/workflows/test.yml create mode 100644 app/vendor/league/container/CHANGELOG.md create mode 100644 app/vendor/league/container/CONTRIBUTING.md create mode 100644 app/vendor/league/container/LICENSE.md create mode 100644 app/vendor/league/container/README.md create mode 100644 app/vendor/league/container/composer.json create mode 100644 app/vendor/league/container/phpcs.xml create mode 100644 app/vendor/league/container/phpunit.xml create mode 100644 app/vendor/league/container/src/Argument/ArgumentResolverInterface.php create mode 100644 app/vendor/league/container/src/Argument/ArgumentResolverTrait.php create mode 100644 app/vendor/league/container/src/Argument/ClassName.php create mode 100644 app/vendor/league/container/src/Argument/ClassNameInterface.php create mode 100644 app/vendor/league/container/src/Argument/ClassNameWithOptionalValue.php create mode 100644 app/vendor/league/container/src/Argument/RawArgument.php create mode 100644 app/vendor/league/container/src/Argument/RawArgumentInterface.php create mode 100644 app/vendor/league/container/src/Container.php create mode 100644 app/vendor/league/container/src/ContainerAwareInterface.php create mode 100644 app/vendor/league/container/src/ContainerAwareTrait.php create mode 100644 app/vendor/league/container/src/Definition/Definition.php create mode 100644 app/vendor/league/container/src/Definition/DefinitionAggregate.php create mode 100644 app/vendor/league/container/src/Definition/DefinitionAggregateInterface.php create mode 100644 app/vendor/league/container/src/Definition/DefinitionInterface.php create mode 100644 app/vendor/league/container/src/Exception/ContainerException.php create mode 100644 app/vendor/league/container/src/Exception/NotFoundException.php create mode 100644 app/vendor/league/container/src/Inflector/Inflector.php create mode 100644 app/vendor/league/container/src/Inflector/InflectorAggregate.php create mode 100644 app/vendor/league/container/src/Inflector/InflectorAggregateInterface.php create mode 100644 app/vendor/league/container/src/Inflector/InflectorInterface.php create mode 100644 app/vendor/league/container/src/ReflectionContainer.php create mode 100644 app/vendor/league/container/src/ServiceProvider/AbstractServiceProvider.php create mode 100644 app/vendor/league/container/src/ServiceProvider/BootableServiceProviderInterface.php create mode 100644 app/vendor/league/container/src/ServiceProvider/ServiceProviderAggregate.php create mode 100644 app/vendor/league/container/src/ServiceProvider/ServiceProviderAggregateInterface.php create mode 100644 app/vendor/league/container/src/ServiceProvider/ServiceProviderInterface.php create mode 100644 app/vendor/m1/env/.editorconfig create mode 100644 app/vendor/m1/env/CHANGELOG.md create mode 100644 app/vendor/m1/env/CONDUCT.md create mode 100644 app/vendor/m1/env/CONTRIBUTING.md create mode 100644 app/vendor/m1/env/LICENSE.md create mode 100644 app/vendor/m1/env/README.md create mode 100644 app/vendor/m1/env/composer.json create mode 100644 app/vendor/m1/env/src/Exception/ParseException.php create mode 100644 app/vendor/m1/env/src/Helper/StringHelper.php create mode 100644 app/vendor/m1/env/src/Parser.php create mode 100644 app/vendor/m1/env/src/Parser/AbstractParser.php create mode 100644 app/vendor/m1/env/src/Parser/KeyParser.php create mode 100644 app/vendor/m1/env/src/Parser/ValueParser.php create mode 100644 app/vendor/m1/env/src/Parser/VariableParser.php create mode 100644 app/vendor/mobiledetect/mobiledetectlib/LICENSE.txt create mode 100644 app/vendor/mobiledetect/mobiledetectlib/Mobile_Detect.json create mode 100644 app/vendor/mobiledetect/mobiledetectlib/Mobile_Detect.php create mode 100644 app/vendor/mobiledetect/mobiledetectlib/README.md create mode 100644 app/vendor/mobiledetect/mobiledetectlib/composer.json create mode 100644 app/vendor/mobiledetect/mobiledetectlib/docker-compose.yml create mode 100644 app/vendor/mobiledetect/mobiledetectlib/docs/CONTRIBUTING.md create mode 100644 app/vendor/mobiledetect/mobiledetectlib/docs/HISTORY.md create mode 100644 app/vendor/mobiledetect/mobiledetectlib/docs/ISSUE_TEMPLATE.md create mode 100644 app/vendor/mobiledetect/mobiledetectlib/docs/KNOWN_LIMITATIONS.md create mode 100644 app/vendor/mobiledetect/mobiledetectlib/export/exportToJSON.php create mode 100644 app/vendor/mobiledetect/mobiledetectlib/namespaced/Detection/MobileDetect.php create mode 100644 app/vendor/mobiledetect/mobiledetectlib/phpcs.xml create mode 100644 app/vendor/myclabs/deep-copy/.github/FUNDING.yml create mode 100644 app/vendor/myclabs/deep-copy/LICENSE create mode 100644 app/vendor/myclabs/deep-copy/README.md create mode 100644 app/vendor/myclabs/deep-copy/composer.json create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/DeepCopy.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php create mode 100644 app/vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php create mode 100644 app/vendor/nikic/php-parser/.editorconfig create mode 100644 app/vendor/nikic/php-parser/LICENSE create mode 100644 app/vendor/nikic/php-parser/README.md create mode 100755 app/vendor/nikic/php-parser/bin/php-parse create mode 100644 app/vendor/nikic/php-parser/composer.json create mode 100644 app/vendor/nikic/php-parser/grammar/README.md create mode 100644 app/vendor/nikic/php-parser/grammar/parser.template create mode 100644 app/vendor/nikic/php-parser/grammar/php5.y create mode 100644 app/vendor/nikic/php-parser/grammar/php7.y create mode 100644 app/vendor/nikic/php-parser/grammar/phpyLang.php create mode 100644 app/vendor/nikic/php-parser/grammar/rebuildParsers.php create mode 100644 app/vendor/nikic/php-parser/grammar/tokens.template create mode 100644 app/vendor/nikic/php-parser/grammar/tokens.y create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/ClassConst.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/Class_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/Declaration.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/Function_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/Interface_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/Method.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/Param.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/Property.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/TraitUse.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/TraitUseAdaptation.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/Trait_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Builder/Use_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/BuilderHelpers.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Comment.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Comment/Doc.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/ConstExprEvaluationException.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/ConstExprEvaluator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Error.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Collecting.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/ErrorHandler/Throwing.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Internal/DiffElem.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Internal/Differ.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Internal/PrintableNewAnonClassNode.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Internal/TokenStream.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/JsonDecoder.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/AttributeEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/CoaleseEqualTokenEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FlexibleDocStringEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/FnTokenEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/KeywordEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/MatchTokenEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NullsafeTokenEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/NumericLiteralSeparatorEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/ReverseEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/TokenEmulator.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NameContext.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Arg.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Attribute.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/AttributeGroup.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Const_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayItem.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Array_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrowFunction.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Assign.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Coalesce.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BitwiseNot.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BooleanNot.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ClassConstFetch.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Clone_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Empty_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Error.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ErrorSuppress.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Eval_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Include_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Instanceof_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Isset_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/List_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Match_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafeMethodCall.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafePropertyFetch.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PostInc.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PreDec.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PreInc.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Print_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PropertyFetch.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ShellExec.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Ternary.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Throw_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryMinus.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/UnaryPlus.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Variable.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Yield_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Identifier.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/MatchArm.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Name.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Name/FullyQualified.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Name/Relative.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/NullableType.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Param.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/DNumber.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/Encapsed.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/EncapsedStringPart.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/LNumber.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/File.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Function_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/String_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Break_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Case_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Catch_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassConst.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Const_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Continue_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Declare_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Do_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Echo_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ElseIf_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Else_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/EnumCase.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Enum_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Expression.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Finally_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/For_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Foreach_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Global_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Goto_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/GroupUse.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/HaltCompiler.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/If_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/InlineHTML.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Interface_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Label.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Nop.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/PropertyProperty.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Return_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/StaticVar.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Static_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Switch_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUse.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Trait_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Unset_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/UseUse.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Use_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/While_.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/UnionType.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Node/VarLikeIdentifier.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeAbstract.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeDumper.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeFinder.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeTraverser.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeTraverserInterface.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/CloningVisitor.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/FindingVisitor.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/FirstFindingVisitor.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NodeConnectingVisitor.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/ParentConnectingVisitor.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Parser.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Parser/Multiple.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Parser/Php5.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Parser/Php7.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/Parser/Tokens.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/ParserFactory.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php create mode 100644 app/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php create mode 100644 app/vendor/phar-io/manifest/CHANGELOG.md create mode 100644 app/vendor/phar-io/manifest/LICENSE create mode 100644 app/vendor/phar-io/manifest/README.md create mode 100644 app/vendor/phar-io/manifest/composer.json create mode 100644 app/vendor/phar-io/manifest/composer.lock create mode 100644 app/vendor/phar-io/manifest/src/ManifestDocumentMapper.php create mode 100644 app/vendor/phar-io/manifest/src/ManifestLoader.php create mode 100644 app/vendor/phar-io/manifest/src/ManifestSerializer.php create mode 100644 app/vendor/phar-io/manifest/src/exceptions/ElementCollectionException.php create mode 100644 app/vendor/phar-io/manifest/src/exceptions/Exception.php create mode 100644 app/vendor/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php create mode 100644 app/vendor/phar-io/manifest/src/exceptions/InvalidEmailException.php create mode 100644 app/vendor/phar-io/manifest/src/exceptions/InvalidUrlException.php create mode 100644 app/vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php create mode 100644 app/vendor/phar-io/manifest/src/exceptions/ManifestDocumentLoadingException.php create mode 100644 app/vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php create mode 100644 app/vendor/phar-io/manifest/src/exceptions/ManifestElementException.php create mode 100644 app/vendor/phar-io/manifest/src/exceptions/ManifestLoaderException.php create mode 100644 app/vendor/phar-io/manifest/src/values/Application.php create mode 100644 app/vendor/phar-io/manifest/src/values/ApplicationName.php create mode 100644 app/vendor/phar-io/manifest/src/values/Author.php create mode 100644 app/vendor/phar-io/manifest/src/values/AuthorCollection.php create mode 100644 app/vendor/phar-io/manifest/src/values/AuthorCollectionIterator.php create mode 100644 app/vendor/phar-io/manifest/src/values/BundledComponent.php create mode 100644 app/vendor/phar-io/manifest/src/values/BundledComponentCollection.php create mode 100644 app/vendor/phar-io/manifest/src/values/BundledComponentCollectionIterator.php create mode 100644 app/vendor/phar-io/manifest/src/values/CopyrightInformation.php create mode 100644 app/vendor/phar-io/manifest/src/values/Email.php create mode 100644 app/vendor/phar-io/manifest/src/values/Extension.php create mode 100644 app/vendor/phar-io/manifest/src/values/Library.php create mode 100644 app/vendor/phar-io/manifest/src/values/License.php create mode 100644 app/vendor/phar-io/manifest/src/values/Manifest.php create mode 100644 app/vendor/phar-io/manifest/src/values/PhpExtensionRequirement.php create mode 100644 app/vendor/phar-io/manifest/src/values/PhpVersionRequirement.php create mode 100644 app/vendor/phar-io/manifest/src/values/Requirement.php create mode 100644 app/vendor/phar-io/manifest/src/values/RequirementCollection.php create mode 100644 app/vendor/phar-io/manifest/src/values/RequirementCollectionIterator.php create mode 100644 app/vendor/phar-io/manifest/src/values/Type.php create mode 100644 app/vendor/phar-io/manifest/src/values/Url.php create mode 100644 app/vendor/phar-io/manifest/src/xml/AuthorElement.php create mode 100644 app/vendor/phar-io/manifest/src/xml/AuthorElementCollection.php create mode 100644 app/vendor/phar-io/manifest/src/xml/BundlesElement.php create mode 100644 app/vendor/phar-io/manifest/src/xml/ComponentElement.php create mode 100644 app/vendor/phar-io/manifest/src/xml/ComponentElementCollection.php create mode 100644 app/vendor/phar-io/manifest/src/xml/ContainsElement.php create mode 100644 app/vendor/phar-io/manifest/src/xml/CopyrightElement.php create mode 100644 app/vendor/phar-io/manifest/src/xml/ElementCollection.php create mode 100644 app/vendor/phar-io/manifest/src/xml/ExtElement.php create mode 100644 app/vendor/phar-io/manifest/src/xml/ExtElementCollection.php create mode 100644 app/vendor/phar-io/manifest/src/xml/ExtensionElement.php create mode 100644 app/vendor/phar-io/manifest/src/xml/LicenseElement.php create mode 100644 app/vendor/phar-io/manifest/src/xml/ManifestDocument.php create mode 100644 app/vendor/phar-io/manifest/src/xml/ManifestElement.php create mode 100644 app/vendor/phar-io/manifest/src/xml/PhpElement.php create mode 100644 app/vendor/phar-io/manifest/src/xml/RequiresElement.php create mode 100644 app/vendor/phar-io/version/CHANGELOG.md create mode 100644 app/vendor/phar-io/version/LICENSE create mode 100644 app/vendor/phar-io/version/README.md create mode 100644 app/vendor/phar-io/version/composer.json create mode 100644 app/vendor/phar-io/version/src/PreReleaseSuffix.php create mode 100644 app/vendor/phar-io/version/src/Version.php create mode 100644 app/vendor/phar-io/version/src/VersionConstraintParser.php create mode 100644 app/vendor/phar-io/version/src/VersionConstraintValue.php create mode 100644 app/vendor/phar-io/version/src/VersionNumber.php create mode 100644 app/vendor/phar-io/version/src/constraints/AbstractVersionConstraint.php create mode 100644 app/vendor/phar-io/version/src/constraints/AndVersionConstraintGroup.php create mode 100644 app/vendor/phar-io/version/src/constraints/AnyVersionConstraint.php create mode 100644 app/vendor/phar-io/version/src/constraints/ExactVersionConstraint.php create mode 100644 app/vendor/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php create mode 100644 app/vendor/phar-io/version/src/constraints/OrVersionConstraintGroup.php create mode 100644 app/vendor/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php create mode 100644 app/vendor/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php create mode 100644 app/vendor/phar-io/version/src/constraints/VersionConstraint.php create mode 100644 app/vendor/phar-io/version/src/exceptions/Exception.php create mode 100644 app/vendor/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php create mode 100644 app/vendor/phar-io/version/src/exceptions/InvalidVersionException.php create mode 100644 app/vendor/phar-io/version/src/exceptions/NoPreReleaseSuffixException.php create mode 100644 app/vendor/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php create mode 100644 app/vendor/phpdocumentor/reflection-common/.github/dependabot.yml create mode 100644 app/vendor/phpdocumentor/reflection-common/.github/workflows/push.yml create mode 100644 app/vendor/phpdocumentor/reflection-common/LICENSE create mode 100644 app/vendor/phpdocumentor/reflection-common/README.md create mode 100644 app/vendor/phpdocumentor/reflection-common/composer.json create mode 100644 app/vendor/phpdocumentor/reflection-common/src/Element.php create mode 100644 app/vendor/phpdocumentor/reflection-common/src/File.php create mode 100644 app/vendor/phpdocumentor/reflection-common/src/Fqsen.php create mode 100644 app/vendor/phpdocumentor/reflection-common/src/Location.php create mode 100644 app/vendor/phpdocumentor/reflection-common/src/Project.php create mode 100644 app/vendor/phpdocumentor/reflection-common/src/ProjectFactory.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/LICENSE create mode 100644 app/vendor/phpdocumentor/reflection-docblock/README.md create mode 100644 app/vendor/phpdocumentor/reflection-docblock/composer.json create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Description.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/InvalidTag.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/TagWithType.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlockFactory.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/Exception/PcreException.php create mode 100644 app/vendor/phpdocumentor/reflection-docblock/src/Utils.php create mode 100644 app/vendor/phpdocumentor/type-resolver/LICENSE create mode 100644 app/vendor/phpdocumentor/type-resolver/README.md create mode 100644 app/vendor/phpdocumentor/type-resolver/composer.json create mode 100644 app/vendor/phpdocumentor/type-resolver/composer.lock create mode 100644 app/vendor/phpdocumentor/type-resolver/phpbench.json create mode 100644 app/vendor/phpdocumentor/type-resolver/src/FqsenResolver.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/PseudoType.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/PseudoTypes/False_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/PseudoTypes/True_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Type.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/TypeResolver.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/AbstractList.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/AggregatedType.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Array_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Boolean.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Callable_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/ClassString.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Collection.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Compound.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Context.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/ContextFactory.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Expression.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Float_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Integer.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Intersection.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Iterable_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Mixed_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Null_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Nullable.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Object_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Parent_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Resource_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Scalar.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Self_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Static_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/String_.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/This.php create mode 100644 app/vendor/phpdocumentor/type-resolver/src/Types/Void_.php create mode 100644 app/vendor/phpspec/prophecy/CHANGES.md create mode 100644 app/vendor/phpspec/prophecy/LICENSE create mode 100644 app/vendor/phpspec/prophecy/README.md create mode 100644 app/vendor/phpspec/prophecy/composer.json create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/InArrayToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/NotInArrayToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Call/Call.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Call/CallCenter.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Comparator/Factory.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ThrowablePatch.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentTypeNode.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ReturnTypeNode.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/TypeNodeAbstract.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/TypeHintReference.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Exception.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Prophet.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php create mode 100644 app/vendor/phpspec/prophecy/src/Prophecy/Util/StringUtil.php create mode 100644 app/vendor/phpstan/phpdoc-parser/CODE_OF_CONDUCT.md create mode 100644 app/vendor/phpstan/phpdoc-parser/LICENSE create mode 100644 app/vendor/phpstan/phpdoc-parser/README.md create mode 100755 app/vendor/phpstan/phpdoc-parser/build-abnfgen.sh create mode 100644 app/vendor/phpstan/phpdoc-parser/composer.json create mode 100644 app/vendor/phpstan/phpdoc-parser/doc/grammars/phpdoc-method.peg create mode 100644 app/vendor/phpstan/phpdoc-parser/doc/grammars/phpdoc-param.peg create mode 100644 app/vendor/phpstan/phpdoc-parser/doc/grammars/type.abnf create mode 100644 app/vendor/phpstan/phpdoc-parser/phpstan.neon create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayItemNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprArrayNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFalseNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprFloatNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprIntegerNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprNullNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprStringNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstExprTrueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/ConstExpr/ConstFetchNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Node.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/DeprecatedTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ExtendsTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/GenericTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ImplementsTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/InvalidTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/MethodTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/MethodTagValueParameterNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/MixinTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ParamTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocChildNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PhpDocTextNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/PropertyTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ReturnTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/TemplateTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/ThrowsTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/UsesTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/VarTagValueNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeItemNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayShapeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/ArrayTypeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeParameterNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/ConstTypeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/GenericTypeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/IdentifierTypeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/IntersectionTypeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/NullableTypeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/ThisTypeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/TypeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Ast/Type/UnionTypeNode.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Parser/ParserException.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Parser/TokenIterator.php create mode 100644 app/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php create mode 100644 app/vendor/phpunit/php-code-coverage/ChangeLog.md create mode 100644 app/vendor/phpunit/php-code-coverage/LICENSE create mode 100644 app/vendor/phpunit/php-code-coverage/README.md create mode 100644 app/vendor/phpunit/php-code-coverage/composer.json create mode 100644 app/vendor/phpunit/php-code-coverage/src/CodeCoverage.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/CrapIndex.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Directory.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Driver/Driver.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Driver/PcovDriver.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Driver/PhpdbgDriver.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Driver/Selector.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Driver/Xdebug2Driver.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Driver/Xdebug3Driver.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/DeadCodeDetectionNotSupportedException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/Exception.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverAvailableException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/ParserException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/PathExistsButIsNotDirectoryException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/PcovNotAvailableException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/PhpdbgNotAvailableException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/ReflectionException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/ReportAlreadyFinalizedException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/TestIdMissingException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/WriteOperationFailedException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/WrongXdebugVersionException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/Xdebug2NotEnabledException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/Xdebug3NotEnabledException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/XdebugNotAvailableException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Exception/XmlException.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Filter.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Node/AbstractNode.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Node/Builder.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Node/Directory.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Node/File.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Node/Iterator.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Percentage.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/ProcessedCodeCoverageData.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/RawCodeCoverageData.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Clover.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Cobertura.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Crap4j.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Facade.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/branches.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/coverage_bar_branch.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/bootstrap.min.css create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/nv.d3.min.css create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/octicons.css create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/style.css create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/dashboard.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/dashboard_branch.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/directory.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/directory_branch.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/directory_item.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/directory_item_branch.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/file.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/file_branch.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/file_item.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/file_item_branch.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/bootstrap.min.js create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/d3.min.js create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/file.js create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/jquery.min.js create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/nv.d3.min.js create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/popper.min.js create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/line.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/lines.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/method_item.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/method_item_branch.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/paths.html.dist create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/PHP.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Text.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Coverage.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Directory.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Facade.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/File.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Method.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Node.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Project.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Report.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Source.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Tests.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Totals.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Report/Xml/Unit.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Cache.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CacheWarmer.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CachingCoveredFileAnalyser.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CachingUncoveredFileAnalyser.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CodeUnitFindingVisitor.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CoveredFileAnalyser.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/ExecutableLinesFindingVisitor.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/IgnoredLinesFindingVisitor.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/ParsingCoveredFileAnalyser.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/ParsingUncoveredFileAnalyser.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/StaticAnalysis/UncoveredFileAnalyser.php create mode 100644 app/vendor/phpunit/php-code-coverage/src/Version.php create mode 100644 app/vendor/phpunit/php-file-iterator/ChangeLog.md create mode 100644 app/vendor/phpunit/php-file-iterator/LICENSE create mode 100644 app/vendor/phpunit/php-file-iterator/README.md create mode 100644 app/vendor/phpunit/php-file-iterator/composer.json create mode 100644 app/vendor/phpunit/php-file-iterator/src/Facade.php create mode 100644 app/vendor/phpunit/php-file-iterator/src/Factory.php create mode 100644 app/vendor/phpunit/php-file-iterator/src/Iterator.php create mode 100644 app/vendor/phpunit/php-invoker/ChangeLog.md create mode 100644 app/vendor/phpunit/php-invoker/LICENSE create mode 100644 app/vendor/phpunit/php-invoker/README.md create mode 100644 app/vendor/phpunit/php-invoker/composer.json create mode 100644 app/vendor/phpunit/php-invoker/src/Invoker.php create mode 100644 app/vendor/phpunit/php-invoker/src/exceptions/Exception.php create mode 100644 app/vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php create mode 100644 app/vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php create mode 100644 app/vendor/phpunit/php-text-template/.psalm/baseline.xml create mode 100644 app/vendor/phpunit/php-text-template/.psalm/config.xml create mode 100644 app/vendor/phpunit/php-text-template/ChangeLog.md create mode 100644 app/vendor/phpunit/php-text-template/LICENSE create mode 100644 app/vendor/phpunit/php-text-template/README.md create mode 100644 app/vendor/phpunit/php-text-template/composer.json create mode 100644 app/vendor/phpunit/php-text-template/src/Template.php create mode 100644 app/vendor/phpunit/php-text-template/src/exceptions/Exception.php create mode 100644 app/vendor/phpunit/php-text-template/src/exceptions/InvalidArgumentException.php create mode 100644 app/vendor/phpunit/php-text-template/src/exceptions/RuntimeException.php create mode 100644 app/vendor/phpunit/php-timer/.psalm/baseline.xml create mode 100644 app/vendor/phpunit/php-timer/.psalm/config.xml create mode 100644 app/vendor/phpunit/php-timer/ChangeLog.md create mode 100644 app/vendor/phpunit/php-timer/LICENSE create mode 100644 app/vendor/phpunit/php-timer/README.md create mode 100644 app/vendor/phpunit/php-timer/composer.json create mode 100644 app/vendor/phpunit/php-timer/src/Duration.php create mode 100644 app/vendor/phpunit/php-timer/src/ResourceUsageFormatter.php create mode 100644 app/vendor/phpunit/php-timer/src/Timer.php create mode 100644 app/vendor/phpunit/php-timer/src/exceptions/Exception.php create mode 100644 app/vendor/phpunit/php-timer/src/exceptions/NoActiveTimerException.php create mode 100644 app/vendor/phpunit/php-timer/src/exceptions/TimeSinceStartOfRequestNotAvailableException.php create mode 100644 app/vendor/phpunit/phpunit/.phpstorm.meta.php create mode 100644 app/vendor/phpunit/phpunit/ChangeLog-8.5.md create mode 100644 app/vendor/phpunit/phpunit/ChangeLog-9.5.md create mode 100644 app/vendor/phpunit/phpunit/LICENSE create mode 100644 app/vendor/phpunit/phpunit/README.md create mode 100644 app/vendor/phpunit/phpunit/composer.json create mode 100755 app/vendor/phpunit/phpunit/phpunit create mode 100644 app/vendor/phpunit/phpunit/phpunit.xsd create mode 100644 app/vendor/phpunit/phpunit/schema/8.5.xsd create mode 100644 app/vendor/phpunit/phpunit/schema/9.2.xsd create mode 100644 app/vendor/phpunit/phpunit/src/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Assert.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Assert/Functions.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Boolean/IsFalse.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Boolean/IsTrue.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Callback.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/Count.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/GreaterThan.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/IsEmpty.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/LessThan.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/SameSize.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Constraint.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqual.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualCanonicalizing.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualIgnoringCase.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualWithDelta.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionCode.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessage.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessageRegularExpression.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/DirectoryExists.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/FileExists.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsReadable.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsWritable.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/IsAnything.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsFinite.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsInfinite.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsNan.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ClassHasAttribute.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ClassHasStaticAttribute.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ObjectEquals.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ObjectHasAttribute.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/BinaryOperator.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalAnd.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalNot.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalOr.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalXor.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/Operator.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/UnaryOperator.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/String/IsJson.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/String/RegularExpression.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringContains.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringEndsWith.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringMatchesFormatDescription.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringStartsWith.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/ArrayHasKey.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContains.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsEqual.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsIdentical.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsOnly.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsInstanceOf.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsNull.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsType.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/DataProviderTestSuite.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Error/Deprecated.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Error/Error.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Error/Notice.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Error/Warning.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/ErrorTestCase.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/ActualValueIsNotAnObjectException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/AssertionFailedError.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/CodeCoverageException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotAcceptParameterTypeException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareBoolReturnTypeException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareExactlyOneParameterException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotDeclareParameterTypeException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/ComparisonMethodDoesNotExistException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/CoveredCodeNotExecutedException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/Error.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/ExpectationFailedException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/IncompleteTestError.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/InvalidArgumentException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/InvalidCoversTargetException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/MissingCoversAnnotationException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/OutputError.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/PHPTAssertionFailedError.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/RiskyTestError.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/SkippedTestError.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/SkippedTestSuiteError.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/SyntheticError.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/SyntheticSkippedError.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/UnintentionallyCoveredCodeError.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Exception/Warning.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/ExceptionWrapper.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/ExecutionOrderDependency.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/IncompleteTest.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/IncompleteTestCase.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/InvalidParameterGroupException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Api/Api.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Api/Method.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Api/MockedCloneMethod.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Api/UnmockedCloneMethod.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/Identity.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationMocker.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationStubber.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/MethodNameMatch.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/ParametersMatch.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/Stub.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/ConfigurableMethod.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseAddMethodsException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ClassAlreadyExistsException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ClassIsFinalException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ConfigurableMethodsAlreadyInitializedException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/DuplicateMethodException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/IncompatibleReturnValueException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/InvalidMethodNameException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MatchBuilderNotFoundException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MatcherAlreadyRegisteredException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodCannotBeConfiguredException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameAlreadyConfiguredException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameNotConfiguredException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodParametersAlreadyConfiguredException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/OriginalConstructorInvocationRequiredException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ReflectionException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/SoapExtensionNotAvailableException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownClassException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownTraitException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/UnknownTypeException.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_class.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_method.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_method_void.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_static_method.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/proxied_method.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/proxied_method_void.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/trait_class.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_class.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_method.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Invocation.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/InvocationHandler.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Matcher.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/MethodNameConstraint.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/MockClass.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/MockMethod.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/MockMethodSet.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/MockObject.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/MockTrait.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/MockType.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/AnyInvokedCount.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/AnyParameters.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/ConsecutiveParameters.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvocationOrder.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtIndex.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtLeastCount.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtLeastOnce.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedAtMostCount.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/InvokedCount.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/MethodName.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/Parameters.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Rule/ParametersRule.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Stub.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ConsecutiveCalls.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnArgument.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnCallback.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnReference.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnSelf.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnStub.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnValueMap.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Stub/Stub.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/MockObject/Verifiable.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Reorderable.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/SelfDescribing.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/SkippedTest.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/SkippedTestCase.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/Test.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/TestBuilder.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/TestCase.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/TestFailure.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/TestListener.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/TestResult.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/TestSuite.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/TestSuiteIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/Framework/WarningTestCase.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/BaseTestRunner.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/DefaultTestResultCache.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Extension/ExtensionHandler.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Extension/PharLoader.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Filter/Factory.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/AfterTestHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/Hook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/TestHook.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Hook/TestListenerAdapter.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/NullTestResultCache.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/PhptTestCase.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/ResultCacheExtension.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/TestResultCache.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/TestSuiteSorter.php create mode 100644 app/vendor/phpunit/phpunit/src/Runner/Version.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/CliArguments/Builder.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/CliArguments/Configuration.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/CliArguments/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/CliArguments/Mapper.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/Command.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/DefaultResultPrinter.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/Exception/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/Exception/ReflectionException.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/Exception/TestDirectoryNotFoundException.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/Exception/TestFileNotFoundException.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/Help.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/ResultPrinter.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/TestRunner.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/TestSuiteMapper.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/CodeCoverage.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/Directory.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Filter/DirectoryCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/FilterMapper.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Clover.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Cobertura.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Crap4j.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Html.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Php.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Text.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/CodeCoverage/Report/Xml.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Configuration.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/Directory.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/DirectoryCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/DirectoryCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/File.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/FileCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Filesystem/FileCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Generator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/Group.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/GroupCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/GroupCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Group/Groups.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Loader.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Junit.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Logging.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TeamCity.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Html.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Text.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/TestDox/Xml.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Logging/Text.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilder.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationBuilderException.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/MigrationException.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/ConvertLogTypes.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageCloverToReport.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageCrap4jToReport.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageHtmlToReport.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoveragePhpToReport.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageTextToReport.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/CoverageXmlToReport.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/IntroduceCoverageElement.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/LogToReportMigration.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/Migration.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveAttributesFromRootToCoverage.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistDirectoriesToCoverage.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/MoveWhitelistExcludesToCoverage.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveCacheTokensAttribute.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveEmptyFilter.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/RemoveLogTypes.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrations/UpdateSchemaLocationTo93.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/Migration/Migrator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Constant.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/ConstantCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/ConstantCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSetting.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSettingCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/IniSettingCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Php.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/PhpHandler.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/Variable.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/VariableCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHP/VariableCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/Extension.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/ExtensionCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/ExtensionCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/PHPUnit/PHPUnit.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectory.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestDirectoryCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFile.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFileCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestFileCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuite.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuiteCollection.php create mode 100644 app/vendor/phpunit/phpunit/src/TextUI/XmlConfiguration/TestSuite/TestSuiteCollectionIterator.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Annotation/DocBlock.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Annotation/Registry.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Blacklist.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Color.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/ErrorHandler.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/ExcludeList.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/FileLoader.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Filesystem.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Filter.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/GlobalState.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/InvalidDataSetException.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Json.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Log/JUnit.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Log/TeamCity.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/PHP/Template/PhptTestCase.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Util/PHP/Template/TestCaseClass.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Util/PHP/Template/TestCaseMethod.tpl create mode 100644 app/vendor/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Printer.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/RegularExpression.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Test.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/TestDox/CliTestDoxPrinter.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/TestDox/TestDoxPrinter.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/TextTestListRenderer.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Type.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/VersionComparisonOperator.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/XdebugFilterScriptGenerator.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml/Exception.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml/FailedSchemaDetectionResult.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml/Loader.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml/SchemaDetectionResult.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml/SchemaDetector.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml/SchemaFinder.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml/SnapshotNodeList.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml/SuccessfulSchemaDetectionResult.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml/ValidationResult.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/Xml/Validator.php create mode 100644 app/vendor/phpunit/phpunit/src/Util/XmlTestListRenderer.php create mode 100644 app/vendor/psr/container/.gitignore create mode 100644 app/vendor/psr/container/LICENSE create mode 100644 app/vendor/psr/container/README.md create mode 100644 app/vendor/psr/container/composer.json create mode 100644 app/vendor/psr/container/src/ContainerExceptionInterface.php create mode 100644 app/vendor/psr/container/src/ContainerInterface.php create mode 100644 app/vendor/psr/container/src/NotFoundExceptionInterface.php create mode 100644 app/vendor/psr/http-client/CHANGELOG.md create mode 100644 app/vendor/psr/http-client/LICENSE create mode 100644 app/vendor/psr/http-client/README.md create mode 100644 app/vendor/psr/http-client/composer.json create mode 100644 app/vendor/psr/http-client/src/ClientExceptionInterface.php create mode 100644 app/vendor/psr/http-client/src/ClientInterface.php create mode 100644 app/vendor/psr/http-client/src/NetworkExceptionInterface.php create mode 100644 app/vendor/psr/http-client/src/RequestExceptionInterface.php create mode 100644 app/vendor/psr/http-factory/.gitignore create mode 100644 app/vendor/psr/http-factory/.pullapprove.yml create mode 100644 app/vendor/psr/http-factory/LICENSE create mode 100644 app/vendor/psr/http-factory/README.md create mode 100644 app/vendor/psr/http-factory/composer.json create mode 100644 app/vendor/psr/http-factory/src/RequestFactoryInterface.php create mode 100644 app/vendor/psr/http-factory/src/ResponseFactoryInterface.php create mode 100644 app/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php create mode 100644 app/vendor/psr/http-factory/src/StreamFactoryInterface.php create mode 100644 app/vendor/psr/http-factory/src/UploadedFileFactoryInterface.php create mode 100644 app/vendor/psr/http-factory/src/UriFactoryInterface.php create mode 100644 app/vendor/psr/http-message/CHANGELOG.md create mode 100644 app/vendor/psr/http-message/LICENSE create mode 100644 app/vendor/psr/http-message/README.md create mode 100644 app/vendor/psr/http-message/composer.json create mode 100644 app/vendor/psr/http-message/src/MessageInterface.php create mode 100644 app/vendor/psr/http-message/src/RequestInterface.php create mode 100644 app/vendor/psr/http-message/src/ResponseInterface.php create mode 100644 app/vendor/psr/http-message/src/ServerRequestInterface.php create mode 100644 app/vendor/psr/http-message/src/StreamInterface.php create mode 100644 app/vendor/psr/http-message/src/UploadedFileInterface.php create mode 100644 app/vendor/psr/http-message/src/UriInterface.php create mode 100644 app/vendor/psr/http-server-handler/LICENSE create mode 100644 app/vendor/psr/http-server-handler/README.md create mode 100644 app/vendor/psr/http-server-handler/composer.json create mode 100644 app/vendor/psr/http-server-handler/src/RequestHandlerInterface.php create mode 100644 app/vendor/psr/http-server-middleware/LICENSE create mode 100644 app/vendor/psr/http-server-middleware/README.md create mode 100644 app/vendor/psr/http-server-middleware/composer.json create mode 100644 app/vendor/psr/http-server-middleware/src/MiddlewareInterface.php create mode 100644 app/vendor/psr/log/LICENSE create mode 100644 app/vendor/psr/log/Psr/Log/AbstractLogger.php create mode 100644 app/vendor/psr/log/Psr/Log/InvalidArgumentException.php create mode 100644 app/vendor/psr/log/Psr/Log/LogLevel.php create mode 100644 app/vendor/psr/log/Psr/Log/LoggerAwareInterface.php create mode 100644 app/vendor/psr/log/Psr/Log/LoggerAwareTrait.php create mode 100644 app/vendor/psr/log/Psr/Log/LoggerInterface.php create mode 100644 app/vendor/psr/log/Psr/Log/LoggerTrait.php create mode 100644 app/vendor/psr/log/Psr/Log/NullLogger.php create mode 100644 app/vendor/psr/log/Psr/Log/Test/DummyTest.php create mode 100644 app/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php create mode 100644 app/vendor/psr/log/Psr/Log/Test/TestLogger.php create mode 100644 app/vendor/psr/log/README.md create mode 100644 app/vendor/psr/log/composer.json create mode 100644 app/vendor/psr/simple-cache/.editorconfig create mode 100644 app/vendor/psr/simple-cache/LICENSE.md create mode 100644 app/vendor/psr/simple-cache/README.md create mode 100644 app/vendor/psr/simple-cache/composer.json create mode 100644 app/vendor/psr/simple-cache/src/CacheException.php create mode 100644 app/vendor/psr/simple-cache/src/CacheInterface.php create mode 100644 app/vendor/psr/simple-cache/src/InvalidArgumentException.php create mode 100644 app/vendor/psy/psysh/.phan/config.php create mode 100644 app/vendor/psy/psysh/LICENSE create mode 100644 app/vendor/psy/psysh/README.md create mode 100755 app/vendor/psy/psysh/bin/psysh create mode 100644 app/vendor/psy/psysh/composer.json create mode 100644 app/vendor/psy/psysh/src/CodeCleaner.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/AbstractClassPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/AssignThisVariablePass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/CallTimePassByReferencePass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/CalledClassPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/CodeCleanerPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/EmptyArrayDimFetchPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/ExitPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/FinalClassPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/FunctionContextPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/FunctionReturnInWriteContextPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/ImplicitReturnPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/InstanceOfPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/IssetPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/LabelContextPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/LeavePsyshAlonePass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/ListPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/LoopContextPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/MagicConstantsPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/NamespaceAwarePass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/NamespacePass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/NoReturnValue.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/PassableByReferencePass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/RequirePass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/ReturnTypePass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/StrictTypesPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/UseStatementPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/ValidClassNamePass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/ValidConstantPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/ValidConstructorPass.php create mode 100644 app/vendor/psy/psysh/src/CodeCleaner/ValidFunctionNamePass.php create mode 100644 app/vendor/psy/psysh/src/Command/BufferCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/ClearCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/Command.php create mode 100644 app/vendor/psy/psysh/src/Command/DocCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/DumpCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/EditCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/ExitCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/HelpCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/HistoryCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/ListCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/ListCommand/ClassConstantEnumerator.php create mode 100644 app/vendor/psy/psysh/src/Command/ListCommand/ClassEnumerator.php create mode 100644 app/vendor/psy/psysh/src/Command/ListCommand/ConstantEnumerator.php create mode 100644 app/vendor/psy/psysh/src/Command/ListCommand/Enumerator.php create mode 100644 app/vendor/psy/psysh/src/Command/ListCommand/FunctionEnumerator.php create mode 100644 app/vendor/psy/psysh/src/Command/ListCommand/GlobalVariableEnumerator.php create mode 100644 app/vendor/psy/psysh/src/Command/ListCommand/MethodEnumerator.php create mode 100644 app/vendor/psy/psysh/src/Command/ListCommand/PropertyEnumerator.php create mode 100644 app/vendor/psy/psysh/src/Command/ListCommand/VariableEnumerator.php create mode 100644 app/vendor/psy/psysh/src/Command/ParseCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/PsyVersionCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/ReflectingCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/ShowCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/SudoCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/ThrowUpCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/TimeitCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/TimeitCommand/TimeitVisitor.php create mode 100644 app/vendor/psy/psysh/src/Command/TraceCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/WhereamiCommand.php create mode 100644 app/vendor/psy/psysh/src/Command/WtfCommand.php create mode 100644 app/vendor/psy/psysh/src/ConfigPaths.php create mode 100644 app/vendor/psy/psysh/src/Configuration.php create mode 100644 app/vendor/psy/psysh/src/ConsoleColorFactory.php create mode 100644 app/vendor/psy/psysh/src/Context.php create mode 100644 app/vendor/psy/psysh/src/ContextAware.php create mode 100644 app/vendor/psy/psysh/src/EnvInterface.php create mode 100644 app/vendor/psy/psysh/src/Exception/BreakException.php create mode 100644 app/vendor/psy/psysh/src/Exception/DeprecatedException.php create mode 100644 app/vendor/psy/psysh/src/Exception/ErrorException.php create mode 100644 app/vendor/psy/psysh/src/Exception/Exception.php create mode 100644 app/vendor/psy/psysh/src/Exception/FatalErrorException.php create mode 100644 app/vendor/psy/psysh/src/Exception/ParseErrorException.php create mode 100644 app/vendor/psy/psysh/src/Exception/RuntimeException.php create mode 100644 app/vendor/psy/psysh/src/Exception/ThrowUpException.php create mode 100644 app/vendor/psy/psysh/src/Exception/TypeErrorException.php create mode 100644 app/vendor/psy/psysh/src/Exception/UnexpectedTargetException.php create mode 100644 app/vendor/psy/psysh/src/ExecutionClosure.php create mode 100644 app/vendor/psy/psysh/src/ExecutionLoop/AbstractListener.php create mode 100644 app/vendor/psy/psysh/src/ExecutionLoop/Listener.php create mode 100644 app/vendor/psy/psysh/src/ExecutionLoop/ProcessForker.php create mode 100644 app/vendor/psy/psysh/src/ExecutionLoop/RunkitReloader.php create mode 100644 app/vendor/psy/psysh/src/ExecutionLoopClosure.php create mode 100644 app/vendor/psy/psysh/src/Formatter/CodeFormatter.php create mode 100644 app/vendor/psy/psysh/src/Formatter/DocblockFormatter.php create mode 100644 app/vendor/psy/psysh/src/Formatter/Formatter.php create mode 100644 app/vendor/psy/psysh/src/Formatter/ReflectorFormatter.php create mode 100644 app/vendor/psy/psysh/src/Formatter/SignatureFormatter.php create mode 100644 app/vendor/psy/psysh/src/Formatter/TraceFormatter.php create mode 100644 app/vendor/psy/psysh/src/Input/CodeArgument.php create mode 100644 app/vendor/psy/psysh/src/Input/FilterOptions.php create mode 100644 app/vendor/psy/psysh/src/Input/ShellInput.php create mode 100644 app/vendor/psy/psysh/src/Input/SilentInput.php create mode 100644 app/vendor/psy/psysh/src/Output/OutputPager.php create mode 100644 app/vendor/psy/psysh/src/Output/PassthruPager.php create mode 100644 app/vendor/psy/psysh/src/Output/ProcOutputPager.php create mode 100644 app/vendor/psy/psysh/src/Output/ShellOutput.php create mode 100644 app/vendor/psy/psysh/src/ParserFactory.php create mode 100644 app/vendor/psy/psysh/src/Readline/GNUReadline.php create mode 100644 app/vendor/psy/psysh/src/Readline/HoaConsole.php create mode 100644 app/vendor/psy/psysh/src/Readline/Libedit.php create mode 100644 app/vendor/psy/psysh/src/Readline/Readline.php create mode 100644 app/vendor/psy/psysh/src/Readline/Transient.php create mode 100644 app/vendor/psy/psysh/src/Reflection/ReflectionClassConstant.php create mode 100644 app/vendor/psy/psysh/src/Reflection/ReflectionConstant.php create mode 100644 app/vendor/psy/psysh/src/Reflection/ReflectionConstant_.php create mode 100644 app/vendor/psy/psysh/src/Reflection/ReflectionLanguageConstruct.php create mode 100644 app/vendor/psy/psysh/src/Reflection/ReflectionLanguageConstructParameter.php create mode 100644 app/vendor/psy/psysh/src/Reflection/ReflectionNamespace.php create mode 100644 app/vendor/psy/psysh/src/Shell.php create mode 100644 app/vendor/psy/psysh/src/Sudo.php create mode 100644 app/vendor/psy/psysh/src/Sudo/SudoVisitor.php create mode 100644 app/vendor/psy/psysh/src/SuperglobalsEnv.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/AutoCompleter.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/AbstractContextAwareMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/AbstractDefaultParametersMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/AbstractMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/ClassAttributesMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/ClassMethodDefaultParametersMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/ClassMethodsMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/ClassNamesMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/CommandsMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/ConstantsMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/FunctionDefaultParametersMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/FunctionsMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/KeywordsMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/MongoClientMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/MongoDatabaseMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/ObjectAttributesMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/ObjectMethodDefaultParametersMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/ObjectMethodsMatcher.php create mode 100644 app/vendor/psy/psysh/src/TabCompletion/Matcher/VariablesMatcher.php create mode 100644 app/vendor/psy/psysh/src/Util/Docblock.php create mode 100644 app/vendor/psy/psysh/src/Util/Json.php create mode 100644 app/vendor/psy/psysh/src/Util/Mirror.php create mode 100644 app/vendor/psy/psysh/src/Util/Str.php create mode 100644 app/vendor/psy/psysh/src/VarDumper/Cloner.php create mode 100644 app/vendor/psy/psysh/src/VarDumper/Dumper.php create mode 100644 app/vendor/psy/psysh/src/VarDumper/Presenter.php create mode 100644 app/vendor/psy/psysh/src/VarDumper/PresenterAware.php create mode 100644 app/vendor/psy/psysh/src/VersionUpdater/Checker.php create mode 100644 app/vendor/psy/psysh/src/VersionUpdater/GitHubChecker.php create mode 100644 app/vendor/psy/psysh/src/VersionUpdater/IntervalChecker.php create mode 100644 app/vendor/psy/psysh/src/VersionUpdater/NoopChecker.php create mode 100644 app/vendor/psy/psysh/src/functions.php create mode 100644 app/vendor/react/promise/CHANGELOG.md create mode 100644 app/vendor/react/promise/LICENSE create mode 100644 app/vendor/react/promise/README.md create mode 100644 app/vendor/react/promise/composer.json create mode 100644 app/vendor/react/promise/src/CancellablePromiseInterface.php create mode 100644 app/vendor/react/promise/src/CancellationQueue.php create mode 100644 app/vendor/react/promise/src/Deferred.php create mode 100644 app/vendor/react/promise/src/Exception/LengthException.php create mode 100644 app/vendor/react/promise/src/ExtendedPromiseInterface.php create mode 100644 app/vendor/react/promise/src/FulfilledPromise.php create mode 100644 app/vendor/react/promise/src/LazyPromise.php create mode 100644 app/vendor/react/promise/src/Promise.php create mode 100644 app/vendor/react/promise/src/PromiseInterface.php create mode 100644 app/vendor/react/promise/src/PromisorInterface.php create mode 100644 app/vendor/react/promise/src/RejectedPromise.php create mode 100644 app/vendor/react/promise/src/UnhandledRejectionException.php create mode 100644 app/vendor/react/promise/src/functions.php create mode 100644 app/vendor/react/promise/src/functions_include.php create mode 100644 app/vendor/robmorgan/phinx/.stickler.yml create mode 100644 app/vendor/robmorgan/phinx/LICENSE create mode 100644 app/vendor/robmorgan/phinx/README.md create mode 100644 app/vendor/robmorgan/phinx/app/phinx.php create mode 100644 app/vendor/robmorgan/phinx/app/web.php create mode 100755 app/vendor/robmorgan/phinx/bin/phinx create mode 100644 app/vendor/robmorgan/phinx/bin/phinx.bat create mode 100644 app/vendor/robmorgan/phinx/composer.json create mode 100644 app/vendor/robmorgan/phinx/data/phinx.json.dist create mode 100644 app/vendor/robmorgan/phinx/data/phinx.php.dist create mode 100644 app/vendor/robmorgan/phinx/data/phinx.yml.dist create mode 100644 app/vendor/robmorgan/phinx/docs/config/__init__.py create mode 100644 app/vendor/robmorgan/phinx/docs/config/all.py create mode 100644 app/vendor/robmorgan/phinx/docs/en/commands.rst create mode 100644 app/vendor/robmorgan/phinx/docs/en/conf.py create mode 100644 app/vendor/robmorgan/phinx/docs/en/configuration.rst create mode 100644 app/vendor/robmorgan/phinx/docs/en/contents.rst create mode 100644 app/vendor/robmorgan/phinx/docs/en/copyright.rst create mode 100644 app/vendor/robmorgan/phinx/docs/en/goals.rst create mode 100644 app/vendor/robmorgan/phinx/docs/en/index.rst create mode 100644 app/vendor/robmorgan/phinx/docs/en/install.rst create mode 100644 app/vendor/robmorgan/phinx/docs/en/intro.rst create mode 100644 app/vendor/robmorgan/phinx/docs/en/migrations.rst create mode 100644 app/vendor/robmorgan/phinx/docs/en/namespaces.rst create mode 100644 app/vendor/robmorgan/phinx/docs/en/seeding.rst create mode 100644 app/vendor/robmorgan/phinx/docs/es/commands.rst create mode 100644 app/vendor/robmorgan/phinx/docs/es/conf.py create mode 100644 app/vendor/robmorgan/phinx/docs/es/contents.rst create mode 100644 app/vendor/robmorgan/phinx/docs/fr/commands.rst create mode 100644 app/vendor/robmorgan/phinx/docs/fr/conf.py create mode 100644 app/vendor/robmorgan/phinx/docs/fr/configuration.rst create mode 100644 app/vendor/robmorgan/phinx/docs/fr/contents.rst create mode 100644 app/vendor/robmorgan/phinx/docs/fr/index.rst create mode 100644 app/vendor/robmorgan/phinx/docs/fr/migrations.rst create mode 100644 app/vendor/robmorgan/phinx/docs/fr/seeding.rst create mode 100644 app/vendor/robmorgan/phinx/docs/ja/commands.rst create mode 100644 app/vendor/robmorgan/phinx/docs/ja/conf.py create mode 100644 app/vendor/robmorgan/phinx/docs/ja/configuration.rst create mode 100644 app/vendor/robmorgan/phinx/docs/ja/contents.rst create mode 100644 app/vendor/robmorgan/phinx/docs/ja/index.rst create mode 100644 app/vendor/robmorgan/phinx/docs/ja/migrations.rst create mode 100644 app/vendor/robmorgan/phinx/docs/ja/seeding.rst create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Config/Config.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Config/ConfigInterface.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Config/NamespaceAwareInterface.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Config/NamespaceAwareTrait.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/AbstractCommand.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/Breakpoint.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/Create.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/Init.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/ListAliases.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/Migrate.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/Rollback.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/SeedCreate.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/SeedRun.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/Status.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/Command/Test.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Console/PhinxApplication.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/Action.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/AddColumn.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/AddForeignKey.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/AddIndex.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/ChangeColumn.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/ChangeComment.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/ChangePrimaryKey.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/CreateTable.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/DropForeignKey.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/DropIndex.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/DropTable.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/RemoveColumn.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/RenameColumn.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Action/RenameTable.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/AbstractAdapter.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/AdapterFactory.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/AdapterInterface.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/AdapterWrapper.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/DirectActionInterface.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/MysqlAdapter.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/PdoAdapter.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/PostgresAdapter.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/ProxyAdapter.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/SQLiteAdapter.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/SqlServerAdapter.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/TablePrefixAdapter.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/TimedOutputAdapter.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/UnsupportedColumnTypeException.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/WrapperInterface.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Plan/AlterTable.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Plan/Intent.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Plan/NewTable.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Plan/Plan.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Plan/Solver/ActionSplitter.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Table.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Table/Column.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Table/ForeignKey.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Table/Index.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Table/Table.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Db/Util/AlterInstructions.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Migration/AbstractMigration.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Migration/AbstractTemplateCreation.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Migration/CreationInterface.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Migration/IrreversibleMigrationException.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Migration/Manager.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Migration/Manager/Environment.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Migration/Migration.template.php.dist create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Migration/MigrationInterface.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Seed/AbstractSeed.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Seed/Seed.template.php.dist create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Seed/SeedInterface.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Util/Expression.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Util/Literal.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Util/Util.php create mode 100644 app/vendor/robmorgan/phinx/src/Phinx/Wrapper/TextWrapper.php create mode 100644 app/vendor/robmorgan/phinx/src/composer_autoloader.php create mode 100644 app/vendor/sebastian/cli-parser/ChangeLog.md create mode 100644 app/vendor/sebastian/cli-parser/LICENSE create mode 100644 app/vendor/sebastian/cli-parser/README.md create mode 100644 app/vendor/sebastian/cli-parser/composer.json create mode 100644 app/vendor/sebastian/cli-parser/infection.json create mode 100644 app/vendor/sebastian/cli-parser/src/Parser.php create mode 100644 app/vendor/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php create mode 100644 app/vendor/sebastian/cli-parser/src/exceptions/Exception.php create mode 100644 app/vendor/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php create mode 100644 app/vendor/sebastian/cli-parser/src/exceptions/RequiredOptionArgumentMissingException.php create mode 100644 app/vendor/sebastian/cli-parser/src/exceptions/UnknownOptionException.php create mode 100644 app/vendor/sebastian/code-unit-reverse-lookup/ChangeLog.md create mode 100644 app/vendor/sebastian/code-unit-reverse-lookup/LICENSE create mode 100644 app/vendor/sebastian/code-unit-reverse-lookup/README.md create mode 100644 app/vendor/sebastian/code-unit-reverse-lookup/composer.json create mode 100644 app/vendor/sebastian/code-unit-reverse-lookup/src/Wizard.php create mode 100644 app/vendor/sebastian/code-unit/.psalm/baseline.xml create mode 100644 app/vendor/sebastian/code-unit/.psalm/config.xml create mode 100644 app/vendor/sebastian/code-unit/ChangeLog.md create mode 100644 app/vendor/sebastian/code-unit/LICENSE create mode 100644 app/vendor/sebastian/code-unit/README.md create mode 100644 app/vendor/sebastian/code-unit/composer.json create mode 100644 app/vendor/sebastian/code-unit/src/ClassMethodUnit.php create mode 100644 app/vendor/sebastian/code-unit/src/ClassUnit.php create mode 100644 app/vendor/sebastian/code-unit/src/CodeUnit.php create mode 100644 app/vendor/sebastian/code-unit/src/CodeUnitCollection.php create mode 100644 app/vendor/sebastian/code-unit/src/CodeUnitCollectionIterator.php create mode 100644 app/vendor/sebastian/code-unit/src/FunctionUnit.php create mode 100644 app/vendor/sebastian/code-unit/src/InterfaceMethodUnit.php create mode 100644 app/vendor/sebastian/code-unit/src/InterfaceUnit.php create mode 100644 app/vendor/sebastian/code-unit/src/Mapper.php create mode 100644 app/vendor/sebastian/code-unit/src/TraitMethodUnit.php create mode 100644 app/vendor/sebastian/code-unit/src/TraitUnit.php create mode 100644 app/vendor/sebastian/code-unit/src/exceptions/Exception.php create mode 100644 app/vendor/sebastian/code-unit/src/exceptions/InvalidCodeUnitException.php create mode 100644 app/vendor/sebastian/code-unit/src/exceptions/NoTraitException.php create mode 100644 app/vendor/sebastian/code-unit/src/exceptions/ReflectionException.php create mode 100644 app/vendor/sebastian/comparator/ChangeLog.md create mode 100644 app/vendor/sebastian/comparator/LICENSE create mode 100644 app/vendor/sebastian/comparator/README.md create mode 100644 app/vendor/sebastian/comparator/composer.json create mode 100644 app/vendor/sebastian/comparator/src/ArrayComparator.php create mode 100644 app/vendor/sebastian/comparator/src/Comparator.php create mode 100644 app/vendor/sebastian/comparator/src/ComparisonFailure.php create mode 100644 app/vendor/sebastian/comparator/src/DOMNodeComparator.php create mode 100644 app/vendor/sebastian/comparator/src/DateTimeComparator.php create mode 100644 app/vendor/sebastian/comparator/src/DoubleComparator.php create mode 100644 app/vendor/sebastian/comparator/src/ExceptionComparator.php create mode 100644 app/vendor/sebastian/comparator/src/Factory.php create mode 100644 app/vendor/sebastian/comparator/src/MockObjectComparator.php create mode 100644 app/vendor/sebastian/comparator/src/NumericComparator.php create mode 100644 app/vendor/sebastian/comparator/src/ObjectComparator.php create mode 100644 app/vendor/sebastian/comparator/src/ResourceComparator.php create mode 100644 app/vendor/sebastian/comparator/src/ScalarComparator.php create mode 100644 app/vendor/sebastian/comparator/src/SplObjectStorageComparator.php create mode 100644 app/vendor/sebastian/comparator/src/TypeComparator.php create mode 100644 app/vendor/sebastian/comparator/src/exceptions/Exception.php create mode 100644 app/vendor/sebastian/comparator/src/exceptions/RuntimeException.php create mode 100644 app/vendor/sebastian/complexity/.psalm/baseline.xml create mode 100644 app/vendor/sebastian/complexity/.psalm/config.xml create mode 100644 app/vendor/sebastian/complexity/ChangeLog.md create mode 100644 app/vendor/sebastian/complexity/LICENSE create mode 100644 app/vendor/sebastian/complexity/README.md create mode 100644 app/vendor/sebastian/complexity/composer.json create mode 100644 app/vendor/sebastian/complexity/src/Calculator.php create mode 100644 app/vendor/sebastian/complexity/src/Complexity/Complexity.php create mode 100644 app/vendor/sebastian/complexity/src/Complexity/ComplexityCollection.php create mode 100644 app/vendor/sebastian/complexity/src/Complexity/ComplexityCollectionIterator.php create mode 100644 app/vendor/sebastian/complexity/src/Exception/Exception.php create mode 100644 app/vendor/sebastian/complexity/src/Exception/RuntimeException.php create mode 100644 app/vendor/sebastian/complexity/src/Visitor/ComplexityCalculatingVisitor.php create mode 100644 app/vendor/sebastian/complexity/src/Visitor/CyclomaticComplexityCalculatingVisitor.php create mode 100644 app/vendor/sebastian/diff/ChangeLog.md create mode 100644 app/vendor/sebastian/diff/LICENSE create mode 100644 app/vendor/sebastian/diff/README.md create mode 100644 app/vendor/sebastian/diff/composer.json create mode 100644 app/vendor/sebastian/diff/src/Chunk.php create mode 100644 app/vendor/sebastian/diff/src/Diff.php create mode 100644 app/vendor/sebastian/diff/src/Differ.php create mode 100644 app/vendor/sebastian/diff/src/Exception/ConfigurationException.php create mode 100644 app/vendor/sebastian/diff/src/Exception/Exception.php create mode 100644 app/vendor/sebastian/diff/src/Exception/InvalidArgumentException.php create mode 100644 app/vendor/sebastian/diff/src/Line.php create mode 100644 app/vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.php create mode 100644 app/vendor/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php create mode 100644 app/vendor/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php create mode 100644 app/vendor/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php create mode 100644 app/vendor/sebastian/diff/src/Output/DiffOutputBuilderInterface.php create mode 100644 app/vendor/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php create mode 100644 app/vendor/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php create mode 100644 app/vendor/sebastian/diff/src/Parser.php create mode 100644 app/vendor/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php create mode 100644 app/vendor/sebastian/environment/ChangeLog.md create mode 100644 app/vendor/sebastian/environment/LICENSE create mode 100644 app/vendor/sebastian/environment/README.md create mode 100644 app/vendor/sebastian/environment/composer.json create mode 100644 app/vendor/sebastian/environment/src/Console.php create mode 100644 app/vendor/sebastian/environment/src/OperatingSystem.php create mode 100644 app/vendor/sebastian/environment/src/Runtime.php create mode 100644 app/vendor/sebastian/exporter/ChangeLog.md create mode 100644 app/vendor/sebastian/exporter/LICENSE create mode 100644 app/vendor/sebastian/exporter/README.md create mode 100644 app/vendor/sebastian/exporter/composer.json create mode 100644 app/vendor/sebastian/exporter/src/Exporter.php create mode 100644 app/vendor/sebastian/global-state/ChangeLog.md create mode 100644 app/vendor/sebastian/global-state/LICENSE create mode 100644 app/vendor/sebastian/global-state/README.md create mode 100644 app/vendor/sebastian/global-state/composer.json create mode 100644 app/vendor/sebastian/global-state/src/CodeExporter.php create mode 100644 app/vendor/sebastian/global-state/src/ExcludeList.php create mode 100644 app/vendor/sebastian/global-state/src/Restorer.php create mode 100644 app/vendor/sebastian/global-state/src/Snapshot.php create mode 100644 app/vendor/sebastian/global-state/src/exceptions/Exception.php create mode 100644 app/vendor/sebastian/global-state/src/exceptions/RuntimeException.php create mode 100644 app/vendor/sebastian/lines-of-code/.psalm/baseline.xml create mode 100644 app/vendor/sebastian/lines-of-code/.psalm/config.xml create mode 100644 app/vendor/sebastian/lines-of-code/ChangeLog.md create mode 100644 app/vendor/sebastian/lines-of-code/LICENSE create mode 100644 app/vendor/sebastian/lines-of-code/README.md create mode 100644 app/vendor/sebastian/lines-of-code/composer.json create mode 100644 app/vendor/sebastian/lines-of-code/src/Counter.php create mode 100644 app/vendor/sebastian/lines-of-code/src/Exception/Exception.php create mode 100644 app/vendor/sebastian/lines-of-code/src/Exception/IllogicalValuesException.php create mode 100644 app/vendor/sebastian/lines-of-code/src/Exception/NegativeValueException.php create mode 100644 app/vendor/sebastian/lines-of-code/src/Exception/RuntimeException.php create mode 100644 app/vendor/sebastian/lines-of-code/src/LineCountingVisitor.php create mode 100644 app/vendor/sebastian/lines-of-code/src/LinesOfCode.php create mode 100644 app/vendor/sebastian/object-enumerator/.psalm/baseline.xml create mode 100644 app/vendor/sebastian/object-enumerator/.psalm/config.xml create mode 100644 app/vendor/sebastian/object-enumerator/ChangeLog.md create mode 100644 app/vendor/sebastian/object-enumerator/LICENSE create mode 100644 app/vendor/sebastian/object-enumerator/README.md create mode 100644 app/vendor/sebastian/object-enumerator/composer.json create mode 100644 app/vendor/sebastian/object-enumerator/phpunit.xml create mode 100644 app/vendor/sebastian/object-enumerator/src/Enumerator.php create mode 100644 app/vendor/sebastian/object-enumerator/src/Exception.php create mode 100644 app/vendor/sebastian/object-enumerator/src/InvalidArgumentException.php create mode 100644 app/vendor/sebastian/object-reflector/.psalm/baseline.xml create mode 100644 app/vendor/sebastian/object-reflector/.psalm/config.xml create mode 100644 app/vendor/sebastian/object-reflector/ChangeLog.md create mode 100644 app/vendor/sebastian/object-reflector/LICENSE create mode 100644 app/vendor/sebastian/object-reflector/README.md create mode 100644 app/vendor/sebastian/object-reflector/composer.json create mode 100644 app/vendor/sebastian/object-reflector/src/Exception.php create mode 100644 app/vendor/sebastian/object-reflector/src/InvalidArgumentException.php create mode 100644 app/vendor/sebastian/object-reflector/src/ObjectReflector.php create mode 100644 app/vendor/sebastian/recursion-context/.psalm/baseline.xml create mode 100644 app/vendor/sebastian/recursion-context/.psalm/config.xml create mode 100644 app/vendor/sebastian/recursion-context/ChangeLog.md create mode 100644 app/vendor/sebastian/recursion-context/LICENSE create mode 100644 app/vendor/sebastian/recursion-context/README.md create mode 100644 app/vendor/sebastian/recursion-context/composer.json create mode 100644 app/vendor/sebastian/recursion-context/src/Context.php create mode 100644 app/vendor/sebastian/recursion-context/src/Exception.php create mode 100644 app/vendor/sebastian/recursion-context/src/InvalidArgumentException.php create mode 100644 app/vendor/sebastian/resource-operations/.gitattributes create mode 100644 app/vendor/sebastian/resource-operations/.gitignore create mode 100644 app/vendor/sebastian/resource-operations/ChangeLog.md create mode 100644 app/vendor/sebastian/resource-operations/LICENSE create mode 100644 app/vendor/sebastian/resource-operations/README.md create mode 100755 app/vendor/sebastian/resource-operations/build/generate.php create mode 100644 app/vendor/sebastian/resource-operations/composer.json create mode 100644 app/vendor/sebastian/resource-operations/src/ResourceOperations.php create mode 100644 app/vendor/sebastian/type/ChangeLog.md create mode 100644 app/vendor/sebastian/type/LICENSE create mode 100644 app/vendor/sebastian/type/README.md create mode 100644 app/vendor/sebastian/type/composer.json create mode 100644 app/vendor/sebastian/type/src/CallableType.php create mode 100644 app/vendor/sebastian/type/src/FalseType.php create mode 100644 app/vendor/sebastian/type/src/GenericObjectType.php create mode 100644 app/vendor/sebastian/type/src/IterableType.php create mode 100644 app/vendor/sebastian/type/src/MixedType.php create mode 100644 app/vendor/sebastian/type/src/NullType.php create mode 100644 app/vendor/sebastian/type/src/ObjectType.php create mode 100644 app/vendor/sebastian/type/src/ReflectionMapper.php create mode 100644 app/vendor/sebastian/type/src/SimpleType.php create mode 100644 app/vendor/sebastian/type/src/StaticType.php create mode 100644 app/vendor/sebastian/type/src/Type.php create mode 100644 app/vendor/sebastian/type/src/TypeName.php create mode 100644 app/vendor/sebastian/type/src/UnionType.php create mode 100644 app/vendor/sebastian/type/src/UnknownType.php create mode 100644 app/vendor/sebastian/type/src/VoidType.php create mode 100644 app/vendor/sebastian/type/src/exception/Exception.php create mode 100644 app/vendor/sebastian/type/src/exception/LogicException.php create mode 100644 app/vendor/sebastian/type/src/exception/RuntimeException.php create mode 100644 app/vendor/sebastian/version/.gitattributes create mode 100644 app/vendor/sebastian/version/.gitignore create mode 100644 app/vendor/sebastian/version/ChangeLog.md create mode 100644 app/vendor/sebastian/version/LICENSE create mode 100644 app/vendor/sebastian/version/README.md create mode 100644 app/vendor/sebastian/version/composer.json create mode 100644 app/vendor/sebastian/version/src/Version.php create mode 100644 app/vendor/seld/jsonlint/CHANGELOG.md create mode 100644 app/vendor/seld/jsonlint/LICENSE create mode 100644 app/vendor/seld/jsonlint/README.md create mode 100755 app/vendor/seld/jsonlint/bin/jsonlint create mode 100644 app/vendor/seld/jsonlint/composer.json create mode 100644 app/vendor/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php create mode 100644 app/vendor/seld/jsonlint/src/Seld/JsonLint/JsonParser.php create mode 100644 app/vendor/seld/jsonlint/src/Seld/JsonLint/Lexer.php create mode 100644 app/vendor/seld/jsonlint/src/Seld/JsonLint/ParsingException.php create mode 100644 app/vendor/seld/jsonlint/src/Seld/JsonLint/Undefined.php create mode 100644 app/vendor/seld/phar-utils/.gitignore create mode 100644 app/vendor/seld/phar-utils/LICENSE create mode 100644 app/vendor/seld/phar-utils/README.md create mode 100644 app/vendor/seld/phar-utils/composer.json create mode 100644 app/vendor/seld/phar-utils/composer.lock create mode 100644 app/vendor/seld/phar-utils/src/Linter.php create mode 100644 app/vendor/seld/phar-utils/src/Timestamps.php create mode 100644 app/vendor/slevomat/coding-standard/.editorconfig create mode 100644 app/vendor/slevomat/coding-standard/CODE_OF_CONDUCT.md create mode 100644 app/vendor/slevomat/coding-standard/LICENSE.md create mode 100644 app/vendor/slevomat/coding-standard/README.md create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/Annotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/ExtendsAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/GenericAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/ImplementsAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/MethodAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/MixinAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/ParameterAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/PropertyAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/ReturnAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/TemplateAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/ThrowsAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/UseAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Annotation/VariableAnnotation.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/AnnotationConstantExpressionHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/AnnotationHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/AnnotationTypeHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/CatchHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/ClassHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/Comment.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/CommentHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/ConditionHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/ConstantHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/DocCommentHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/EmptyFileException.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/FixerHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/FunctionHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/IdentificatorHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/IndentationHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/NamespaceHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/ParameterHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/ParameterTypeHint.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/PropertyHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/PropertyTypeHint.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/ReferencedName.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/ReferencedNameHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/ReturnTypeHint.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/ScopeHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/SniffLocalCache.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/SniffSettingsHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/StringHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/SuppressHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/TokenHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/TokenPointerOutOfBoundsException.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/TypeHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/TypeHintHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/UseStatement.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/UseStatementHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/VariableHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/YodaHelper.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Arrays/DisallowImplicitArrayCreationSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Arrays/MultiLineArrayEndBracketPlacementSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Arrays/SingleLineArrayWhitespaceSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Arrays/TrailingArrayCommaSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/AbstractMethodSignature.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/AbstractPropertyAndConstantSpacing.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/ClassConstantVisibilitySniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/ClassMemberSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/ClassStructureSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/ConstantSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/DisallowLateStaticBindingForConstantsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/DisallowMultiConstantDefinitionSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/DisallowMultiPropertyDefinitionSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/EmptyLinesAroundClassBracesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/MethodSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/MissingClassGroupsException.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/ModernClassNameReferenceSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/ParentCallSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/PropertySpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/RequireMultiLineMethodSignatureSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/RequireSingleLineMethodSignatureSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/SuperfluousAbstractClassNamingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/SuperfluousErrorNamingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/SuperfluousExceptionNamingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/SuperfluousInterfaceNamingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/SuperfluousTraitNamingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/TraitUseDeclarationSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/TraitUseSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/UnsupportedClassGroupException.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/UnusedPrivateElementsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Classes/UselessLateStaticBindingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/AbstractRequireOneLineDocComment.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/DeprecatedAnnotationDeclarationSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/DisallowCommentAfterCodeSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/DisallowOneLinePropertyDocCommentSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/DocCommentSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/EmptyCommentSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/ForbiddenAnnotationsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/ForbiddenCommentsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/InlineDocCommentDeclarationSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/RequireOneLineDocCommentSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/RequireOneLinePropertyDocCommentSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/UselessFunctionDocCommentSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Commenting/UselessInheritDocCommentSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/AbstractControlStructureSpacing.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/AbstractLineCondition.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/AssignmentInConditionSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/BlockControlStructureSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/DisallowContinueWithoutIntegerOperandInSwitchSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/DisallowEmptySniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/DisallowShortTernaryOperatorSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/DisallowYodaComparisonSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/EarlyExitSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/JumpStatementsSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/LanguageConstructWithParenthesesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/NewWithParenthesesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/NewWithoutParenthesesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/RequireMultiLineConditionSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/RequireMultiLineTernaryOperatorSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/RequireNullCoalesceEqualOperatorSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/RequireNullCoalesceOperatorSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/RequireShortTernaryOperatorSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/RequireSingleLineConditionSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/RequireTernaryOperatorSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/RequireYodaComparisonSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/UnsupportedTokenException.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/UselessIfConditionWithReturnSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/ControlStructures/UselessTernaryOperatorSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Exceptions/DeadCatchSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Exceptions/ReferenceThrowableOnlySniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Files/FilepathNamespaceExtractor.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Files/LineLengthSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Files/TypeNameMatchesFileNameSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/AbstractLineCall.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/ArrowFunctionDeclarationSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/DisallowArrowFunctionSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/DisallowEmptyFunctionSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/RequireArrowFunctionSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/RequireMultiLineCallSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/RequireSingleLineCallSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/StaticClosureSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/StrictCallSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/TrailingCommaInCallSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/UnusedInheritedVariablePassedToClosureSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/UnusedParameterSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/UselessParameterDefaultValueSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/AbstractFullyQualifiedGlobalReference.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/AlphabeticallySortedUsesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/DisallowGroupUseSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/FullyQualifiedClassNameAfterKeywordSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/FullyQualifiedClassNameInAnnotationSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/FullyQualifiedExceptionsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/FullyQualifiedGlobalConstantsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/FullyQualifiedGlobalFunctionsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/MultipleUsesPerLineSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/NamespaceDeclarationSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/NamespaceSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/ReferenceUsedNamesOnlySniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/RequireOneNamespaceInFileSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/UndefinedKeywordTokenException.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/UnusedUsesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/UseDoesNotStartWithBackslashSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/UseFromSameNamespaceSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/UseOnlyWhitelistedNamespacesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/UseSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/UselessAliasSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Numbers/DisallowNumericLiteralSeparatorSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Numbers/RequireNumericLiteralSeparatorSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Operators/DisallowEqualOperatorsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Operators/DisallowIncrementAndDecrementOperatorsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Operators/NegationOperatorSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Operators/RequireCombinedAssignmentOperatorSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Operators/RequireOnlyStandaloneIncrementAndDecrementOperatorsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Operators/SpreadOperatorSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/DisallowDirectMagicInvokeCallSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/DisallowReferenceSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/ForbiddenClassesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/OptimizedFunctionsWithoutUnpackingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/ReferenceSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/RequireExplicitAssertionSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/RequireNowdocSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/ShortListSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/TypeCastSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/UselessParenthesesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/PHP/UselessSemicolonSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TestCase.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/DeclareStrictTypesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/DisallowArrayTypeHintSyntaxSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/DisallowMixedTypeHintSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/LongTypeHintsSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/NullTypeHintOnLastPositionSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/NullableTypeForNullDefaultValueSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/ParameterTypeHintSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/ParameterTypeHintSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/PropertyTypeHintSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/PropertyTypeHintSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/ReturnTypeHintSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/ReturnTypeHintSpacingSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/TypeHints/UselessConstantTypeHintSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Variables/DisallowSuperGlobalVariableSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Variables/DuplicateAssignmentToVariableSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Variables/UnusedVariableSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Variables/UselessVariableSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Whitespaces/DuplicateSpacesSniff.php create mode 100644 app/vendor/slevomat/coding-standard/SlevomatCodingStandard/ruleset.xml create mode 100644 app/vendor/slevomat/coding-standard/autoload-bootstrap.php create mode 100644 app/vendor/slevomat/coding-standard/composer.json create mode 100644 app/vendor/squizlabs/php_codesniffer/.cspell.json create mode 100644 app/vendor/squizlabs/php_codesniffer/.gitattributes create mode 100644 app/vendor/squizlabs/php_codesniffer/.github/ISSUE_TEMPLATE/bug_report.md create mode 100644 app/vendor/squizlabs/php_codesniffer/.gitignore create mode 100644 app/vendor/squizlabs/php_codesniffer/CONTRIBUTING.md create mode 100644 app/vendor/squizlabs/php_codesniffer/CodeSniffer.conf.dist create mode 100644 app/vendor/squizlabs/php_codesniffer/README.md create mode 100644 app/vendor/squizlabs/php_codesniffer/autoload.php create mode 100755 app/vendor/squizlabs/php_codesniffer/bin/phpcbf create mode 100644 app/vendor/squizlabs/php_codesniffer/bin/phpcbf.bat create mode 100755 app/vendor/squizlabs/php_codesniffer/bin/phpcs create mode 100755 app/vendor/squizlabs/php_codesniffer/bin/phpcs.bat create mode 100644 app/vendor/squizlabs/php_codesniffer/composer.json create mode 100644 app/vendor/squizlabs/php_codesniffer/licence.txt create mode 100644 app/vendor/squizlabs/php_codesniffer/phpcs.xml.dist create mode 100644 app/vendor/squizlabs/php_codesniffer/phpcs.xsd create mode 100644 app/vendor/squizlabs/php_codesniffer/phpstan.neon create mode 100644 app/vendor/squizlabs/php_codesniffer/scripts/ValidatePEAR/ValidatePEARPackageXML.php create mode 100644 app/vendor/squizlabs/php_codesniffer/scripts/build-phar.php create mode 100644 app/vendor/squizlabs/php_codesniffer/scripts/validate-pear-package.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Config.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Exceptions/DeepExitException.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Exceptions/RuntimeException.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Exceptions/TokenizerException.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Files/DummyFile.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Files/File.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Files/FileList.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Files/LocalFile.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Filters/ExactMatch.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Filters/Filter.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Filters/GitModified.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Filters/GitStaged.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Fixer.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Generators/Generator.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Generators/HTML.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Generators/Markdown.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Generators/Text.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reporter.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Cbf.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Checkstyle.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Code.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Csv.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Diff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Emacs.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Full.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Gitblame.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Hgblame.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Info.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Json.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Junit.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Notifysend.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Report.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Source.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Summary.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Svnblame.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/VersionControl.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Reports/Xml.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Ruleset.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Runner.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractArraySniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractPatternSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractScopeSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Sniffs/AbstractVariableSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Sniffs/Sniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Arrays/DisallowLongArraySyntaxStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Arrays/DisallowShortArraySyntaxStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Classes/DuplicateClassNameStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Classes/OpeningBraceSameLineStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/AssignmentInConditionStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/EmptyStatementStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/ForLoopShouldBeWhileLoopStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/ForLoopWithTestFunctionCallStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/JumbledIncrementerStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UnconditionalIfStatementStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UnnecessaryFinalModifierStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UnusedFunctionParameterStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/CodeAnalysis/UselessOverridingMethodStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Commenting/FixmeStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Commenting/TodoStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/ControlStructures/DisallowYodaConditionsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/ControlStructures/InlineControlStructureStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Debug/CSSLintStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Debug/ClosureLinterStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Debug/JSHintStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/ByteOrderMarkStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/EndFileNewlineStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/EndFileNoNewlineStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/ExecutableFileStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/InlineHTMLStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/LineEndingsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/LineLengthStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/LowercasedFilenameStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/OneClassPerFileStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/OneInterfacePerFileStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/OneObjectStructurePerFileStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Files/OneTraitPerFileStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/DisallowMultipleStatementsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/MultipleStatementAlignmentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/NoSpaceAfterCastStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/SpaceAfterCastStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Formatting/SpaceAfterNotStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/CallTimePassByReferenceStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/FunctionCallArgumentSpacingStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/OpeningFunctionBraceBsdAllmanStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Functions/OpeningFunctionBraceKernighanRitchieStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Metrics/CyclomaticComplexityStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Metrics/NestingLevelStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/CamelCapsFunctionNameStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/ConstructorNameStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/NamingConventions/UpperCaseConstantNameStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/BacktickOperatorStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/CharacterBeforePHPOpeningTagStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/ClosingPHPTagStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DeprecatedFunctionsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DisallowAlternativePHPTagsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DisallowRequestSuperglobalStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DisallowShortOpenTagStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/DiscourageGotoStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/ForbiddenFunctionsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/LowerCaseConstantStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/LowerCaseKeywordStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/LowerCaseTypeStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/NoSilencedErrorsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/SAPIUsageStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/UpperCaseConstantStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/Strings/UnnecessaryStringConcatStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/VersionControl/SubversionPropertiesStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/ArbitraryParenthesesSpacingStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/DisallowSpaceIndentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/DisallowTabIndentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/ScopeIndentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/WhiteSpace/SpreadOperatorSpacingAfterStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Arrays/ArrayIndentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Arrays/DisallowLongArraySyntaxSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Classes/OpeningBraceSameLineSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/AssignmentInConditionSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyPHPStatementSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopShouldBeWhileLoopSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/JumbledIncrementerSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/CodeAnalysis/UselessOverridingMethodSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Commenting/DocCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Commenting/FixmeSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Commenting/TodoSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/ControlStructures/DisallowYodaConditionsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Debug/CSSLintSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Debug/ESLintSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Debug/JSHintSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/EndFileNewlineSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/EndFileNoNewlineSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/ExecutableFileSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/InlineHTMLSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/LineEndingsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/LineLengthSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/LowercasedFilenameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/OneInterfacePerFileSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/OneObjectStructurePerFileSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/MultipleStatementAlignmentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/SpaceAfterCastSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/SpaceAfterNotSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Formatting/SpaceBeforeCastSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Functions/FunctionCallArgumentSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceBsdAllmanSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceKernighanRitchieSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/NamingConventions/ConstructorNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/BacktickOperatorSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/CharacterBeforePHPOpeningTagSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/DeprecatedFunctionsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/DisallowAlternativePHPTagsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/DisallowRequestSuperglobalSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/DisallowShortOpenTagSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/DiscourageGotoSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/ForbiddenFunctionsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/LowerCaseTypeSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/NoSilencedErrorsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/RequireStrictTypesSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/SAPIUsageSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/SyntaxSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/VersionControl/GitMergeConflictSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/VersionControl/SubversionPropertiesSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/ArbitraryParenthesesSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/DisallowTabIndentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/IncrementDecrementSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Sniffs/WhiteSpace/SpreadOperatorSpacingAfterSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/ArrayIndentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/ArrayIndentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/ArrayIndentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyStatementUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/EmptyStatementUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnnecessaryFinalModifierUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnnecessaryFinalModifierUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnusedFunctionParameterUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UnusedFunctionParameterUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/TodoUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/TodoUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Commenting/TodoUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/DisallowYodaConditionsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/DisallowYodaConditionsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.7.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/CSSLintUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/CSSLintUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ClosureLinterUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ClosureLinterUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ESLintUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/ESLintUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/JSHintUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Debug/JSHintUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.1.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.2.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.2.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.3.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.4.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.1.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.2.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.3.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.6.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.7.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.1.inc create mode 100755 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.7.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineLengthUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineLengthUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineLengthUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineLengthUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LineLengthUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LowercasedFilenameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/LowercasedFilenameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneClassPerFileUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneClassPerFileUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneInterfacePerFileUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneInterfacePerFileUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneObjectStructurePerFileUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneObjectStructurePerFileUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneTraitPerFileUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Files/OneTraitPerFileUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/DisallowMultipleStatementsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/DisallowMultipleStatementsUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/DisallowMultipleStatementsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/NoSpaceAfterCastUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/NoSpaceAfterCastUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/NoSpaceAfterCastUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceBeforeCastUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceBeforeCastUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Formatting/SpaceBeforeCastUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceBsdAllmanUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceBsdAllmanUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceBsdAllmanUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/CyclomaticComplexityUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/CyclomaticComplexityUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/CamelCapsFunctionNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/CamelCapsFunctionNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/ConstructorNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/ConstructorNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/BacktickOperatorUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/BacktickOperatorUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/ClosingPHPTagUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/ClosingPHPTagUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DeprecatedFunctionsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DeprecatedFunctionsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowRequestSuperglobalUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowRequestSuperglobalUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DiscourageGotoUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/DiscourageGotoUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/ForbiddenFunctionsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/ForbiddenFunctionsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseKeywordUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseKeywordUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseKeywordUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseTypeUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseTypeUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/LowerCaseTypeUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/SAPIUsageUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/SAPIUsageUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/SyntaxUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/SyntaxUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/UpperCaseConstantUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/UpperCaseConstantUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/UpperCaseConstantUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.1.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.2.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/SubversionPropertiesUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/VersionControl/SubversionPropertiesUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ArbitraryParenthesesSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ArbitraryParenthesesSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ArbitraryParenthesesSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowSpaceIndentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/DisallowTabIndentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/IncrementDecrementSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.1.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.1.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.3.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/WhiteSpace/SpreadOperatorSpacingAfterUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Generic/ruleset.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/CSS/BrowserSpecificStylesSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Channels/DisallowSelfActionsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Channels/IncludeOwnSystemSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Channels/IncludeSystemSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Channels/UnusedSystemSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Commenting/FunctionCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Debug/DebugCodeSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Debug/FirebugConsoleSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Objects/AssignThisSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Objects/CreateWidgetTypeCallbackSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Objects/DisallowNewWidgetSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/PHP/AjaxNullComparisonSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/PHP/EvalObjectFactorySniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/PHP/GetRequestDataSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/PHP/ReturnFunctionValueSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Sniffs/Strings/JoinStringsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/CSS/BrowserSpecificStylesUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/CSS/BrowserSpecificStylesUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/DisallowSelfActionsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/DisallowSelfActionsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/IncludeSystemUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/IncludeSystemUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/UnusedSystemUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels/UnusedSystemUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Commenting/FunctionCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Commenting/FunctionCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Debug/DebugCodeUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Debug/DebugCodeUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Debug/FirebugConsoleUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Debug/FirebugConsoleUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/AssignThisUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/AssignThisUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/CreateWidgetTypeCallbackUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/CreateWidgetTypeCallbackUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/DisallowNewWidgetUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Objects/DisallowNewWidgetUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/AjaxNullComparisonUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/AjaxNullComparisonUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/EvalObjectFactoryUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/EvalObjectFactoryUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/GetRequestDataUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/GetRequestDataUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/ReturnFunctionValueUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/PHP/ReturnFunctionValueUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Strings/JoinStringsUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Strings/JoinStringsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/MySource/ruleset.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Classes/ClassDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Commenting/ClassCommentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Commenting/FileCommentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Commenting/FunctionCommentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Commenting/InlineCommentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/ControlStructures/ControlSignatureStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/ControlStructures/MultiLineConditionStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Files/IncludingFileStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Files/LineLengthStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Formatting/MultiLineAssignmentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Functions/FunctionCallSignatureStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Functions/FunctionDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/Functions/ValidDefaultValueStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/NamingConventions/ValidClassNameStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/NamingConventions/ValidFunctionNameStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/NamingConventions/ValidVariableNameStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/WhiteSpace/ObjectOperatorIndentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/WhiteSpace/ScopeClosingBraceStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/WhiteSpace/ScopeIndentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Classes/ClassDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Commenting/ClassCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Commenting/FileCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Commenting/FunctionCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Commenting/InlineCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/ControlStructures/ControlSignatureSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/ControlStructures/MultiLineConditionSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Files/IncludingFileSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Formatting/MultiLineAssignmentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Functions/FunctionCallSignatureSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Functions/FunctionDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/Functions/ValidDefaultValueSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/NamingConventions/ValidClassNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/NamingConventions/ValidFunctionNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/NamingConventions/ValidVariableNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/WhiteSpace/ObjectOperatorIndentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Sniffs/WhiteSpace/ScopeIndentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Classes/ClassDeclarationUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Classes/ClassDeclarationUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Classes/ClassDeclarationUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Classes/ClassDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/ClassCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/ClassCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FileCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FileCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FunctionCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FunctionCommentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/FunctionCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/InlineCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/InlineCommentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Commenting/InlineCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/ControlSignatureUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/ControlSignatureUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/MultiLineConditionUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/MultiLineConditionUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/MultiLineConditionUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/MultiLineConditionUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/ControlStructures/MultiLineConditionUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Files/IncludingFileUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Files/IncludingFileUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Files/IncludingFileUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Formatting/MultiLineAssignmentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Formatting/MultiLineAssignmentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionCallSignatureUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/FunctionDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/ValidDefaultValueUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Functions/ValidDefaultValueUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidClassNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidClassNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidFunctionNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidFunctionNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidVariableNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/NamingConventions/ValidVariableNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ObjectOperatorIndentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ObjectOperatorIndentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ObjectOperatorIndentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeClosingBraceUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeClosingBraceUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeClosingBraceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeIndentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/WhiteSpace/ScopeIndentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/ruleset.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Docs/Classes/ClassDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Docs/Files/SideEffectsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Docs/Methods/CamelCapsMethodNameStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Sniffs/Classes/ClassDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Sniffs/Files/SideEffectsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Sniffs/Methods/CamelCapsMethodNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Classes/ClassDeclarationUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Classes/ClassDeclarationUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Classes/ClassDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.10.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.11.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.12.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.13.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.14.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.15.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.16.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.7.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.8.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.9.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Files/SideEffectsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Methods/CamelCapsMethodNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/Tests/Methods/CamelCapsMethodNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR1/ruleset.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Classes/ClassInstantiationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Functions/NullableTypeDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Keywords/ShortFormTypeKeywordsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Namespaces/CompoundNamespaceDepthStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Docs/Operators/OperatorSpacingStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Classes/AnonClassDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Classes/ClassInstantiationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Classes/ClosingBraceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/ControlStructures/BooleanOperatorPlacementSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/ControlStructures/ControlStructureSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Files/DeclareStatementSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Files/FileHeaderSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Files/ImportStatementSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Files/OpenTagSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Functions/NullableTypeDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Functions/ReturnTypeDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Keywords/ShortFormTypeKeywordsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Namespaces/CompoundNamespaceDepthSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Operators/OperatorSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Properties/ConstantVisibilitySniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Sniffs/Traits/UseDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/AnonClassDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/AnonClassDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/AnonClassDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/ClassInstantiationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/ClassInstantiationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/ClassInstantiationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/ClosingBraceUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Classes/ClosingBraceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/BooleanOperatorPlacementUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/BooleanOperatorPlacementUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/BooleanOperatorPlacementUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/ControlStructures/ControlStructureSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/DeclareStatementUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/DeclareStatementUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/DeclareStatementUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.10.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.10.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.11.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.11.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.12.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.12.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.13.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.14.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.15.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.16.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.4.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.7.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.7.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.8.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.9.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/FileHeaderUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/ImportStatementUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/ImportStatementUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/ImportStatementUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Files/OpenTagUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/NullableTypeDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/NullableTypeDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/NullableTypeDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/ReturnTypeDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/ReturnTypeDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Functions/ReturnTypeDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Keywords/ShortFormTypeKeywordsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Keywords/ShortFormTypeKeywordsUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Keywords/ShortFormTypeKeywordsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Namespaces/CompoundNamespaceDepthUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Namespaces/CompoundNamespaceDepthUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Operators/OperatorSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Operators/OperatorSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Operators/OperatorSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Properties/ConstantVisibilityUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Properties/ConstantVisibilityUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Traits/UseDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Traits/UseDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Traits/UseDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/ruleset.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Classes/ClassDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Classes/PropertyDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/ControlStructures/ControlStructureSpacingStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/ControlStructures/ElseIfDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/ControlStructures/SwitchDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Files/EndFileNewlineStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Methods/MethodDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Namespaces/NamespaceDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Docs/Namespaces/UseDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Classes/ClassDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Classes/PropertyDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/ControlStructures/ControlStructureSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/ControlStructures/ElseIfDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/ControlStructures/SwitchDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Files/ClosingTagSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Files/EndFileNewlineSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Methods/FunctionCallSignatureSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Methods/FunctionClosingBraceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Methods/MethodDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Namespaces/NamespaceDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Namespaces/UseDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/ClassDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/ClassDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/ClassDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/PropertyDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/PropertyDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/PropertyDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ControlStructureSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ControlStructureSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/ElseIfDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/SwitchDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/SwitchDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/ControlStructures/SwitchDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.4.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.5.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.6.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.7.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.7.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/ClosingTagUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.10.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.10.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.3.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.6.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.7.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.7.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.8.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.9.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.9.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Files/EndFileNewlineUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionCallSignatureUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionCallSignatureUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionCallSignatureUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionClosingBraceUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionClosingBraceUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/FunctionClosingBraceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/MethodDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/MethodDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Methods/MethodDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/NamespaceDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/NamespaceDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/NamespaceDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.10.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.10.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.11.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.11.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.12.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.12.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.13.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.13.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.14.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.14.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.15.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.16.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.16.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.17.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.3.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.5.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.7.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.8.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.9.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/ruleset.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Arrays/ArrayBracketSpacingStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Arrays/ArrayDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Classes/LowercaseClassKeywordsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Classes/SelfMemberReferenceStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Commenting/DocCommentAlignmentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Commenting/FunctionCommentThrowTagStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/ControlStructures/ForEachLoopDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/ControlStructures/ForLoopDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/ControlStructures/LowercaseDeclarationStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Functions/FunctionDuplicateArgumentStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Functions/LowercaseFunctionKeywordsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Scope/StaticThisUsageStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Strings/EchoedStringsStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/CastSpacingStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/FunctionOpeningBraceStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/LanguageConstructSpacingStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/ObjectOperatorSpacingStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/ScopeKeywordSpacingStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/WhiteSpace/SemicolonSpacingStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Arrays/ArrayBracketSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Arrays/ArrayDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ClassDefinitionClosingBraceSpaceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ClassDefinitionNameSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ClassDefinitionOpeningBraceSpaceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ColonSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ColourDefinitionSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/DisallowMultipleStyleDefinitionsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/DuplicateClassDefinitionSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/DuplicateStyleDefinitionSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/EmptyClassDefinitionSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/EmptyStyleDefinitionSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ForbiddenStylesSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/IndentationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/LowercaseStyleDefinitionSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/MissingColonSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/NamedColoursSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/OpacitySniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/SemicolonSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/CSS/ShorthandSizeSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/ClassDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/ClassFileNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/DuplicatePropertySniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/LowercaseClassKeywordsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/SelfMemberReferenceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Classes/ValidClassNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/BlockCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/ClassCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/ClosingDeclarationCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/DocCommentAlignmentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/EmptyCatchCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/FileCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/FunctionCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/FunctionCommentThrowTagSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/InlineCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/LongConditionClosingCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/PostStatementCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/VariableCommentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/ControlSignatureSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/ElseIfDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/ForEachLoopDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/ForLoopDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/InlineIfDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/LowercaseDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/ControlStructures/SwitchDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Debug/JSLintSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Debug/JavaScriptLintSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Files/FileExtensionSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Formatting/OperatorBracketSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/FunctionDeclarationArgumentSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/FunctionDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/FunctionDuplicateArgumentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/GlobalFunctionSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/LowercaseFunctionKeywordsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Functions/MultiLineFunctionDeclarationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/NamingConventions/ValidFunctionNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/NamingConventions/ValidVariableNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Objects/DisallowObjectStringIndexSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Objects/ObjectInstantiationSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Objects/ObjectMemberCommaSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Operators/ComparisonOperatorUsageSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Operators/IncrementDecrementUsageSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Operators/ValidLogicalOperatorsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/CommentedOutCodeSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DisallowBooleanStatementSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DisallowComparisonAssignmentSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DisallowInlineIfSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DisallowMultipleAssignmentsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DisallowSizeFunctionsInLoopsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/DiscouragedFunctionsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/EmbeddedPhpSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/EvalSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/GlobalKeywordSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/HeredocSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/InnerFunctionsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/LowercasePHPFunctionsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/PHP/NonExecutableCodeSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Scope/MemberVarScopeSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Scope/MethodScopeSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Scope/StaticThisUsageSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Strings/ConcatenationSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Strings/DoubleQuoteUsageSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Strings/EchoedStringsSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/CastSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/ControlStructureSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/FunctionClosingBraceSpaceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/FunctionOpeningBraceSpaceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/FunctionSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/LogicalOperatorSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/MemberVarSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/ObjectOperatorSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/OperatorSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/PropertyLabelSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/ScopeClosingBraceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/ScopeKeywordSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/SemicolonSpacingSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/WhiteSpace/SuperfluousWhitespaceSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayBracketSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayBracketSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayBracketSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Arrays/ArrayDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionClosingBraceSpaceUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionClosingBraceSpaceUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionClosingBraceSpaceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionNameSpacingUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionNameSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionOpeningBraceSpaceUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionOpeningBraceSpaceUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ClassDefinitionOpeningBraceSpaceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColonSpacingUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColonSpacingUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColonSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColourDefinitionUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColourDefinitionUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ColourDefinitionUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DisallowMultipleStyleDefinitionsUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DisallowMultipleStyleDefinitionsUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DisallowMultipleStyleDefinitionsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DuplicateClassDefinitionUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DuplicateClassDefinitionUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DuplicateStyleDefinitionUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/DuplicateStyleDefinitionUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/EmptyClassDefinitionUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/EmptyClassDefinitionUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/EmptyStyleDefinitionUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/EmptyStyleDefinitionUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ForbiddenStylesUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ForbiddenStylesUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ForbiddenStylesUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/IndentationUnitTest.1.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/IndentationUnitTest.1.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/IndentationUnitTest.2.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/IndentationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/LowercaseStyleDefinitionUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/LowercaseStyleDefinitionUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/MissingColonUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/MissingColonUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/NamedColoursUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/NamedColoursUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/OpacityUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/OpacityUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/OpacityUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/SemicolonSpacingUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/SemicolonSpacingUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/SemicolonSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ShorthandSizeUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ShorthandSizeUnitTest.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/CSS/ShorthandSizeUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ClassDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ClassDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ClassDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ClassFileNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ClassFileNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/DuplicatePropertyUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/DuplicatePropertyUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/LowercaseClassKeywordsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/LowercaseClassKeywordsUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/LowercaseClassKeywordsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/SelfMemberReferenceUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/SelfMemberReferenceUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/SelfMemberReferenceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ValidClassNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Classes/ValidClassNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/BlockCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/BlockCommentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/BlockCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClassCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClassCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/ClosingDeclarationCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/EmptyCatchCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/EmptyCatchCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.1.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.1.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.2.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FileCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FunctionCommentThrowTagUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FunctionCommentThrowTagUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FunctionCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FunctionCommentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/FunctionCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/InlineCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/InlineCommentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/InlineCommentUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/InlineCommentUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/InlineCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/LongConditionClosingCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/LongConditionClosingCommentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/LongConditionClosingCommentUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/LongConditionClosingCommentUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/LongConditionClosingCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.1.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.1.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.2.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/PostStatementCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/VariableCommentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/VariableCommentUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Commenting/VariableCommentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ControlSignatureUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ElseIfDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ElseIfDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForEachLoopDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForEachLoopDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForEachLoopDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/ForLoopDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/InlineIfDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/InlineIfDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/InlineIfDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/LowercaseDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/LowercaseDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/LowercaseDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/SwitchDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/SwitchDeclarationUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/ControlStructures/SwitchDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Debug/JSLintUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Debug/JSLintUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Debug/JavaScriptLintUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Debug/JavaScriptLintUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Files/FileExtensionUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Formatting/OperatorBracketUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationArgumentSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDuplicateArgumentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/FunctionDuplicateArgumentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/GlobalFunctionUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/GlobalFunctionUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/LowercaseFunctionKeywordsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/LowercaseFunctionKeywordsUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/LowercaseFunctionKeywordsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/MultiLineFunctionDeclarationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/MultiLineFunctionDeclarationUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/MultiLineFunctionDeclarationUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/MultiLineFunctionDeclarationUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Functions/MultiLineFunctionDeclarationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/NamingConventions/ValidFunctionNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/NamingConventions/ValidFunctionNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/NamingConventions/ValidVariableNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/NamingConventions/ValidVariableNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/DisallowObjectStringIndexUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/DisallowObjectStringIndexUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/ObjectInstantiationUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/ObjectInstantiationUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/ObjectMemberCommaUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/ObjectMemberCommaUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Objects/ObjectMemberCommaUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ComparisonOperatorUsageUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ComparisonOperatorUsageUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ComparisonOperatorUsageUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/IncrementDecrementUsageUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/IncrementDecrementUsageUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ValidLogicalOperatorsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Operators/ValidLogicalOperatorsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/CommentedOutCodeUnitTest.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/CommentedOutCodeUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/CommentedOutCodeUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowBooleanStatementUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowBooleanStatementUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowComparisonAssignmentUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowComparisonAssignmentUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowInlineIfUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowInlineIfUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowInlineIfUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowMultipleAssignmentsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowMultipleAssignmentsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowSizeFunctionsInLoopsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowSizeFunctionsInLoopsUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DisallowSizeFunctionsInLoopsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DiscouragedFunctionsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/DiscouragedFunctionsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EmbeddedPhpUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EvalUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/EvalUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/GlobalKeywordUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/GlobalKeywordUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/HeredocUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/HeredocUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/InnerFunctionsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/InnerFunctionsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/LowercasePHPFunctionsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/LowercasePHPFunctionsUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/LowercasePHPFunctionsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/NonExecutableCodeUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/NonExecutableCodeUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/PHP/NonExecutableCodeUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/MemberVarScopeUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/MemberVarScopeUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/MethodScopeUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/MethodScopeUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/StaticThisUsageUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Scope/StaticThisUsageUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/ConcatenationSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/ConcatenationSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/ConcatenationSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/DoubleQuoteUsageUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/DoubleQuoteUsageUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/DoubleQuoteUsageUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/EchoedStringsUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/EchoedStringsUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/Strings/EchoedStringsUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/CastSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/CastSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/CastSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ControlStructureSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ControlStructureSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ControlStructureSpacingUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ControlStructureSpacingUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ControlStructureSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionClosingBraceSpaceUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionClosingBraceSpaceUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionClosingBraceSpaceUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionClosingBraceSpaceUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionClosingBraceSpaceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionOpeningBraceSpaceUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionOpeningBraceSpaceUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionOpeningBraceSpaceUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionOpeningBraceSpaceUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionOpeningBraceSpaceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.3.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.5.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.6.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.7.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/FunctionSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LanguageConstructSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/MemberVarSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/MemberVarSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/MemberVarSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ObjectOperatorSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ObjectOperatorSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ObjectOperatorSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/OperatorSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/PropertyLabelSpacingUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/PropertyLabelSpacingUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/PropertyLabelSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeClosingBraceUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeClosingBraceUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeClosingBraceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeKeywordSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeKeywordSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/ScopeKeywordSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SemicolonSpacingUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SemicolonSpacingUnitTest.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SemicolonSpacingUnitTest.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SemicolonSpacingUnitTest.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SemicolonSpacingUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.1.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.2.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.css create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.css.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.js create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.3.js.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.4.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.5.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/SuperfluousWhitespaceUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/ruleset.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Docs/Debug/CodeAnalyzerStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Docs/Files/ClosingTagStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Docs/NamingConventions/ValidVariableNameStandard.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Sniffs/Debug/CodeAnalyzerSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Sniffs/Files/ClosingTagSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Sniffs/NamingConventions/ValidVariableNameSniff.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Debug/CodeAnalyzerUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Debug/CodeAnalyzerUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.1.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.1.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.2.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.3.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.3.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.4.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.4.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.5.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.5.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.6.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.7.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.7.inc.fixed create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/Files/ClosingTagUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/NamingConventions/ValidVariableNameUnitTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/Tests/NamingConventions/ValidVariableNameUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Standards/Zend/ruleset.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Tokenizers/CSS.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Tokenizers/Comment.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Tokenizers/JS.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Tokenizers/PHP.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Tokenizers/Tokenizer.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Util/Cache.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Util/Common.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Util/Standards.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Util/Timing.php create mode 100644 app/vendor/squizlabs/php_codesniffer/src/Util/Tokens.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/AllTests.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/AbstractMethodUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/AllTests.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Autoloader/DetermineLoadedClassTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Autoloader/TestFiles/A.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Autoloader/TestFiles/B.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Autoloader/TestFiles/C.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Autoloader/TestFiles/Sub/C.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/ErrorSuppressionTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/FindEndOfStatementTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/FindEndOfStatementTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/FindExtendedClassNameTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/FindExtendedClassNameTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/FindImplementedInterfaceNamesTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/FindImplementedInterfaceNamesTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMemberPropertiesTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMemberPropertiesTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodParametersTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodParametersTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodPropertiesTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/GetMethodPropertiesTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/IsReferenceTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/File/IsReferenceTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Filters/Filter/AcceptTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Filters/Filter/AcceptTest.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/IsCamelCapsTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionAbsoluteLinuxTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionAbsoluteLinuxTest.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionAbsoluteWindowsTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionAbsoluteWindowsTest.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionTest-include.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Ruleset/RuleInclusionTest.xml create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Sniffs/AbstractArraySniffTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Sniffs/AbstractArraySniffTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Sniffs/AbstractArraySniffTestable.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/AnonClassParenthesisOwnerTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/AnonClassParenthesisOwnerTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/BackfillFnTokenTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/BackfillFnTokenTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/BackfillNumericSeparatorTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/BackfillNumericSeparatorTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/NullsafeObjectOperatorTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/NullsafeObjectOperatorTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/ScopeSettingWithNamespaceOperatorTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/ScopeSettingWithNamespaceOperatorTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/ShortArrayTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/ShortArrayTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/StableCommentWhitespaceTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/StableCommentWhitespaceTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/StableCommentWhitespaceWinTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/StableCommentWhitespaceWinTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/UndoNamespacedNameSingleTokenTest.inc create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/UndoNamespacedNameSingleTokenTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/FileList.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Standards/AbstractSniffUnitTest.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/Standards/AllSniffs.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/TestSuite.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/TestSuite7.php create mode 100644 app/vendor/squizlabs/php_codesniffer/tests/bootstrap.php create mode 100644 app/vendor/symfony/config/Builder/ClassBuilder.php create mode 100644 app/vendor/symfony/config/Builder/ConfigBuilderGenerator.php create mode 100644 app/vendor/symfony/config/Builder/ConfigBuilderGeneratorInterface.php create mode 100644 app/vendor/symfony/config/Builder/ConfigBuilderInterface.php create mode 100644 app/vendor/symfony/config/Builder/Method.php create mode 100644 app/vendor/symfony/config/Builder/Property.php create mode 100644 app/vendor/symfony/config/CHANGELOG.md create mode 100644 app/vendor/symfony/config/ConfigCache.php create mode 100644 app/vendor/symfony/config/ConfigCacheFactory.php create mode 100644 app/vendor/symfony/config/ConfigCacheFactoryInterface.php create mode 100644 app/vendor/symfony/config/ConfigCacheInterface.php create mode 100644 app/vendor/symfony/config/Definition/ArrayNode.php create mode 100644 app/vendor/symfony/config/Definition/BaseNode.php create mode 100644 app/vendor/symfony/config/Definition/BooleanNode.php create mode 100644 app/vendor/symfony/config/Definition/Builder/ArrayNodeDefinition.php create mode 100644 app/vendor/symfony/config/Definition/Builder/BooleanNodeDefinition.php create mode 100644 app/vendor/symfony/config/Definition/Builder/BuilderAwareInterface.php create mode 100644 app/vendor/symfony/config/Definition/Builder/EnumNodeDefinition.php create mode 100644 app/vendor/symfony/config/Definition/Builder/ExprBuilder.php create mode 100644 app/vendor/symfony/config/Definition/Builder/FloatNodeDefinition.php create mode 100644 app/vendor/symfony/config/Definition/Builder/IntegerNodeDefinition.php create mode 100644 app/vendor/symfony/config/Definition/Builder/MergeBuilder.php create mode 100644 app/vendor/symfony/config/Definition/Builder/NodeBuilder.php create mode 100644 app/vendor/symfony/config/Definition/Builder/NodeDefinition.php create mode 100644 app/vendor/symfony/config/Definition/Builder/NodeParentInterface.php create mode 100644 app/vendor/symfony/config/Definition/Builder/NormalizationBuilder.php create mode 100644 app/vendor/symfony/config/Definition/Builder/NumericNodeDefinition.php create mode 100644 app/vendor/symfony/config/Definition/Builder/ParentNodeDefinitionInterface.php create mode 100644 app/vendor/symfony/config/Definition/Builder/ScalarNodeDefinition.php create mode 100644 app/vendor/symfony/config/Definition/Builder/TreeBuilder.php create mode 100644 app/vendor/symfony/config/Definition/Builder/ValidationBuilder.php create mode 100644 app/vendor/symfony/config/Definition/Builder/VariableNodeDefinition.php create mode 100644 app/vendor/symfony/config/Definition/ConfigurationInterface.php create mode 100644 app/vendor/symfony/config/Definition/Dumper/XmlReferenceDumper.php create mode 100644 app/vendor/symfony/config/Definition/Dumper/YamlReferenceDumper.php create mode 100644 app/vendor/symfony/config/Definition/EnumNode.php create mode 100644 app/vendor/symfony/config/Definition/Exception/DuplicateKeyException.php create mode 100644 app/vendor/symfony/config/Definition/Exception/Exception.php create mode 100644 app/vendor/symfony/config/Definition/Exception/ForbiddenOverwriteException.php create mode 100644 app/vendor/symfony/config/Definition/Exception/InvalidConfigurationException.php create mode 100644 app/vendor/symfony/config/Definition/Exception/InvalidDefinitionException.php create mode 100644 app/vendor/symfony/config/Definition/Exception/InvalidTypeException.php create mode 100644 app/vendor/symfony/config/Definition/Exception/UnsetKeyException.php create mode 100644 app/vendor/symfony/config/Definition/FloatNode.php create mode 100644 app/vendor/symfony/config/Definition/IntegerNode.php create mode 100644 app/vendor/symfony/config/Definition/NodeInterface.php create mode 100644 app/vendor/symfony/config/Definition/NumericNode.php create mode 100644 app/vendor/symfony/config/Definition/Processor.php create mode 100644 app/vendor/symfony/config/Definition/PrototypeNodeInterface.php create mode 100644 app/vendor/symfony/config/Definition/PrototypedArrayNode.php create mode 100644 app/vendor/symfony/config/Definition/ScalarNode.php create mode 100644 app/vendor/symfony/config/Definition/VariableNode.php create mode 100644 app/vendor/symfony/config/Exception/FileLoaderImportCircularReferenceException.php create mode 100644 app/vendor/symfony/config/Exception/FileLocatorFileNotFoundException.php create mode 100644 app/vendor/symfony/config/Exception/LoaderLoadException.php create mode 100644 app/vendor/symfony/config/FileLocator.php create mode 100644 app/vendor/symfony/config/FileLocatorInterface.php create mode 100644 app/vendor/symfony/config/LICENSE create mode 100644 app/vendor/symfony/config/Loader/DelegatingLoader.php create mode 100644 app/vendor/symfony/config/Loader/FileLoader.php create mode 100644 app/vendor/symfony/config/Loader/GlobFileLoader.php create mode 100644 app/vendor/symfony/config/Loader/Loader.php create mode 100644 app/vendor/symfony/config/Loader/LoaderInterface.php create mode 100644 app/vendor/symfony/config/Loader/LoaderResolver.php create mode 100644 app/vendor/symfony/config/Loader/LoaderResolverInterface.php create mode 100644 app/vendor/symfony/config/Loader/ParamConfigurator.php create mode 100644 app/vendor/symfony/config/README.md create mode 100644 app/vendor/symfony/config/Resource/ClassExistenceResource.php create mode 100644 app/vendor/symfony/config/Resource/ComposerResource.php create mode 100644 app/vendor/symfony/config/Resource/DirectoryResource.php create mode 100644 app/vendor/symfony/config/Resource/FileExistenceResource.php create mode 100644 app/vendor/symfony/config/Resource/FileResource.php create mode 100644 app/vendor/symfony/config/Resource/GlobResource.php create mode 100644 app/vendor/symfony/config/Resource/ReflectionClassResource.php create mode 100644 app/vendor/symfony/config/Resource/ResourceInterface.php create mode 100644 app/vendor/symfony/config/Resource/SelfCheckingResourceChecker.php create mode 100644 app/vendor/symfony/config/Resource/SelfCheckingResourceInterface.php create mode 100644 app/vendor/symfony/config/ResourceCheckerConfigCache.php create mode 100644 app/vendor/symfony/config/ResourceCheckerConfigCacheFactory.php create mode 100644 app/vendor/symfony/config/ResourceCheckerInterface.php create mode 100644 app/vendor/symfony/config/Util/Exception/InvalidXmlException.php create mode 100644 app/vendor/symfony/config/Util/Exception/XmlParsingException.php create mode 100644 app/vendor/symfony/config/Util/XmlUtils.php create mode 100644 app/vendor/symfony/config/composer.json create mode 100644 app/vendor/symfony/console/Application.php create mode 100644 app/vendor/symfony/console/Attribute/AsCommand.php create mode 100644 app/vendor/symfony/console/CHANGELOG.md create mode 100644 app/vendor/symfony/console/CI/GithubActionReporter.php create mode 100644 app/vendor/symfony/console/Color.php create mode 100644 app/vendor/symfony/console/Command/Command.php create mode 100644 app/vendor/symfony/console/Command/HelpCommand.php create mode 100644 app/vendor/symfony/console/Command/LazyCommand.php create mode 100644 app/vendor/symfony/console/Command/ListCommand.php create mode 100644 app/vendor/symfony/console/Command/LockableTrait.php create mode 100644 app/vendor/symfony/console/Command/SignalableCommandInterface.php create mode 100644 app/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php create mode 100644 app/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php create mode 100644 app/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php create mode 100644 app/vendor/symfony/console/ConsoleEvents.php create mode 100644 app/vendor/symfony/console/Cursor.php create mode 100644 app/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php create mode 100644 app/vendor/symfony/console/Descriptor/ApplicationDescription.php create mode 100644 app/vendor/symfony/console/Descriptor/Descriptor.php create mode 100644 app/vendor/symfony/console/Descriptor/DescriptorInterface.php create mode 100644 app/vendor/symfony/console/Descriptor/JsonDescriptor.php create mode 100644 app/vendor/symfony/console/Descriptor/MarkdownDescriptor.php create mode 100644 app/vendor/symfony/console/Descriptor/TextDescriptor.php create mode 100644 app/vendor/symfony/console/Descriptor/XmlDescriptor.php create mode 100644 app/vendor/symfony/console/Event/ConsoleCommandEvent.php create mode 100644 app/vendor/symfony/console/Event/ConsoleErrorEvent.php create mode 100644 app/vendor/symfony/console/Event/ConsoleEvent.php create mode 100644 app/vendor/symfony/console/Event/ConsoleSignalEvent.php create mode 100644 app/vendor/symfony/console/Event/ConsoleTerminateEvent.php create mode 100644 app/vendor/symfony/console/EventListener/ErrorListener.php create mode 100644 app/vendor/symfony/console/Exception/CommandNotFoundException.php create mode 100644 app/vendor/symfony/console/Exception/ExceptionInterface.php create mode 100644 app/vendor/symfony/console/Exception/InvalidArgumentException.php create mode 100644 app/vendor/symfony/console/Exception/InvalidOptionException.php create mode 100644 app/vendor/symfony/console/Exception/LogicException.php create mode 100644 app/vendor/symfony/console/Exception/MissingInputException.php create mode 100644 app/vendor/symfony/console/Exception/NamespaceNotFoundException.php create mode 100644 app/vendor/symfony/console/Exception/RuntimeException.php create mode 100644 app/vendor/symfony/console/Formatter/NullOutputFormatter.php create mode 100644 app/vendor/symfony/console/Formatter/NullOutputFormatterStyle.php create mode 100644 app/vendor/symfony/console/Formatter/OutputFormatter.php create mode 100644 app/vendor/symfony/console/Formatter/OutputFormatterInterface.php create mode 100644 app/vendor/symfony/console/Formatter/OutputFormatterStyle.php create mode 100644 app/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php create mode 100644 app/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php create mode 100644 app/vendor/symfony/console/Formatter/WrappableOutputFormatterInterface.php create mode 100644 app/vendor/symfony/console/Helper/DebugFormatterHelper.php create mode 100644 app/vendor/symfony/console/Helper/DescriptorHelper.php create mode 100644 app/vendor/symfony/console/Helper/Dumper.php create mode 100644 app/vendor/symfony/console/Helper/FormatterHelper.php create mode 100644 app/vendor/symfony/console/Helper/Helper.php create mode 100644 app/vendor/symfony/console/Helper/HelperInterface.php create mode 100644 app/vendor/symfony/console/Helper/HelperSet.php create mode 100644 app/vendor/symfony/console/Helper/InputAwareHelper.php create mode 100644 app/vendor/symfony/console/Helper/ProcessHelper.php create mode 100644 app/vendor/symfony/console/Helper/ProgressBar.php create mode 100644 app/vendor/symfony/console/Helper/ProgressIndicator.php create mode 100644 app/vendor/symfony/console/Helper/QuestionHelper.php create mode 100644 app/vendor/symfony/console/Helper/SymfonyQuestionHelper.php create mode 100644 app/vendor/symfony/console/Helper/Table.php create mode 100644 app/vendor/symfony/console/Helper/TableCell.php create mode 100644 app/vendor/symfony/console/Helper/TableCellStyle.php create mode 100644 app/vendor/symfony/console/Helper/TableRows.php create mode 100644 app/vendor/symfony/console/Helper/TableSeparator.php create mode 100644 app/vendor/symfony/console/Helper/TableStyle.php create mode 100644 app/vendor/symfony/console/Input/ArgvInput.php create mode 100644 app/vendor/symfony/console/Input/ArrayInput.php create mode 100644 app/vendor/symfony/console/Input/Input.php create mode 100644 app/vendor/symfony/console/Input/InputArgument.php create mode 100644 app/vendor/symfony/console/Input/InputAwareInterface.php create mode 100644 app/vendor/symfony/console/Input/InputDefinition.php create mode 100644 app/vendor/symfony/console/Input/InputInterface.php create mode 100644 app/vendor/symfony/console/Input/InputOption.php create mode 100644 app/vendor/symfony/console/Input/StreamableInputInterface.php create mode 100644 app/vendor/symfony/console/Input/StringInput.php create mode 100644 app/vendor/symfony/console/LICENSE create mode 100644 app/vendor/symfony/console/Logger/ConsoleLogger.php create mode 100644 app/vendor/symfony/console/Output/BufferedOutput.php create mode 100644 app/vendor/symfony/console/Output/ConsoleOutput.php create mode 100644 app/vendor/symfony/console/Output/ConsoleOutputInterface.php create mode 100644 app/vendor/symfony/console/Output/ConsoleSectionOutput.php create mode 100644 app/vendor/symfony/console/Output/NullOutput.php create mode 100644 app/vendor/symfony/console/Output/Output.php create mode 100644 app/vendor/symfony/console/Output/OutputInterface.php create mode 100644 app/vendor/symfony/console/Output/StreamOutput.php create mode 100644 app/vendor/symfony/console/Output/TrimmedBufferOutput.php create mode 100644 app/vendor/symfony/console/Question/ChoiceQuestion.php create mode 100644 app/vendor/symfony/console/Question/ConfirmationQuestion.php create mode 100644 app/vendor/symfony/console/Question/Question.php create mode 100644 app/vendor/symfony/console/README.md create mode 100644 app/vendor/symfony/console/Resources/bin/hiddeninput.exe create mode 100644 app/vendor/symfony/console/SignalRegistry/SignalRegistry.php create mode 100644 app/vendor/symfony/console/SingleCommandApplication.php create mode 100644 app/vendor/symfony/console/Style/OutputStyle.php create mode 100644 app/vendor/symfony/console/Style/StyleInterface.php create mode 100644 app/vendor/symfony/console/Style/SymfonyStyle.php create mode 100644 app/vendor/symfony/console/Terminal.php create mode 100644 app/vendor/symfony/console/Tester/ApplicationTester.php create mode 100644 app/vendor/symfony/console/Tester/CommandTester.php create mode 100644 app/vendor/symfony/console/Tester/TesterTrait.php create mode 100644 app/vendor/symfony/console/composer.json create mode 100644 app/vendor/symfony/deprecation-contracts/.gitignore create mode 100644 app/vendor/symfony/deprecation-contracts/CHANGELOG.md create mode 100644 app/vendor/symfony/deprecation-contracts/LICENSE create mode 100644 app/vendor/symfony/deprecation-contracts/README.md create mode 100644 app/vendor/symfony/deprecation-contracts/composer.json create mode 100644 app/vendor/symfony/deprecation-contracts/function.php create mode 100644 app/vendor/symfony/filesystem/CHANGELOG.md create mode 100644 app/vendor/symfony/filesystem/Exception/ExceptionInterface.php create mode 100644 app/vendor/symfony/filesystem/Exception/FileNotFoundException.php create mode 100644 app/vendor/symfony/filesystem/Exception/IOException.php create mode 100644 app/vendor/symfony/filesystem/Exception/IOExceptionInterface.php create mode 100644 app/vendor/symfony/filesystem/Exception/InvalidArgumentException.php create mode 100644 app/vendor/symfony/filesystem/Filesystem.php create mode 100644 app/vendor/symfony/filesystem/LICENSE create mode 100644 app/vendor/symfony/filesystem/README.md create mode 100644 app/vendor/symfony/filesystem/composer.json create mode 100644 app/vendor/symfony/finder/CHANGELOG.md create mode 100644 app/vendor/symfony/finder/Comparator/Comparator.php create mode 100644 app/vendor/symfony/finder/Comparator/DateComparator.php create mode 100644 app/vendor/symfony/finder/Comparator/NumberComparator.php create mode 100644 app/vendor/symfony/finder/Exception/AccessDeniedException.php create mode 100644 app/vendor/symfony/finder/Exception/DirectoryNotFoundException.php create mode 100644 app/vendor/symfony/finder/Finder.php create mode 100644 app/vendor/symfony/finder/Gitignore.php create mode 100644 app/vendor/symfony/finder/Glob.php create mode 100644 app/vendor/symfony/finder/Iterator/CustomFilterIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/FilenameFilterIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/LazyIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/PathFilterIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php create mode 100644 app/vendor/symfony/finder/Iterator/SortableIterator.php create mode 100644 app/vendor/symfony/finder/LICENSE create mode 100644 app/vendor/symfony/finder/README.md create mode 100644 app/vendor/symfony/finder/SplFileInfo.php create mode 100644 app/vendor/symfony/finder/composer.json create mode 100644 app/vendor/symfony/polyfill-ctype/Ctype.php create mode 100644 app/vendor/symfony/polyfill-ctype/LICENSE create mode 100644 app/vendor/symfony/polyfill-ctype/README.md create mode 100644 app/vendor/symfony/polyfill-ctype/bootstrap.php create mode 100644 app/vendor/symfony/polyfill-ctype/bootstrap80.php create mode 100644 app/vendor/symfony/polyfill-ctype/composer.json create mode 100644 app/vendor/symfony/polyfill-intl-grapheme/Grapheme.php create mode 100644 app/vendor/symfony/polyfill-intl-grapheme/LICENSE create mode 100644 app/vendor/symfony/polyfill-intl-grapheme/README.md create mode 100644 app/vendor/symfony/polyfill-intl-grapheme/bootstrap.php create mode 100644 app/vendor/symfony/polyfill-intl-grapheme/bootstrap80.php create mode 100644 app/vendor/symfony/polyfill-intl-grapheme/composer.json create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/LICENSE create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/Normalizer.php create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/README.md create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/bootstrap.php create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php create mode 100644 app/vendor/symfony/polyfill-intl-normalizer/composer.json create mode 100644 app/vendor/symfony/polyfill-mbstring/LICENSE create mode 100644 app/vendor/symfony/polyfill-mbstring/Mbstring.php create mode 100644 app/vendor/symfony/polyfill-mbstring/README.md create mode 100644 app/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php create mode 100644 app/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php create mode 100644 app/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php create mode 100644 app/vendor/symfony/polyfill-mbstring/bootstrap.php create mode 100644 app/vendor/symfony/polyfill-mbstring/bootstrap80.php create mode 100644 app/vendor/symfony/polyfill-mbstring/composer.json create mode 100644 app/vendor/symfony/polyfill-php73/LICENSE create mode 100644 app/vendor/symfony/polyfill-php73/Php73.php create mode 100644 app/vendor/symfony/polyfill-php73/README.md create mode 100644 app/vendor/symfony/polyfill-php73/Resources/stubs/JsonException.php create mode 100644 app/vendor/symfony/polyfill-php73/bootstrap.php create mode 100644 app/vendor/symfony/polyfill-php73/composer.json create mode 100644 app/vendor/symfony/polyfill-php80/LICENSE create mode 100644 app/vendor/symfony/polyfill-php80/Php80.php create mode 100644 app/vendor/symfony/polyfill-php80/README.md create mode 100644 app/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php create mode 100644 app/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php create mode 100644 app/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php create mode 100644 app/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php create mode 100644 app/vendor/symfony/polyfill-php80/bootstrap.php create mode 100644 app/vendor/symfony/polyfill-php80/composer.json create mode 100644 app/vendor/symfony/polyfill-php81/LICENSE create mode 100644 app/vendor/symfony/polyfill-php81/Php81.php create mode 100644 app/vendor/symfony/polyfill-php81/README.md create mode 100644 app/vendor/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php create mode 100644 app/vendor/symfony/polyfill-php81/bootstrap.php create mode 100644 app/vendor/symfony/polyfill-php81/composer.json create mode 100644 app/vendor/symfony/process/CHANGELOG.md create mode 100644 app/vendor/symfony/process/Exception/ExceptionInterface.php create mode 100644 app/vendor/symfony/process/Exception/InvalidArgumentException.php create mode 100644 app/vendor/symfony/process/Exception/LogicException.php create mode 100644 app/vendor/symfony/process/Exception/ProcessFailedException.php create mode 100644 app/vendor/symfony/process/Exception/ProcessSignaledException.php create mode 100644 app/vendor/symfony/process/Exception/ProcessTimedOutException.php create mode 100644 app/vendor/symfony/process/Exception/RuntimeException.php create mode 100644 app/vendor/symfony/process/ExecutableFinder.php create mode 100644 app/vendor/symfony/process/InputStream.php create mode 100644 app/vendor/symfony/process/LICENSE create mode 100644 app/vendor/symfony/process/PhpExecutableFinder.php create mode 100644 app/vendor/symfony/process/PhpProcess.php create mode 100644 app/vendor/symfony/process/Pipes/AbstractPipes.php create mode 100644 app/vendor/symfony/process/Pipes/PipesInterface.php create mode 100644 app/vendor/symfony/process/Pipes/UnixPipes.php create mode 100644 app/vendor/symfony/process/Pipes/WindowsPipes.php create mode 100644 app/vendor/symfony/process/Process.php create mode 100644 app/vendor/symfony/process/ProcessUtils.php create mode 100644 app/vendor/symfony/process/README.md create mode 100644 app/vendor/symfony/process/composer.json create mode 100644 app/vendor/symfony/service-contracts/.gitignore create mode 100644 app/vendor/symfony/service-contracts/Attribute/Required.php create mode 100644 app/vendor/symfony/service-contracts/CHANGELOG.md create mode 100644 app/vendor/symfony/service-contracts/LICENSE create mode 100644 app/vendor/symfony/service-contracts/README.md create mode 100644 app/vendor/symfony/service-contracts/ResetInterface.php create mode 100644 app/vendor/symfony/service-contracts/ServiceLocatorTrait.php create mode 100644 app/vendor/symfony/service-contracts/ServiceProviderInterface.php create mode 100644 app/vendor/symfony/service-contracts/ServiceSubscriberInterface.php create mode 100644 app/vendor/symfony/service-contracts/ServiceSubscriberTrait.php create mode 100644 app/vendor/symfony/service-contracts/Test/ServiceLocatorTest.php create mode 100644 app/vendor/symfony/service-contracts/composer.json create mode 100644 app/vendor/symfony/string/AbstractString.php create mode 100644 app/vendor/symfony/string/AbstractUnicodeString.php create mode 100644 app/vendor/symfony/string/ByteString.php create mode 100644 app/vendor/symfony/string/CHANGELOG.md create mode 100644 app/vendor/symfony/string/CodePointString.php create mode 100644 app/vendor/symfony/string/Exception/ExceptionInterface.php create mode 100644 app/vendor/symfony/string/Exception/InvalidArgumentException.php create mode 100644 app/vendor/symfony/string/Exception/RuntimeException.php create mode 100644 app/vendor/symfony/string/Inflector/EnglishInflector.php create mode 100644 app/vendor/symfony/string/Inflector/FrenchInflector.php create mode 100644 app/vendor/symfony/string/Inflector/InflectorInterface.php create mode 100644 app/vendor/symfony/string/LICENSE create mode 100644 app/vendor/symfony/string/LazyString.php create mode 100644 app/vendor/symfony/string/README.md create mode 100644 app/vendor/symfony/string/Resources/data/wcswidth_table_wide.php create mode 100644 app/vendor/symfony/string/Resources/data/wcswidth_table_zero.php create mode 100644 app/vendor/symfony/string/Resources/functions.php create mode 100644 app/vendor/symfony/string/Slugger/AsciiSlugger.php create mode 100644 app/vendor/symfony/string/Slugger/SluggerInterface.php create mode 100644 app/vendor/symfony/string/UnicodeString.php create mode 100644 app/vendor/symfony/string/composer.json create mode 100644 app/vendor/symfony/var-dumper/CHANGELOG.md create mode 100644 app/vendor/symfony/var-dumper/Caster/AmqpCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/ArgsStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/Caster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/ClassStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/ConstStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/CutArrayStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/CutStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/DOMCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/DateCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/DoctrineCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/DsCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/DsPairStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/EnumStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/ExceptionCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/FrameStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/GmpCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/ImagineCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/ImgStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/IntlCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/LinkStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/MemcachedCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/PdoCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/PgSqlCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/ProxyManagerCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/RdKafkaCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/RedisCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/ReflectionCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/ResourceCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/SplCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/StubCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/SymfonyCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/TraceStub.php create mode 100644 app/vendor/symfony/var-dumper/Caster/UuidCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/XmlReaderCaster.php create mode 100644 app/vendor/symfony/var-dumper/Caster/XmlResourceCaster.php create mode 100644 app/vendor/symfony/var-dumper/Cloner/AbstractCloner.php create mode 100644 app/vendor/symfony/var-dumper/Cloner/ClonerInterface.php create mode 100644 app/vendor/symfony/var-dumper/Cloner/Cursor.php create mode 100644 app/vendor/symfony/var-dumper/Cloner/Data.php create mode 100644 app/vendor/symfony/var-dumper/Cloner/DumperInterface.php create mode 100644 app/vendor/symfony/var-dumper/Cloner/Stub.php create mode 100644 app/vendor/symfony/var-dumper/Cloner/VarCloner.php create mode 100644 app/vendor/symfony/var-dumper/Command/Descriptor/CliDescriptor.php create mode 100644 app/vendor/symfony/var-dumper/Command/Descriptor/DumpDescriptorInterface.php create mode 100644 app/vendor/symfony/var-dumper/Command/Descriptor/HtmlDescriptor.php create mode 100644 app/vendor/symfony/var-dumper/Command/ServerDumpCommand.php create mode 100644 app/vendor/symfony/var-dumper/Dumper/AbstractDumper.php create mode 100644 app/vendor/symfony/var-dumper/Dumper/CliDumper.php create mode 100644 app/vendor/symfony/var-dumper/Dumper/ContextProvider/CliContextProvider.php create mode 100644 app/vendor/symfony/var-dumper/Dumper/ContextProvider/ContextProviderInterface.php create mode 100644 app/vendor/symfony/var-dumper/Dumper/ContextProvider/RequestContextProvider.php create mode 100644 app/vendor/symfony/var-dumper/Dumper/ContextProvider/SourceContextProvider.php create mode 100644 app/vendor/symfony/var-dumper/Dumper/ContextualizedDumper.php create mode 100644 app/vendor/symfony/var-dumper/Dumper/DataDumperInterface.php create mode 100644 app/vendor/symfony/var-dumper/Dumper/HtmlDumper.php create mode 100644 app/vendor/symfony/var-dumper/Dumper/ServerDumper.php create mode 100644 app/vendor/symfony/var-dumper/Exception/ThrowingCasterException.php create mode 100644 app/vendor/symfony/var-dumper/LICENSE create mode 100644 app/vendor/symfony/var-dumper/README.md create mode 100755 app/vendor/symfony/var-dumper/Resources/bin/var-dump-server create mode 100644 app/vendor/symfony/var-dumper/Resources/css/htmlDescriptor.css create mode 100644 app/vendor/symfony/var-dumper/Resources/functions/dump.php create mode 100644 app/vendor/symfony/var-dumper/Resources/js/htmlDescriptor.js create mode 100644 app/vendor/symfony/var-dumper/Server/Connection.php create mode 100644 app/vendor/symfony/var-dumper/Server/DumpServer.php create mode 100644 app/vendor/symfony/var-dumper/Test/VarDumperTestTrait.php create mode 100644 app/vendor/symfony/var-dumper/VarDumper.php create mode 100644 app/vendor/symfony/var-dumper/composer.json create mode 100644 app/vendor/theseer/tokenizer/.php_cs.dist create mode 100644 app/vendor/theseer/tokenizer/CHANGELOG.md create mode 100644 app/vendor/theseer/tokenizer/LICENSE create mode 100644 app/vendor/theseer/tokenizer/README.md create mode 100644 app/vendor/theseer/tokenizer/composer.json create mode 100644 app/vendor/theseer/tokenizer/src/Exception.php create mode 100644 app/vendor/theseer/tokenizer/src/NamespaceUri.php create mode 100644 app/vendor/theseer/tokenizer/src/NamespaceUriException.php create mode 100644 app/vendor/theseer/tokenizer/src/Token.php create mode 100644 app/vendor/theseer/tokenizer/src/TokenCollection.php create mode 100644 app/vendor/theseer/tokenizer/src/TokenCollectionException.php create mode 100644 app/vendor/theseer/tokenizer/src/Tokenizer.php create mode 100644 app/vendor/theseer/tokenizer/src/XMLSerializer.php create mode 100644 app/vendor/twig/markdown-extra/.gitattributes create mode 100644 app/vendor/twig/markdown-extra/.gitignore create mode 100644 app/vendor/twig/markdown-extra/DefaultMarkdown.php create mode 100644 app/vendor/twig/markdown-extra/ErusevMarkdown.php create mode 100644 app/vendor/twig/markdown-extra/LICENSE create mode 100644 app/vendor/twig/markdown-extra/LeagueMarkdown.php create mode 100644 app/vendor/twig/markdown-extra/MarkdownExtension.php create mode 100644 app/vendor/twig/markdown-extra/MarkdownInterface.php create mode 100644 app/vendor/twig/markdown-extra/MarkdownRuntime.php create mode 100644 app/vendor/twig/markdown-extra/MichelfMarkdown.php create mode 100644 app/vendor/twig/markdown-extra/README.md create mode 100644 app/vendor/twig/markdown-extra/composer.json create mode 100644 app/vendor/twig/twig/.editorconfig create mode 100644 app/vendor/twig/twig/.gitattributes create mode 100644 app/vendor/twig/twig/.github/workflows/ci.yml create mode 100644 app/vendor/twig/twig/.github/workflows/documentation.yml create mode 100644 app/vendor/twig/twig/.gitignore create mode 100644 app/vendor/twig/twig/.php-cs-fixer.dist.php create mode 100644 app/vendor/twig/twig/CHANGELOG create mode 100644 app/vendor/twig/twig/LICENSE create mode 100644 app/vendor/twig/twig/README.rst create mode 100644 app/vendor/twig/twig/composer.json create mode 100644 app/vendor/twig/twig/doc/.doctor-rst.yaml create mode 100644 app/vendor/twig/twig/doc/_build/.requirements.txt create mode 100644 app/vendor/twig/twig/doc/_build/Makefile create mode 100644 app/vendor/twig/twig/doc/_build/conf.py create mode 100644 app/vendor/twig/twig/doc/advanced.rst create mode 100644 app/vendor/twig/twig/doc/api.rst create mode 100644 app/vendor/twig/twig/doc/coding_standards.rst create mode 100644 app/vendor/twig/twig/doc/deprecated.rst create mode 100644 app/vendor/twig/twig/doc/filters/abs.rst create mode 100644 app/vendor/twig/twig/doc/filters/batch.rst create mode 100644 app/vendor/twig/twig/doc/filters/capitalize.rst create mode 100644 app/vendor/twig/twig/doc/filters/column.rst create mode 100644 app/vendor/twig/twig/doc/filters/convert_encoding.rst create mode 100644 app/vendor/twig/twig/doc/filters/country_name.rst create mode 100644 app/vendor/twig/twig/doc/filters/currency_name.rst create mode 100644 app/vendor/twig/twig/doc/filters/currency_symbol.rst create mode 100644 app/vendor/twig/twig/doc/filters/data_uri.rst create mode 100644 app/vendor/twig/twig/doc/filters/date.rst create mode 100644 app/vendor/twig/twig/doc/filters/date_modify.rst create mode 100644 app/vendor/twig/twig/doc/filters/default.rst create mode 100644 app/vendor/twig/twig/doc/filters/escape.rst create mode 100644 app/vendor/twig/twig/doc/filters/filter.rst create mode 100644 app/vendor/twig/twig/doc/filters/first.rst create mode 100644 app/vendor/twig/twig/doc/filters/format.rst create mode 100644 app/vendor/twig/twig/doc/filters/format_currency.rst create mode 100644 app/vendor/twig/twig/doc/filters/format_date.rst create mode 100644 app/vendor/twig/twig/doc/filters/format_datetime.rst create mode 100644 app/vendor/twig/twig/doc/filters/format_number.rst create mode 100644 app/vendor/twig/twig/doc/filters/format_time.rst create mode 100644 app/vendor/twig/twig/doc/filters/html_to_markdown.rst create mode 100644 app/vendor/twig/twig/doc/filters/index.rst create mode 100644 app/vendor/twig/twig/doc/filters/inky_to_html.rst create mode 100644 app/vendor/twig/twig/doc/filters/inline_css.rst create mode 100644 app/vendor/twig/twig/doc/filters/join.rst create mode 100644 app/vendor/twig/twig/doc/filters/json_encode.rst create mode 100644 app/vendor/twig/twig/doc/filters/keys.rst create mode 100644 app/vendor/twig/twig/doc/filters/language_name.rst create mode 100644 app/vendor/twig/twig/doc/filters/last.rst create mode 100644 app/vendor/twig/twig/doc/filters/length.rst create mode 100644 app/vendor/twig/twig/doc/filters/locale_name.rst create mode 100644 app/vendor/twig/twig/doc/filters/lower.rst create mode 100644 app/vendor/twig/twig/doc/filters/map.rst create mode 100644 app/vendor/twig/twig/doc/filters/markdown_to_html.rst create mode 100644 app/vendor/twig/twig/doc/filters/merge.rst create mode 100644 app/vendor/twig/twig/doc/filters/nl2br.rst create mode 100644 app/vendor/twig/twig/doc/filters/number_format.rst create mode 100644 app/vendor/twig/twig/doc/filters/raw.rst create mode 100644 app/vendor/twig/twig/doc/filters/reduce.rst create mode 100644 app/vendor/twig/twig/doc/filters/replace.rst create mode 100644 app/vendor/twig/twig/doc/filters/reverse.rst create mode 100644 app/vendor/twig/twig/doc/filters/round.rst create mode 100644 app/vendor/twig/twig/doc/filters/slice.rst create mode 100644 app/vendor/twig/twig/doc/filters/slug.rst create mode 100644 app/vendor/twig/twig/doc/filters/sort.rst create mode 100644 app/vendor/twig/twig/doc/filters/spaceless.rst create mode 100644 app/vendor/twig/twig/doc/filters/split.rst create mode 100644 app/vendor/twig/twig/doc/filters/striptags.rst create mode 100644 app/vendor/twig/twig/doc/filters/timezone_name.rst create mode 100644 app/vendor/twig/twig/doc/filters/title.rst create mode 100644 app/vendor/twig/twig/doc/filters/trim.rst create mode 100644 app/vendor/twig/twig/doc/filters/u.rst create mode 100644 app/vendor/twig/twig/doc/filters/upper.rst create mode 100644 app/vendor/twig/twig/doc/filters/url_encode.rst create mode 100644 app/vendor/twig/twig/doc/functions/attribute.rst create mode 100644 app/vendor/twig/twig/doc/functions/block.rst create mode 100644 app/vendor/twig/twig/doc/functions/constant.rst create mode 100644 app/vendor/twig/twig/doc/functions/country_timezones.rst create mode 100644 app/vendor/twig/twig/doc/functions/cycle.rst create mode 100644 app/vendor/twig/twig/doc/functions/date.rst create mode 100644 app/vendor/twig/twig/doc/functions/dump.rst create mode 100644 app/vendor/twig/twig/doc/functions/html_classes.rst create mode 100644 app/vendor/twig/twig/doc/functions/include.rst create mode 100644 app/vendor/twig/twig/doc/functions/index.rst create mode 100644 app/vendor/twig/twig/doc/functions/max.rst create mode 100644 app/vendor/twig/twig/doc/functions/min.rst create mode 100644 app/vendor/twig/twig/doc/functions/parent.rst create mode 100644 app/vendor/twig/twig/doc/functions/random.rst create mode 100644 app/vendor/twig/twig/doc/functions/range.rst create mode 100644 app/vendor/twig/twig/doc/functions/source.rst create mode 100644 app/vendor/twig/twig/doc/functions/template_from_string.rst create mode 100644 app/vendor/twig/twig/doc/index.rst create mode 100644 app/vendor/twig/twig/doc/installation.rst create mode 100644 app/vendor/twig/twig/doc/internals.rst create mode 100644 app/vendor/twig/twig/doc/intro.rst create mode 100644 app/vendor/twig/twig/doc/recipes.rst create mode 100644 app/vendor/twig/twig/doc/tags/apply.rst create mode 100644 app/vendor/twig/twig/doc/tags/autoescape.rst create mode 100644 app/vendor/twig/twig/doc/tags/block.rst create mode 100644 app/vendor/twig/twig/doc/tags/cache.rst create mode 100644 app/vendor/twig/twig/doc/tags/deprecated.rst create mode 100644 app/vendor/twig/twig/doc/tags/do.rst create mode 100644 app/vendor/twig/twig/doc/tags/embed.rst create mode 100644 app/vendor/twig/twig/doc/tags/extends.rst create mode 100644 app/vendor/twig/twig/doc/tags/flush.rst create mode 100644 app/vendor/twig/twig/doc/tags/for.rst create mode 100644 app/vendor/twig/twig/doc/tags/from.rst create mode 100644 app/vendor/twig/twig/doc/tags/if.rst create mode 100644 app/vendor/twig/twig/doc/tags/import.rst create mode 100644 app/vendor/twig/twig/doc/tags/include.rst create mode 100644 app/vendor/twig/twig/doc/tags/index.rst create mode 100644 app/vendor/twig/twig/doc/tags/macro.rst create mode 100644 app/vendor/twig/twig/doc/tags/sandbox.rst create mode 100644 app/vendor/twig/twig/doc/tags/set.rst create mode 100644 app/vendor/twig/twig/doc/tags/use.rst create mode 100644 app/vendor/twig/twig/doc/tags/verbatim.rst create mode 100644 app/vendor/twig/twig/doc/tags/with.rst create mode 100644 app/vendor/twig/twig/doc/templates.rst create mode 100644 app/vendor/twig/twig/doc/tests/constant.rst create mode 100644 app/vendor/twig/twig/doc/tests/defined.rst create mode 100644 app/vendor/twig/twig/doc/tests/divisibleby.rst create mode 100644 app/vendor/twig/twig/doc/tests/empty.rst create mode 100644 app/vendor/twig/twig/doc/tests/even.rst create mode 100644 app/vendor/twig/twig/doc/tests/index.rst create mode 100644 app/vendor/twig/twig/doc/tests/iterable.rst create mode 100644 app/vendor/twig/twig/doc/tests/null.rst create mode 100644 app/vendor/twig/twig/doc/tests/odd.rst create mode 100644 app/vendor/twig/twig/doc/tests/sameas.rst create mode 100755 app/vendor/twig/twig/drupal_test.sh create mode 100644 app/vendor/twig/twig/src/Cache/CacheInterface.php create mode 100644 app/vendor/twig/twig/src/Cache/FilesystemCache.php create mode 100644 app/vendor/twig/twig/src/Cache/NullCache.php create mode 100644 app/vendor/twig/twig/src/Compiler.php create mode 100644 app/vendor/twig/twig/src/Environment.php create mode 100644 app/vendor/twig/twig/src/Error/Error.php create mode 100644 app/vendor/twig/twig/src/Error/LoaderError.php create mode 100644 app/vendor/twig/twig/src/Error/RuntimeError.php create mode 100644 app/vendor/twig/twig/src/Error/SyntaxError.php create mode 100644 app/vendor/twig/twig/src/ExpressionParser.php create mode 100644 app/vendor/twig/twig/src/Extension/AbstractExtension.php create mode 100644 app/vendor/twig/twig/src/Extension/CoreExtension.php create mode 100644 app/vendor/twig/twig/src/Extension/DebugExtension.php create mode 100644 app/vendor/twig/twig/src/Extension/EscaperExtension.php create mode 100644 app/vendor/twig/twig/src/Extension/ExtensionInterface.php create mode 100644 app/vendor/twig/twig/src/Extension/GlobalsInterface.php create mode 100644 app/vendor/twig/twig/src/Extension/OptimizerExtension.php create mode 100644 app/vendor/twig/twig/src/Extension/ProfilerExtension.php create mode 100644 app/vendor/twig/twig/src/Extension/RuntimeExtensionInterface.php create mode 100644 app/vendor/twig/twig/src/Extension/SandboxExtension.php create mode 100644 app/vendor/twig/twig/src/Extension/StagingExtension.php create mode 100644 app/vendor/twig/twig/src/Extension/StringLoaderExtension.php create mode 100644 app/vendor/twig/twig/src/ExtensionSet.php create mode 100644 app/vendor/twig/twig/src/FileExtensionEscapingStrategy.php create mode 100644 app/vendor/twig/twig/src/Lexer.php create mode 100644 app/vendor/twig/twig/src/Loader/ArrayLoader.php create mode 100644 app/vendor/twig/twig/src/Loader/ChainLoader.php create mode 100644 app/vendor/twig/twig/src/Loader/FilesystemLoader.php create mode 100644 app/vendor/twig/twig/src/Loader/LoaderInterface.php create mode 100644 app/vendor/twig/twig/src/Markup.php create mode 100644 app/vendor/twig/twig/src/Node/AutoEscapeNode.php create mode 100644 app/vendor/twig/twig/src/Node/BlockNode.php create mode 100644 app/vendor/twig/twig/src/Node/BlockReferenceNode.php create mode 100644 app/vendor/twig/twig/src/Node/BodyNode.php create mode 100644 app/vendor/twig/twig/src/Node/CheckSecurityCallNode.php create mode 100644 app/vendor/twig/twig/src/Node/CheckSecurityNode.php create mode 100644 app/vendor/twig/twig/src/Node/CheckToStringNode.php create mode 100644 app/vendor/twig/twig/src/Node/DeprecatedNode.php create mode 100644 app/vendor/twig/twig/src/Node/DoNode.php create mode 100644 app/vendor/twig/twig/src/Node/EmbedNode.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/AbstractExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/ArrayExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/ArrowFunctionExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/AssignNameExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/AbstractBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/AddBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/AndBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/ConcatBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/DivBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/EqualBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/GreaterBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/InBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/LessBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/MatchesBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/ModBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/MulBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/NotInBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/OrBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/PowerBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/RangeBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/SpaceshipBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Binary/SubBinary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/BlockReferenceExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/CallExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/ConditionalExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/ConstantExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Filter/DefaultFilter.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/FilterExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/FunctionExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/GetAttrExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/InlinePrint.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/MethodCallExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/NameExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/NullCoalesceExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/ParentExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/TempNameExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Test/ConstantTest.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Test/DefinedTest.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Test/EvenTest.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Test/NullTest.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Test/OddTest.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Test/SameasTest.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/TestExpression.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Unary/AbstractUnary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Unary/NegUnary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Unary/NotUnary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/Unary/PosUnary.php create mode 100644 app/vendor/twig/twig/src/Node/Expression/VariadicExpression.php create mode 100644 app/vendor/twig/twig/src/Node/FlushNode.php create mode 100644 app/vendor/twig/twig/src/Node/ForLoopNode.php create mode 100644 app/vendor/twig/twig/src/Node/ForNode.php create mode 100644 app/vendor/twig/twig/src/Node/IfNode.php create mode 100644 app/vendor/twig/twig/src/Node/ImportNode.php create mode 100644 app/vendor/twig/twig/src/Node/IncludeNode.php create mode 100644 app/vendor/twig/twig/src/Node/MacroNode.php create mode 100644 app/vendor/twig/twig/src/Node/ModuleNode.php create mode 100644 app/vendor/twig/twig/src/Node/Node.php create mode 100644 app/vendor/twig/twig/src/Node/NodeCaptureInterface.php create mode 100644 app/vendor/twig/twig/src/Node/NodeOutputInterface.php create mode 100644 app/vendor/twig/twig/src/Node/PrintNode.php create mode 100644 app/vendor/twig/twig/src/Node/SandboxNode.php create mode 100644 app/vendor/twig/twig/src/Node/SetNode.php create mode 100644 app/vendor/twig/twig/src/Node/TextNode.php create mode 100644 app/vendor/twig/twig/src/Node/WithNode.php create mode 100644 app/vendor/twig/twig/src/NodeTraverser.php create mode 100644 app/vendor/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php create mode 100644 app/vendor/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php create mode 100644 app/vendor/twig/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php create mode 100644 app/vendor/twig/twig/src/NodeVisitor/NodeVisitorInterface.php create mode 100644 app/vendor/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php create mode 100644 app/vendor/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php create mode 100644 app/vendor/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php create mode 100644 app/vendor/twig/twig/src/Parser.php create mode 100644 app/vendor/twig/twig/src/Profiler/Dumper/BaseDumper.php create mode 100644 app/vendor/twig/twig/src/Profiler/Dumper/BlackfireDumper.php create mode 100644 app/vendor/twig/twig/src/Profiler/Dumper/HtmlDumper.php create mode 100644 app/vendor/twig/twig/src/Profiler/Dumper/TextDumper.php create mode 100644 app/vendor/twig/twig/src/Profiler/Node/EnterProfileNode.php create mode 100644 app/vendor/twig/twig/src/Profiler/Node/LeaveProfileNode.php create mode 100644 app/vendor/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php create mode 100644 app/vendor/twig/twig/src/Profiler/Profile.php create mode 100644 app/vendor/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php create mode 100644 app/vendor/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php create mode 100644 app/vendor/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php create mode 100644 app/vendor/twig/twig/src/Sandbox/SecurityError.php create mode 100644 app/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php create mode 100644 app/vendor/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php create mode 100644 app/vendor/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php create mode 100644 app/vendor/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php create mode 100644 app/vendor/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php create mode 100644 app/vendor/twig/twig/src/Sandbox/SecurityPolicy.php create mode 100644 app/vendor/twig/twig/src/Sandbox/SecurityPolicyInterface.php create mode 100644 app/vendor/twig/twig/src/Source.php create mode 100644 app/vendor/twig/twig/src/Template.php create mode 100644 app/vendor/twig/twig/src/TemplateWrapper.php create mode 100644 app/vendor/twig/twig/src/Test/IntegrationTestCase.php create mode 100644 app/vendor/twig/twig/src/Test/NodeTestCase.php create mode 100644 app/vendor/twig/twig/src/Token.php create mode 100644 app/vendor/twig/twig/src/TokenParser/AbstractTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/ApplyTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/AutoEscapeTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/BlockTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/DeprecatedTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/DoTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/EmbedTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/ExtendsTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/FlushTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/ForTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/FromTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/IfTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/ImportTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/IncludeTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/MacroTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/SandboxTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/SetTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/TokenParserInterface.php create mode 100644 app/vendor/twig/twig/src/TokenParser/UseTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenParser/WithTokenParser.php create mode 100644 app/vendor/twig/twig/src/TokenStream.php create mode 100644 app/vendor/twig/twig/src/TwigFilter.php create mode 100644 app/vendor/twig/twig/src/TwigFunction.php create mode 100644 app/vendor/twig/twig/src/TwigTest.php create mode 100644 app/vendor/twig/twig/src/Util/DeprecationCollector.php create mode 100644 app/vendor/twig/twig/src/Util/TemplateDirIterator.php create mode 100644 app/vendor/webmozart/assert/.editorconfig create mode 100644 app/vendor/webmozart/assert/.github/workflows/ci.yaml create mode 100644 app/vendor/webmozart/assert/.php_cs create mode 100644 app/vendor/webmozart/assert/CHANGELOG.md create mode 100644 app/vendor/webmozart/assert/LICENSE create mode 100644 app/vendor/webmozart/assert/README.md create mode 100644 app/vendor/webmozart/assert/composer.json create mode 100644 app/vendor/webmozart/assert/psalm.xml create mode 100644 app/vendor/webmozart/assert/src/Assert.php create mode 100644 app/vendor/webmozart/assert/src/InvalidArgumentException.php create mode 100644 app/vendor/webmozart/assert/src/Mixin.php diff --git a/app/vendor/.gitkeep b/app/vendor/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/app/vendor/autoload.php b/app/vendor/autoload.php new file mode 100644 index 000000000..3e8e561ee --- /dev/null +++ b/app/vendor/autoload.php @@ -0,0 +1,7 @@ + child object id => path where the object first appeared. + * + * @var array> + */ + private $visitedObjects = []; + + /** + * @psalm-readonly + * + * @var bool + */ + public $addTypeHints; + + /** + * @psalm-readonly + * + * @var bool + */ + public $skipDynamicProperties; + + /** + * @psalm-readonly + * + * @var bool + */ + public $inlineNumericScalarArray; + + /** + * @psalm-readonly + * + * @var bool + */ + public $closureSnapshotUses; + + /** + * @psalm-readonly + * + * @var bool + */ + public $trailingCommaInArray; + + /** + * @psalm-readonly + * + * @var int + */ + public $indentLevel; + + /** + * @param int $options + * @param int Indentation level + */ + public function __construct(int $options, int $indentLevel = 0) + { + $this->objectExporters[] = new ObjectExporter\StdClassExporter($this); + + if (! ($options & VarExporter::NO_CLOSURES)) { + $this->objectExporters[] = new ObjectExporter\ClosureExporter($this); + } + + if (! ($options & VarExporter::NO_SET_STATE)) { + $this->objectExporters[] = new ObjectExporter\SetStateExporter($this); + } + + $this->objectExporters[] = new ObjectExporter\InternalClassExporter($this); + + if (! ($options & VarExporter::NO_SERIALIZE)) { + $this->objectExporters[] = new ObjectExporter\SerializeExporter($this); + } + + if (! ($options & VarExporter::NOT_ANY_OBJECT)) { + $this->objectExporters[] = new ObjectExporter\AnyObjectExporter($this); + } + + $this->addTypeHints = (bool) ($options & VarExporter::ADD_TYPE_HINTS); + $this->skipDynamicProperties = (bool) ($options & VarExporter::SKIP_DYNAMIC_PROPERTIES); + $this->inlineNumericScalarArray = (bool) ($options & VarExporter::INLINE_NUMERIC_SCALAR_ARRAY); + $this->closureSnapshotUses = (bool) ($options & VarExporter::CLOSURE_SNAPSHOT_USES); + $this->trailingCommaInArray = (bool) ($options & VarExporter::TRAILING_COMMA_IN_ARRAY); + + $this->indentLevel = $indentLevel; + } + + /** + * @param mixed $var The variable to export. + * @param string[] $path The path to the current variable in the array/object graph. + * @param int[] $parentIds The ids of all objects higher in the graph. + * + * @return string[] The lines of code. + * + * @throws ExportException + */ + public function export($var, array $path, array $parentIds) : array + { + switch ($type = gettype($var)) { + case 'boolean': + case 'integer': + case 'double': + case 'string': + return [var_export($var, true)]; + + case 'NULL': + // lowercase null + return ['null']; + + case 'array': + /** @var array $var */ + return $this->exportArray($var, $path, $parentIds); + + case 'object': + /** @var object $var */ + return $this->exportObject($var, $path, $parentIds); + + default: + // resources + throw new ExportException(sprintf('Type "%s" is not supported.', $type), $path); + } + } + + /** + * @psalm-suppress MixedAssignment + * + * @param array $array The array to export. + * @param string[] $path The path to the current array in the array/object graph. + * @param int[] $parentIds The ids of all objects higher in the graph. + * + * @return string[] The lines of code. + * + * @throws ExportException + */ + public function exportArray(array $array, array $path, array $parentIds) : array + { + if (! $array) { + return ['[]']; + } + + $result = []; + + $count = count($array); + $isNumeric = array_keys($array) === range(0, $count - 1); + + $current = 0; + + $inline = ($this->inlineNumericScalarArray && $isNumeric && $this->isScalarArray($array)); + + foreach ($array as $key => $value) { + $isLast = (++$current === $count); + + $newPath = $path; + $newPath[] = (string) $key; + + $exported = $this->export($value, $newPath, $parentIds); + + if ($inline) { + $result[] = $exported[0]; + } else { + $prepend = ''; + $append = ''; + + if (! $isNumeric) { + $prepend = var_export($key, true) . ' => '; + } + + if (! $isLast || $this->trailingCommaInArray) { + $append = ','; + } + + $exported = $this->wrap($exported, $prepend, $append); + $exported = $this->indent($exported); + + $result = array_merge($result, $exported); + } + } + + if ($inline) { + return ['[' . implode(', ', $result) . ']']; + } + + array_unshift($result, '['); + $result[] = ']'; + + return $result; + } + + /** + * Returns whether the given array only contains scalar values. + * + * Types considered scalar here are int, bool, float, string and null. + * If the array is empty, this method returns true. + * + * @param array $array + * + * @return bool + */ + private function isScalarArray(array $array) : bool + { + foreach ($array as $value) { + if ($value !== null && ! is_scalar($value)) { + return false; + } + } + + return true; + } + + /** + * @param object $object The object to export. + * @param string[] $path The path to the current object in the array/object graph. + * @param int[] $parentIds The ids of all objects higher in the graph. + * + * @return string[] The lines of code. + * + * @throws ExportException + */ + public function exportObject(object $object, array $path, array $parentIds) : array + { + $id = spl_object_id($object); + + foreach ($parentIds as $parentId) { + if (isset($this->visitedObjects[$parentId][$id])) { + throw new ExportException(sprintf( + 'Object of class "%s" has a circular reference at %s. ' . + 'Circular references are currently not supported.', + get_class($object), + ExportException::pathToString($this->visitedObjects[$parentId][$id]) + ), $path); + } + + $this->visitedObjects[$parentId][$id] = $path; + } + + $reflectionObject = new \ReflectionObject($object); + + foreach ($this->objectExporters as $objectExporter) { + if ($objectExporter->supports($reflectionObject)) { + return $objectExporter->export($object, $reflectionObject, $path, $parentIds); + } + } + + // This may only happen when an option is given to disallow specific export methods. + + $className = $reflectionObject->getName(); + + throw new ExportException('Class "' . $className . '" cannot be exported using the current options.', $path); + } + + /** + * Indents every non-empty line. + * + * @param string[] $lines The lines of code. + * + * @return string[] The indented lines of code. + */ + public function indent(array $lines) : array + { + foreach ($lines as & $value) { + if ($value !== '') { + $value = ' ' . $value; + } + } + + return $lines; + } + + /** + * @param string[] $lines The lines of code. + * @param string $prepend The string to prepend to the first line. + * @param string $append The string to append to the last line. + * + * @return string[] + */ + public function wrap(array $lines, string $prepend, string $append) : array + { + $lines[0] = $prepend . $lines[0]; + $lines[count($lines) - 1] .= $append; + + return $lines; + } +} diff --git a/app/vendor/brick/varexporter/src/Internal/ObjectExporter.php b/app/vendor/brick/varexporter/src/Internal/ObjectExporter.php new file mode 100644 index 000000000..9b34614ee --- /dev/null +++ b/app/vendor/brick/varexporter/src/Internal/ObjectExporter.php @@ -0,0 +1,96 @@ +exporter = $exporter; + } + + /** + * Returns whether this exporter supports the given object. + * + * @param \ReflectionObject $reflectionObject A reflection of the object. + * + * @return bool + */ + abstract public function supports(\ReflectionObject $reflectionObject) : bool; + + /** + * Exports the given object. + * + * @param object $object The object to export. + * @param \ReflectionObject $reflectionObject A reflection of the object. + * @param string[] $path The path to the current object in the array/object graph. + * @param int[] $parentIds The ids of all objects higher in the graph. + * + * @return string[] The lines of code. + * + * @throws ExportException + */ + abstract public function export(object $object, \ReflectionObject $reflectionObject, array $path, array $parentIds) : array; + + /** + * Returns the code to create a new object of the given class. + * + * If the class has a constructor, reflection will be used to bypass it. + * + * @param \ReflectionClass $class + * + * @return string[] The lines of code. + */ + final protected function getCreateObjectCode(\ReflectionClass $class) : array + { + $className = '\\' . $class->getName(); + + if ($class->getConstructor() === null) { + return ['$object = new ' . $className . ';']; + } + + $lines = ['$class = new \ReflectionClass(' . $className . '::class);']; + + if ($this->exporter->addTypeHints) { + $lines[] = ''; + $lines[] = '/** @var ' . $className . ' $object */'; + } + + $lines[] = '$object = $class->newInstanceWithoutConstructor();'; + + return $lines; + } + + /** + * Wraps the given PHP code in a static closure. + * + * @param string[] $code The lines of code. + * + * @return string[] The lines of code, wrapped in a closure. + */ + final protected function wrapInClosure(array $code) : array + { + return array_merge( + ['(static function() {'], + $this->exporter->indent($code), + ['})()'] + ); + } +} diff --git a/app/vendor/brick/varexporter/src/Internal/ObjectExporter/AnyObjectExporter.php b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/AnyObjectExporter.php new file mode 100644 index 000000000..5449e71ab --- /dev/null +++ b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/AnyObjectExporter.php @@ -0,0 +1,191 @@ +getCreateObjectCode($reflectionObject); + + $objectAsArray = (array) $object; + + $current = $this->exporter->skipDynamicProperties + ? new \ReflectionClass($object) // properties from class definition only + : $reflectionObject; // properties from class definition + dynamic properties + + $isParentClass = false; + + $returnNewObject = ($reflectionObject->getConstructor() === null); + + while ($current) { + $publicProperties = []; + $nonPublicProperties = []; + $unsetPublicProperties = []; + $unsetNonPublicProperties = []; + + foreach ($current->getProperties() as $property) { + if ($property->isStatic()) { + continue; + } + + if ($isParentClass && ! $property->isPrivate()) { + // property already handled in the child class. + continue; + } + + $name = $property->getName(); + + // getting the property value through the object to array cast, and not through reflection, as this is + // currently the only way to know whether a declared property has been unset - at least before PHP 7.4, + // which will bring ReflectionProperty::isInitialized(). + + $key = $this->getPropertyKey($property); + + if (array_key_exists($key, $objectAsArray)) { + $value = $objectAsArray[$key]; + + if ($property->isPublic()) { + $publicProperties[$name] = $value; + } else { + $nonPublicProperties[$name] = $value; + } + } else { + if ($property->isPublic()) { + $unsetPublicProperties[] = $name; + } else { + $unsetNonPublicProperties[] = $name; + } + } + + $returnNewObject = false; + } + + if ($publicProperties || $unsetPublicProperties) { + $lines[] = ''; + + foreach ($publicProperties as $name => $value) { + /** @psalm-suppress RedundantCast See: https://github.com/vimeo/psalm/issues/4891 */ + $name = (string) $name; + + $newPath = $path; + $newPath[] = $name; + + $newParentIds = $parentIds; + $newParentIds[] = spl_object_id($object); + + $exportedValue = $this->exporter->export($value, $newPath, $newParentIds); + $exportedValue = $this->exporter->wrap($exportedValue, '$object->' . $this->escapePropName($name) . ' = ', ';'); + $lines = array_merge($lines, $exportedValue); + } + + foreach ($unsetPublicProperties as $name) { + $lines[] = 'unset($object->' . $this->escapePropName($name) . ');'; + } + } + + if ($nonPublicProperties || $unsetNonPublicProperties) { + $closureLines = []; + + if ($this->exporter->addTypeHints) { + $closureLines[] = '/** @var \\' . $current->getName() . ' $this */'; + } + + foreach ($nonPublicProperties as $name => $value) { + $newPath = $path; + $newPath[] = $name; + + $newParentIds = $parentIds; + $newParentIds[] = spl_object_id($object); + + $exportedValue = $this->exporter->export($value, $newPath, $newParentIds); + $exportedValue = $this->exporter->wrap($exportedValue, '$this->' . $this->escapePropName($name) . ' = ', ';'); + $closureLines = array_merge($closureLines, $exportedValue); + } + + foreach ($unsetNonPublicProperties as $name) { + $closureLines[] = 'unset($this->' . $this->escapePropName($name) . ');'; + } + + $lines[] = ''; + $lines[] = '(function() {'; + $lines = array_merge($lines, $this->exporter->indent($closureLines)); + $lines[] = '})->bindTo($object, \\' . $current->getName() . '::class)();'; + } + + $current = $current->getParentClass(); + $isParentClass = true; + } + + if ($returnNewObject) { + // no constructor, no properties + return ['new \\' . $reflectionObject->getName()]; + } + + $lines[] = ''; + $lines[] = 'return $object;'; + + return $this->wrapInClosure($lines); + } + + /** + * Returns the key of the given property in the object-to-array cast. + * + * @param \ReflectionProperty $property + * + * @return string + */ + private function getPropertyKey(\ReflectionProperty $property) : string + { + $name = $property->getName(); + + if ($property->isPrivate()) { + return "\0" . $property->getDeclaringClass()->getName() . "\0" . $name; + } + + if ($property->isProtected()) { + return "\0*\0" . $name; + } + + return $name; + } + + /** + * @param string $var + * + * @return string + */ + private function escapePropName(string $var) : string + { + if (preg_match('/^[a-zA-Z_][a-zA-Z0-9_]*$/', $var) === 1) { + return $var; + } + + return '{' . var_export($var, true) . '}'; + } +} diff --git a/app/vendor/brick/varexporter/src/Internal/ObjectExporter/ClosureExporter.php b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/ClosureExporter.php new file mode 100644 index 000000000..6cfb9f57f --- /dev/null +++ b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/ClosureExporter.php @@ -0,0 +1,272 @@ +getName() === \Closure::class; + } + + /** + * {@inheritDoc} + */ + public function export($object, \ReflectionObject $reflectionObject, array $path, array $parentIds) : array + { + assert($object instanceof Closure); + + $reflectionFunction = new \ReflectionFunction($object); + + $file = $reflectionFunction->getFileName(); + $line = $reflectionFunction->getStartLine(); + + $ast = $this->parseFile($file, $path); + $ast = $this->resolveNames($ast); + + $closure = $this->getClosure($reflectionFunction, $ast, $file, $line, $path); + + $prettyPrinter = new ClosureExporter\PrettyPrinter(); + $prettyPrinter->setVarExporterNestingLevel(count($path) + $this->exporter->indentLevel); + + $code = $prettyPrinter->prettyPrintExpr($closure); + + // Consider the pretty-printer output as a single line, to avoid breaking multiline quoted strings and + // heredocs / nowdocs. We must leave the indenting responsibility to the pretty-printer. + + return [$code]; + } + + /** + * @return Parser + */ + private function getParser() + { + if ($this->parser === null) { + $this->parser = (new ParserFactory)->create(ParserFactory::ONLY_PHP7); + } + + return $this->parser; + } + + /** + * Parses the given source file. + * + * @param string $filename The source file name. + * @param string[] $path The path to the closure in the array/object graph. + * + * @return Node\Stmt[] The AST. + * + * @throws ExportException + */ + private function parseFile(string $filename, array $path) : array + { + if (substr($filename, -16) === " : eval()'d code") { + throw new ExportException("Closure defined in eval()'d code cannot be exported.", $path); + } + + $source = @ file_get_contents($filename); + + if ($source === false) { + // @codeCoverageIgnoreStart + throw new ExportException("Cannot open source file \"$filename\" for reading closure code.", $path); + // @codeCoverageIgnoreEnd + } + + try { + $nodes = $this->getParser()->parse($source); + + // throwing error handler + assert($nodes !== null); + + return $nodes; + // @codeCoverageIgnoreStart + } catch (Error $e) { + throw new ExportException("Cannot parse file \"$filename\" for reading closure code.", $path, $e); + // @codeCoverageIgnoreEnd + } + } + + /** + * Resolves namespaced names in the AST. + * + * @param Node[] $ast + * + * @return Node[] + */ + private function resolveNames(array $ast) : array + { + $nameResolver = new NameResolver(); + $nodeTraverser = new NodeTraverser(); + $nodeTraverser->addVisitor($nameResolver); + + return $nodeTraverser->traverse($ast); + } + + /** + * Finds a closure in the source file and returns its node. + * + * @param ReflectionFunction $reflectionFunction Reflection of the closure. + * @param Node[] $ast The AST. + * @param string $file The file name. + * @param int $line The line number where the closure is located in the source file. + * @param string[] $path The path to the closure in the array/object graph. + * + * @return Node\Expr\Closure + * + * @throws ExportException + */ + private function getClosure( + ReflectionFunction $reflectionFunction, + array $ast, + string $file, + int $line, + array $path + ) : Node\Expr\Closure { + $finder = new FindingVisitor(function(Node $node) use ($line) : bool { + return ($node instanceof Node\Expr\Closure || $node instanceof Node\Expr\ArrowFunction) + && $node->getStartLine() === $line; + }); + + $traverser = new NodeTraverser(); + $traverser->addVisitor($finder); + $traverser->traverse($ast); + + $closures = $finder->getFoundNodes(); + $count = count($closures); + + if ($count !== 1) { + throw new ExportException(sprintf( + 'Expected exactly 1 closure in %s on line %d, found %d.', + $file, + $line, + $count + ), $path); + } + + /** @var Node\Expr\Closure|Node\Expr\ArrowFunction $closure */ + $closure = $closures[0]; + + if ($closure instanceof Node\Expr\ArrowFunction) { + $closure = $this->convertArrowFunction($reflectionFunction, $closure); + } + + if ($closure->uses) { + $this->closureHandleUses($reflectionFunction, $closure, $path); + } + + return $closure; + } + + /** + * Convert a parsed arrow function to a closure. + * + * @param ReflectionFunction $reflectionFunction Reflection of the closure. + * @param Node\Expr\ArrowFunction $arrowFunction Parsed arrow function. + * + * @return Node\Expr\Closure + */ + private function convertArrowFunction( + ReflectionFunction $reflectionFunction, + Node\Expr\ArrowFunction $arrowFunction + ) : Node\Expr\Closure { + $closure = new Node\Expr\Closure([], ['arrow_function' => true]); + + $closure->static = false; + $closure->params = $arrowFunction->params; + $closure->returnType = $arrowFunction->returnType; + + $closure->stmts[] = new Node\Stmt\Return_($arrowFunction->expr); + + $static = $reflectionFunction->getStaticVariables(); + + foreach (array_keys($static) as $var) { + assert(is_string($var)); + + $closure->uses[] = new Node\Expr\ClosureUse( + new Node\Expr\Variable($var) + ); + } + + return $closure; + } + + /** + * Handle `use` part of closure. + * + * @param ReflectionFunction $reflectionFunction Reflection of the closure. + * @param Node\Expr\Closure $closure Parsed closure. + * @param string[] $path The path to the closure in the array/object graph. + * + * @throws ExportException + */ + private function closureHandleUses( + ReflectionFunction $reflectionFunction, + Node\Expr\Closure $closure, + array $path + ) : void { + if (! $this->exporter->closureSnapshotUses) { + $message = $closure->hasAttribute('arrow_function') + ? "The arrow function uses variables in the parent scope, this is not supported by default" + : "The closure has bound variables through 'use', this is not supported by default"; + + throw new ExportException("$message. Use the CLOSURE_SNAPSHOT_USE option to export them.", $path); + } + + $static = $reflectionFunction->getStaticVariables(); + $stmts = []; + + $parser = $this->getParser(); + + foreach ($closure->uses as $use) { + $var = $use->var->name; + + assert(is_string($var)); + + $export = array_merge(['exporter->export($static[$var], $path, []), [';']); + $nodes = $parser->parse(implode(PHP_EOL, $export)); + + // throwing error handler + assert($nodes !== null); + + /** @var Node\Stmt\Expression $expr */ + $expr = $nodes[0]; + + $assign = new Node\Expr\Assign( + new Node\Expr\Variable($var), + $expr->expr + ); + $stmts[] = new Node\Stmt\Expression($assign); + } + + $closure->uses = []; + $closure->stmts = array_merge($stmts, $closure->stmts); + } +} diff --git a/app/vendor/brick/varexporter/src/Internal/ObjectExporter/ClosureExporter/PrettyPrinter.php b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/ClosureExporter/PrettyPrinter.php new file mode 100644 index 000000000..4010810a4 --- /dev/null +++ b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/ClosureExporter/PrettyPrinter.php @@ -0,0 +1,41 @@ +varExporterNestingLevel = $level; + } + + /** + * {@inheritDoc} + */ + protected function resetState() : void + { + parent::resetState(); + + $this->indentLevel = 4 * $this->varExporterNestingLevel; + $this->nl = "\n" . str_repeat(' ', $this->indentLevel); + } +} diff --git a/app/vendor/brick/varexporter/src/Internal/ObjectExporter/InternalClassExporter.php b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/InternalClassExporter.php new file mode 100644 index 000000000..1deb23e61 --- /dev/null +++ b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/InternalClassExporter.php @@ -0,0 +1,34 @@ +isInternal(); + } + + /** + * {@inheritDoc} + */ + public function export($object, \ReflectionObject $reflectionObject, array $path, array $parentIds) : array + { + $className = $reflectionObject->getName(); + + throw new ExportException('Class "' . $className . '" is internal, and cannot be exported.', $path); + } +} diff --git a/app/vendor/brick/varexporter/src/Internal/ObjectExporter/SerializeExporter.php b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/SerializeExporter.php new file mode 100644 index 000000000..7c826c3ac --- /dev/null +++ b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/SerializeExporter.php @@ -0,0 +1,50 @@ +hasMethod('__serialize') + && $reflectionObject->hasMethod('__unserialize'); + } + + /** + * {@inheritDoc} + */ + public function export($object, \ReflectionObject $reflectionObject, array $path, array $parentIds) : array + { + $lines = $this->getCreateObjectCode($reflectionObject); + + $lines[] = ''; + + /** + * @psalm-suppress MixedAssignment + * @psalm-suppress MixedMethodCall + */ + $values = $object->__serialize(); + + $exportedValues = $this->exporter->export($values, $path, $parentIds); + $exportedValues = $this->exporter->wrap($exportedValues, '$object->__unserialize(', ');'); + + $lines = array_merge($lines, $exportedValues); + + $lines[] = ''; + $lines[] = 'return $object;'; + + return $this->wrapInClosure($lines); + } +} diff --git a/app/vendor/brick/varexporter/src/Internal/ObjectExporter/SetStateExporter.php b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/SetStateExporter.php new file mode 100644 index 000000000..4963dd260 --- /dev/null +++ b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/SetStateExporter.php @@ -0,0 +1,114 @@ +hasMethod('__set_state')) { + $method = $reflectionObject->getMethod('__set_state'); + + return $method->isPublic() && $method->isStatic(); + } + + return false; + } + + /** + * {@inheritDoc} + */ + public function export($object, \ReflectionObject $reflectionObject, array $path, array $parentIds) : array + { + $className = $reflectionObject->getName(); + + $vars = $this->getObjectVars($object, $path); + + $exportedVars = $this->exporter->exportArray($vars, $path, $parentIds); + $exportedVars = $this->exporter->wrap($exportedVars, '\\' . $className . '::__set_state(', ')'); + + return $exportedVars; + } + + /** + * Returns public and private object properties, as an associative array. + * + * This is unlike get_object_vars(), which only returns properties accessible from the current scope. + * + * The returned values are in line with those returned by var_export() in the array passed to __set_state(); unlike + * var_export() however, this method throws an exception if the object has overridden private properties, as this + * would result in a conflict in array keys. In this case, var_export() would return multiple values in the output, + * which once executed would yield an array containing only the last value for this key in the output. + * + * This way we offer a better safety guarantee, while staying compatible with var_export() in the output. + * + * @psalm-suppress MixedAssignment + * + * @param object $object The object to dump. + * @param string[] $path The path to the object, in the array/object graph. + * + * @return array An associative array of property name to value. + * + * @throws ExportException + */ + private function getObjectVars(object $object, array $path) : array + { + $result = []; + + foreach ((array) $object as $name => $value) { + $name = (string) $name; + $pos = strrpos($name, "\0"); + + if ($pos !== false) { + $name = substr($name, $pos + 1); + } + + assert($name !== false); + + if (array_key_exists($name, $result)) { + $className = get_class($object); + + throw new ExportException( + 'Class "' . $className . '" has overridden private property "' . $name . '". ' . + 'This is not supported for exporting objects with __set_state().', + $path + ); + } + + if ($this->exporter->skipDynamicProperties && $this->isDynamicProperty($object, $name)) { + continue; + } + + $result[$name] = $value; + } + + return $result; + } + + /** + * @param object $object + * @param string $name + * + * @return bool + */ + private function isDynamicProperty(object $object, string $name) : bool + { + $reflectionClass = new \ReflectionClass($object); + $reflectionObject = new \ReflectionObject($object); + + return $reflectionObject->hasProperty($name) && ! $reflectionClass->hasProperty($name); + } +} diff --git a/app/vendor/brick/varexporter/src/Internal/ObjectExporter/StdClassExporter.php b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/StdClassExporter.php new file mode 100644 index 000000000..52fc0a97c --- /dev/null +++ b/app/vendor/brick/varexporter/src/Internal/ObjectExporter/StdClassExporter.php @@ -0,0 +1,35 @@ +getName() === \stdClass::class; + } + + /** + * {@inheritDoc} + */ + public function export($object, \ReflectionObject $reflectionObject, array $path, array $parentIds) : array + { + $exported = $this->exporter->exportArray((array) $object, $path, $parentIds); + + $exported[0] = '(object) ' . $exported[0]; + + return $exported; + } +} diff --git a/app/vendor/brick/varexporter/src/VarExporter.php b/app/vendor/brick/varexporter/src/VarExporter.php new file mode 100644 index 000000000..c2717683f --- /dev/null +++ b/app/vendor/brick/varexporter/src/VarExporter.php @@ -0,0 +1,98 @@ +export($var, [], []); + + if ($indentLevel < 1 || count($lines) < 2) { + $export = implode(PHP_EOL, $lines); + } else { + $firstLine = array_shift($lines); + $lines = array_map(function ($line) use ($indentLevel) { + return str_repeat(' ', $indentLevel) . $line; + }, $lines); + + $export = $firstLine . PHP_EOL . implode(PHP_EOL, $lines); + } + + if ($options & self::ADD_RETURN) { + return 'return ' . $export . ';' . PHP_EOL; + } + + return $export; + } +} diff --git a/app/vendor/cakephp-plugins.php b/app/vendor/cakephp-plugins.php new file mode 100644 index 000000000..114fb5eea --- /dev/null +++ b/app/vendor/cakephp-plugins.php @@ -0,0 +1,11 @@ + [ + 'Bake' => $baseDir . '/vendor/cakephp/bake/', + 'Cake/TwigView' => $baseDir . '/vendor/cakephp/twig-view/', + 'DebugKit' => $baseDir . '/vendor/cakephp/debug_kit/', + 'Migrations' => $baseDir . '/vendor/cakephp/migrations/', + ], +]; diff --git a/app/vendor/cakephp/bake/Dockerfile b/app/vendor/cakephp/bake/Dockerfile new file mode 100644 index 000000000..296613920 --- /dev/null +++ b/app/vendor/cakephp/bake/Dockerfile @@ -0,0 +1,24 @@ +# Basic docker based environment +# Necessary to trick dokku into building the documentation +# using dockerfile instead of herokuish +FROM ubuntu:17.04 + +# Add basic tools +RUN apt-get update && \ + apt-get install -y build-essential \ + software-properties-common \ + curl \ + git \ + libxml2 \ + libffi-dev \ + libssl-dev + +RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php && \ + apt-get update && \ + apt-get install -y php7.2-cli php7.2-mbstring php7.2-xml php7.2-zip php7.2-intl php7.2-opcache php7.2-sqlite + +WORKDIR /code + +VOLUME ["/code"] + +CMD [ '/bin/bash' ] diff --git a/app/vendor/cakephp/bake/LICENSE.txt b/app/vendor/cakephp/bake/LICENSE.txt new file mode 100644 index 000000000..0a0a98c8e --- /dev/null +++ b/app/vendor/cakephp/bake/LICENSE.txt @@ -0,0 +1,28 @@ +The MIT License + +CakePHP(tm) : The Rapid Development PHP Framework (http://cakephp.org) +Copyright (c) 2005-present, Cake Software Foundation, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +Cake Software Foundation, Inc. +1785 E. Sahara Avenue, +Suite 490-204 +Las Vegas, Nevada 89104, +United States of America. diff --git a/app/vendor/cakephp/bake/README.md b/app/vendor/cakephp/bake/README.md new file mode 100644 index 000000000..bd99b84b7 --- /dev/null +++ b/app/vendor/cakephp/bake/README.md @@ -0,0 +1,39 @@ +# Bake plugin for CakePHP + +![Build Status](https://github.com/cakephp/bake/actions/workflows/ci.yml/badge.svg?branch=master) +[![Latest Stable Version](https://img.shields.io/github/v/release/cakephp/bake?sort=semver&style=flat-square)](https://packagist.org/packages/cakephp/bake) +[![Coverage Status](https://img.shields.io/codecov/c/github/cakephp/bake.svg?style=flat-square)](https://codecov.io/github/cakephp/bake) +[![License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.txt) + +This project provides the code generation functionality for CakePHP. Through a +suite of CLI tools, you can quickly and easily generate code for your application. + +## Installation + +You can install this plugin into your CakePHP application using [composer](http://getcomposer.org). + +The recommended way to install composer packages is: + +``` +composer require --dev cakephp/bake +``` + +## Documentation + +You can find the documentation for bake [on its own cookbook](https://book.cakephp.org/bake/2). + +## Testing + +After installing dependencies with composer you can run tests with `phpunit`: + +```bash +vendor/bin/phpunit +``` + +If your changes require changing the templates that bake uses, you can save time updating tests, by +enabling bake's 'overwrite fixture feature'. This will let you re-generate the expected output files +without having to manually edit each one: + +```bash +UPDATE_TEST_COMPARISON_FILES=1 vendor/bin/phpunit +``` diff --git a/app/vendor/cakephp/bake/composer.json b/app/vendor/cakephp/bake/composer.json new file mode 100644 index 000000000..cd74c330b --- /dev/null +++ b/app/vendor/cakephp/bake/composer.json @@ -0,0 +1,60 @@ +{ + "name": "cakephp/bake", + "description": "Bake plugin for CakePHP", + "type": "cakephp-plugin", + "keywords": ["cakephp", "bake"], + "homepage": "https://github.com/cakephp/bake", + "license": "MIT", + "authors": [ + { + "name": "CakePHP Community", + "homepage": "https://github.com/cakephp/bake/graphs/contributors" + } + ], + "support": { + "issues": "https://github.com/cakephp/bake/issues", + "forum": "https://stackoverflow.com/tags/cakephp", + "irc": "irc://irc.freenode.org/cakephp", + "source": "https://github.com/cakephp/bake" + }, + "require": { + "php": ">=7.2", + "cakephp/cakephp": "^4.1", + "cakephp/twig-view": "^1.0.2", + "brick/varexporter": "^0.3.5" + }, + "require-dev": { + "cakephp/cakephp-codesniffer": "^4.0", + "phpunit/phpunit": "~8.5.0", + "cakephp/debug_kit": "^4.1", + "cakephp/plugin-installer": "^1.3" + }, + "autoload": { + "psr-4": { + "Bake\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "BakeTest\\": "tests/test_app/Plugin/BakeTest/src/", + "Company\\Pastry\\": "tests/test_app/Plugin/Company/Pastry/src/", + "Pastry\\PastryTest\\": "tests/test_app/Plugin/PastryTest/src/", + "WithBakeSubFolder\\": "tests/test_app/Plugin/WithBakeSubFolder/src/", + "Bake\\Test\\": "tests/", + "Bake\\Test\\App\\": "tests/test_app/App/", + "Cake\\Test\\": "vendor/cakephp/cakephp/tests/" + } + }, + "scripts": { + "check": [ + "@test", + "@cs-check" + ], + "cs-check": "phpcs --parallel=16 -p src/ tests/", + "cs-fix": "phpcbf --parallel=16 -p src/ tests/", + "stan": "phpstan analyse src/ && psalm.phar", + "stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:0.12.82 psalm/phar:~4.7.0 && mv composer.backup composer.json", + "test": "phpunit", + "test-coverage": "phpunit --coverage-clover=clover.xml" + } +} diff --git a/app/vendor/cakephp/bake/docs.Dockerfile b/app/vendor/cakephp/bake/docs.Dockerfile new file mode 100644 index 000000000..adb6e9447 --- /dev/null +++ b/app/vendor/cakephp/bake/docs.Dockerfile @@ -0,0 +1,18 @@ +# Generate the HTML output. +FROM markstory/cakephp-docs-builder as builder + +# Copy entire repo in with .git so we can build all versions in one image. +COPY docs /data/src + +RUN cd /data/docs-builder \ + && make website LANGS="en es fr ja pt ru" SOURCE=/data/src DEST=/data/website/ + +# Build a small nginx container with just the static site in it. +FROM nginx:1.15-alpine + +COPY --from=builder /data/website /data/website +COPY --from=builder /data/docs-builder/nginx.conf /etc/nginx/conf.d/default.conf + +# Copy docs into place. +RUN cp -R /data/website/html/* /usr/share/nginx/html \ + && rm -rf /data/website diff --git a/app/vendor/cakephp/bake/docs/config/__init__.py b/app/vendor/cakephp/bake/docs/config/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/app/vendor/cakephp/bake/docs/config/all.py b/app/vendor/cakephp/bake/docs/config/all.py new file mode 100644 index 000000000..9e899be5b --- /dev/null +++ b/app/vendor/cakephp/bake/docs/config/all.py @@ -0,0 +1,49 @@ +# Global configuration information used across all the +# translations of documentation. +# +# Import the base theme configuration +from cakephpsphinx.config.all import * + +# The version info for the project you're documenting, acts as replacement for +# |version| and |release|, also used in various other places throughout the +# built documents. +# + +# The full version, including alpha/beta/rc tags. +release = '2.x' + +# The search index version. +search_version = 'bake-2' + +# The marketing display name for the book. +version_name = '' + +# Project name shown in the black header bar +project = 'CakePHP Bake' + +# Other versions that display in the version picker menu. +version_list = [ + {'name': '1.x', 'number': '/bake/1.x', 'title': '1.x'}, + {'name': '2.x', 'number': '/bake/2.x', 'title': '2.x', 'current': True}, +] + +# Languages available. +languages = ['en', 'es', 'fr', 'ja', 'pt', 'ru'] + +# The GitHub branch name for this version of the docs +# for edit links to point at. +branch = 'master' + +# Current version being built +version = '2.x' + +# Language in use for this directory. +language = 'en' + +show_root_link = True + +repository = 'cakephp/bake' + +source_path = 'docs/' + +hide_page_contents = ('search', '404', 'contents') diff --git a/app/vendor/cakephp/bake/docs/en/conf.py b/app/vendor/cakephp/bake/docs/en/conf.py new file mode 100644 index 000000000..f638bda22 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/en/conf.py @@ -0,0 +1,9 @@ +import sys, os + +# Append the top level directory of the docs, so we can import from the config dir. +sys.path.insert(0, os.path.abspath('..')) + +# Pull in all the configuration options defined in the global config file.. +from config.all import * + +language = 'en' diff --git a/app/vendor/cakephp/bake/docs/en/contents.rst b/app/vendor/cakephp/bake/docs/en/contents.rst new file mode 100644 index 000000000..08c3e957c --- /dev/null +++ b/app/vendor/cakephp/bake/docs/en/contents.rst @@ -0,0 +1,7 @@ +.. toctree:: + :maxdepth: 2 + :caption: CakePHP Bake + + /index + /usage + /development diff --git a/app/vendor/cakephp/bake/docs/en/development.rst b/app/vendor/cakephp/bake/docs/en/development.rst new file mode 100644 index 000000000..e1c1aa7bf --- /dev/null +++ b/app/vendor/cakephp/bake/docs/en/development.rst @@ -0,0 +1,348 @@ +Extending Bake +############## + +Bake features an extensible architecture that allows your application or plugins +to modify or add-to the base functionality. Bake makes use of a dedicated +view class which uses the `Twig `_ template engine. + +Bake Events +=========== + +As a view class, ``BakeView`` emits the same events as any other view class, +plus one extra initialize event. However, whereas standard view classes use the +event prefix "View.", ``BakeView`` uses the event prefix "Bake.". + +The initialize event can be used to make changes which apply to all baked +output, for example to add another helper to the bake view class this event can +be used:: + + on('Bake.initialize', function (EventInterface $event) { + $view = $event->getSubject(); + + // In my bake templates, allow the use of the MySpecial helper + $view->loadHelper('MySpecial', ['some' => 'config']); + + // And add an $author variable so it's always available + $view->set('author', 'Andy'); + }); + +Bake events can be handy for making small changes to existing templates. +For example, to change the variable names used when baking controller/template +files one can use a function listening for ``Bake.beforeRender`` to modify the +variables used in the bake templates:: + + on('Bake.beforeRender', function (EventInterface $event) { + $view = $event->getSubject(); + + // Use $rows for the main data variable in indexes + if ($view->get('pluralName')) { + $view->set('pluralName', 'rows'); + } + if ($view->get('pluralVar')) { + $view->set('pluralVar', 'rows'); + } + + // Use $theOne for the main data variable in view/edit + if ($view->get('singularName')) { + $view->set('singularName', 'theOne'); + } + if ($view->get('singularVar')) { + $view->set('singularVar', 'theOne'); + } + }); + +You may also scope the ``Bake.beforeRender`` and ``Bake.afterRender`` events to +a specific generated file. For instance, if you want to add specific actions to +your UsersController when generating from a **Controller/controller.twig** file, +you can use the following event:: + + on( + 'Bake.beforeRender.Controller.controller', + function (EventInterface $event) { + $view = $event->getSubject(); + if ($view->get('name') === 'Users') { + // add the login and logout actions to the Users controller + $view->set('actions', [ + 'login', + 'logout', + 'index', + 'view', + 'add', + 'edit', + 'delete' + ]); + } + } + ); + +By scoping event listeners to specific bake templates, you can simplify your +bake related event logic and provide callbacks that are easier to test. + +Bake Template Syntax +==================== + +Bake template files use the `Twig `__ template syntax. + +One way to see/understand how bake templates works, especially when attempting +to modify bake template files, is to bake a class and compare the template used +with the pre-processed template file which is left in the application's +**tmp/bake** folder. + +So, for example, when baking a command like so: + +.. code-block:: bash + + bin/cake bake command Foo + +The template used (**vendor/cakephp/bake/templates/bake/Command/command.twig**) +looks like this:: + + Test->classSuffixes[$this->name()])) { + $this->Test->classSuffixes[$this->name()] = 'Foo'; + } + + $name = ucfirst($this->name()); + if (!isset($this->Test->classTypes[$name])) { + $this->Test->classTypes[$name] = 'Foo'; + } + + return parent::bakeTest($className); + } + +* The **class suffix** will be appened to the name provided in your ``bake`` + call. In the previous example, it would create a ``ExampleFooTest.php`` file. +* The **class type** will be the sub-namespace used that will lead to your + file (relative to the app or the plugin you are baking into). In the previous + example, it would create your test with the namespace ``App\Test\TestCase\Foo``. + +Configuring the BakeView class +============================== + +The bake commands use the ``BakeView`` class to render the templates. You can +access the instance by listening to the ``Bake.initialize`` event. For example, here's +how you can load your own helper so that it can be used in bake templates:: + + on( + 'Bake.initialize', + function ($event, $view) { + $view->loadHelper('Foo'); + } + ); + +.. meta:: + :title lang=en: Extending Bake + :keywords lang=en: command line interface, development, bake view, bake template syntax, twig, erb tags, percent tags diff --git a/app/vendor/cakephp/bake/docs/en/index.rst b/app/vendor/cakephp/bake/docs/en/index.rst new file mode 100644 index 000000000..28899b7b0 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/en/index.rst @@ -0,0 +1,28 @@ +Bake Console +############ + +CakePHP's bake console is another effort to get you up and running in CakePHP +– fast. The bake console can create any of CakePHP's basic ingredients: models, +behaviors, views, helpers, controllers, components, test cases, fixtures and plugins. +And we aren't just talking skeleton classes: Bake can create a fully functional +application in just a few minutes. In fact, Bake is a natural step to take once +an application has been scaffolded. + +Installation +============ + +Before trying to use or extend bake, make sure it is installed in your +application. Bake is provided as a plugin that you can install with Composer:: + + composer require --dev cakephp/bake:"^2.0" + +The above will install bake as a development dependency. This means that it will +not be installed when you do production deployments. + +When using the Twig templates make sure you are loading the +``Cake/TwigView`` plugin with its bootstrap. You can also omit it +completely which then makes Bake plugin load this plugin on demand. + +.. meta:: + :title lang=en: Bake Console + :keywords lang=en: command line interface,development,bake view, bake template syntax,erb tags,asp tags,percent tags diff --git a/app/vendor/cakephp/bake/docs/en/usage.rst b/app/vendor/cakephp/bake/docs/en/usage.rst new file mode 100644 index 000000000..d68a745f0 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/en/usage.rst @@ -0,0 +1,62 @@ +Code Generation with Bake +######################### + +The Bake console is run using the PHP CLI (command line interface). +If you have problems running the script, ensure that: + +#. You have the PHP CLI installed and that it has the proper modules enabled + (eg: MySQL, intl). +#. Users also might have issues if the database host is 'localhost' and should + try '127.0.0.1' instead, as localhost can cause issues with PHP CLI. +#. Depending on how your computer is configured, you may have to set execute + rights on the cake bash script to call it using ``bin/cake bake``. + +Before running bake you should make sure you have at least one database +connection configured. + +You can get the list of available bake command by running ``bin/cake bake --help`` +(For Windows usage ``bin\cake bake --help``) :: + + $ bin/cake bake --help + Current Paths: + + * app: src/ + * root: /path/to/your/app/ + * core: /path/to/your/app/vendor/cakephp/cakephp/ + + Available Commands: + + Bake: + - bake all + - bake behavior + - bake cell + - bake command + - bake component + - bake controller + - bake controller all + - bake fixture + - bake fixture all + - bake form + - bake helper + - bake mailer + - bake middleware + - bake model + - bake model all + - bake plugin + - bake template + - bake template all + - bake test + + To run a command, type `cake command_name [args|options]` + To get help on a specific command, type `cake command_name --help` + +Bake Themes +=========== + +The theme option is common to all bake commands, and allows changing the bake +template files used when baking. To create your own templates, see the +:ref:`bake theme creation documentation `. + +.. meta:: + :title lang=en: Code Generation with Bake + :keywords lang=en: command line interface,functional application,database,database configuration,bash script,basic ingredients,project,model,path path,code generation,scaffolding,windows users,configuration file,few minutes,config,iew,shell,models,running,mysql diff --git a/app/vendor/cakephp/bake/docs/es/conf.py b/app/vendor/cakephp/bake/docs/es/conf.py new file mode 100644 index 000000000..4691ece6a --- /dev/null +++ b/app/vendor/cakephp/bake/docs/es/conf.py @@ -0,0 +1,9 @@ +import sys, os + +# Append the top level directory of the docs, so we can import from the config dir. +sys.path.insert(0, os.path.abspath('..')) + +# Pull in all the configuration options defined in the global config file.. +from config.all import * + +language = 'es' diff --git a/app/vendor/cakephp/bake/docs/es/contents.rst b/app/vendor/cakephp/bake/docs/es/contents.rst new file mode 100644 index 000000000..08c3e957c --- /dev/null +++ b/app/vendor/cakephp/bake/docs/es/contents.rst @@ -0,0 +1,7 @@ +.. toctree:: + :maxdepth: 2 + :caption: CakePHP Bake + + /index + /usage + /development diff --git a/app/vendor/cakephp/bake/docs/es/development.rst b/app/vendor/cakephp/bake/docs/es/development.rst new file mode 100644 index 000000000..7f717d051 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/es/development.rst @@ -0,0 +1,17 @@ +Extending Bake +############## + +.. note:: + La documentación no es compatible actualmente con el idioma español en esta página. + + Por favor, siéntase libre de enviarnos un pull request en + `Github `_ o utilizar el botón **Improve this Doc** para proponer directamente los cambios. + + Usted puede hacer referencia a la versión en Inglés en el menú de selección superior + para obtener información sobre el tema de esta página. + +.. _creating-a-bake-theme: + +.. meta:: + :title lang=es: Extending Bake + :keywords lang=es: command line interface,development,bake view, bake template syntax,erb tags,asp tags,percent tags diff --git a/app/vendor/cakephp/bake/docs/es/index.rst b/app/vendor/cakephp/bake/docs/es/index.rst new file mode 100644 index 000000000..80f1fa654 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/es/index.rst @@ -0,0 +1,31 @@ +Consola bake +############ + +La consola bake de CakePHP es otro esfuerzo para preparar y ejecutar CakePHP rápidamente. + +La consola bake puede crear cualquiera de los ingredientes básicos de CakePHP: +modelos, behaviours, vistas, helpers, controladores, componentes, casos de +prueba, fixtures y plugins. + +Y no hablamos sólo de esqueletos de clases: Bake puede crear una aplicación +totalmente funcional en solo un par de minutos. + +De hecho, Bake es un paso natural a dar una vez ha sido creado el esqueleto de +la aplicación. + +Instalación +=========== + +Antes de intentar utilizar o extender bake asegúrate de que está instalado en tu +aplicación. + +Bake está incluido como un plugin que puedes instalar con Composer:: + + composer require --dev cakephp/bake:~1.0 + +La instrucción anterior instalará bake como una dependencia de desarrollo. Esto +significa que no será instalado cuando hagas despliegues en producción. + +.. meta:: + :title lang=es: Consola Bake + :keywords lang=es: interfaz de línea de comando,desarrollo,bake vista, bake sintaxis plantilla,erb tags,asp tags,percent tags diff --git a/app/vendor/cakephp/bake/docs/es/usage.rst b/app/vendor/cakephp/bake/docs/es/usage.rst new file mode 100644 index 000000000..dad6ffd95 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/es/usage.rst @@ -0,0 +1,115 @@ +Crear código con Bake +##################### + +La consola de CAKE se ejecuta usando PHP CLI (command line interface). +Si tiene problemas para ejecutar el script, asegurese de: + +#. Tener instalado el PHP CLI y que estén los módulos correspondientes + habilitados (ej: MySQL y intl). +#. Si el host de base de datos es 'localhost', intente realizar la conexión con + el ip '127.0.0.1'. En algunos casos PHP CLI tiene problemas al referenciar + por nombre de host (localhost). +#. Dependiendo de como esté configurado su equipo, la ejecución del comando + CAKE BAKE (cake bash script) puede requerir permisos de ejecución al + lanzar ``bin/cake bake``. + +Antes de comenzar la ejecución, asegúrese de disponer al menos de una conexión +a una base de datos configurada. + +Para comenzar con la ejecución del comando debe abrir la consola de windows +y ejecutar "Cake Bake" + +#. Ir a Inicio (Start) > Ejecutar (Run) +#. Escribir "cmd" y presionar 'Enter' +#. Navegar hasta llegar a la carpeta de instalación de cake +#. Acceder a la carpeta 'bin' +#. Escribir 'Cake bake' lo cual deberá devolver un listado con todas las + tareas/actividades disponibles. + +El resultado debería ser algo similar a lo siguiente:: + + $ bin/cake bake + + Welcome to CakePHP v3.1.6 Console + --------------------------------------------------------------- + App : src + Path: /var/www/cakephp.dev/src/ + PHP: 5.5.8 + --------------------------------------------------------------- + The following commands can be used to generate skeleton code for your application. + + Available bake commands: + + - all + - behavior + - cell + - component + - controller + - fixture + - form + - helper + - mailer + - migration + - migration_snapshot + - model + - plugin + - shell + - shell-helper + - template + - test + + By using 'cake bake [name]' you can invoke a specific bake task. + +Puede obtener más información sobre lo que realiza cada una de las actividades +y sus opciones usando el parametro '--help' option:: + + $ bin/cake bake controller --help + + Welcome to CakePHP v3.1.6 Console + --------------------------------------------------------------- + App : src + Path: /var/www/cakephp.dev/src/ + --------------------------------------------------------------- + Bake a controller skeleton. + + Usage: + cake bake controller [subcommand] [options] [] + + Subcommands: + + all Bake all controllers with CRUD methods. + + To see help on a subcommand use `cake bake controller [subcommand] --help` + + Options: + + --help, -h Display this help. + --verbose, -v Enable verbose output. + --quiet, -q Enable quiet output. + --plugin, -p Plugin to bake into. + --force, -f Force overwriting existing files without prompting. + --connection, -c The datasource connection to get data from. + (default: default) + --theme, -t The theme to use when baking code. + --components The comma separated list of components to use. + --helpers The comma separated list of helpers to use. + --prefix The namespace/routing prefix to use. + --no-test Do not generate a test skeleton. + --no-actions Do not generate basic CRUD action methods. + + Arguments: + + name Name of the controller to bake. Can use Plugin.name to bake + controllers into plugins. (optional) + +Temas Bake / Templates +====================== + +La opción ``theme`` es genérica para todos los comandos bake y permite cambiar los +templates de bake utilizados para generar los archivos finales. Para crear sus +propios templates, ver :ref:`bake theme creation documentation +`. + +.. meta:: + :title lang=es: Crear código con Bake + :keywords lang=es: interfaz de línea de comando, aplicación funcional, base de datos, configuración de base de datos, bash script, ingredientes básicos, proyecto, modelo, path, crear código, generación de código, scaffolding, usuarios windows, archivo de configuración, pocos minutos, configurar, iew, shell, modelos, running, mysql diff --git a/app/vendor/cakephp/bake/docs/fr/conf.py b/app/vendor/cakephp/bake/docs/fr/conf.py new file mode 100644 index 000000000..b02032efa --- /dev/null +++ b/app/vendor/cakephp/bake/docs/fr/conf.py @@ -0,0 +1,9 @@ +import sys, os + +# Append the top level directory of the docs, so we can import from the config dir. +sys.path.insert(0, os.path.abspath('..')) + +# Pull in all the configuration options defined in the global config file.. +from config.all import * + +language = 'fr' diff --git a/app/vendor/cakephp/bake/docs/fr/contents.rst b/app/vendor/cakephp/bake/docs/fr/contents.rst new file mode 100644 index 000000000..08c3e957c --- /dev/null +++ b/app/vendor/cakephp/bake/docs/fr/contents.rst @@ -0,0 +1,7 @@ +.. toctree:: + :maxdepth: 2 + :caption: CakePHP Bake + + /index + /usage + /development diff --git a/app/vendor/cakephp/bake/docs/fr/development.rst b/app/vendor/cakephp/bake/docs/fr/development.rst new file mode 100644 index 000000000..61de705da --- /dev/null +++ b/app/vendor/cakephp/bake/docs/fr/development.rst @@ -0,0 +1,351 @@ +Etendre Bake +############ + +Bake dispose d'une architecture extensible qui permet à votre application ou +à vos plugins de modifier ou ajouter la fonctionnalité de base. Bake utilise une +classe de vue dédiée qui n'utilise pas la syntaxe PHP standard. + +Events de Bake +============== + +Comme une classe de vue, ``BakeView`` envoie les mêmes events que toute autre +classe de vue, ainsi qu'un event initialize supplémentaire. Cependant, +alors que les classes de vue standard utilisent le préfixe d'event +"View.", ``BakeView`` utilise le préfixe d'event "Bake.". + +L'event initialize peut être utilisé pour faire des changements qui +s'appliquent à toutes les sorties fabriquées avec bake, par exemple pour ajouter +un autre helper à la classe de vue bake, cet event peut être utilisé:: + + on('Bake.initialize', function (Event $event) { + $view = $event->getSubject(); + + // Dans mes templates de bake, permet l'utilisation du helper MySpecial + $view->loadHelper('MySpecial', ['some' => 'config']); + + // Et ajoute une variable $author pour qu'elle soit toujours disponible + $view->set('author', 'Andy'); + + }); + +Si vous souhaitez modifier bake à partir d'un autre plugin, mettre les events +de bake de votre plugin dans le fichier ``config/bootstrap.php`` du plugin est +une bonne idée. + +Les events de bake peuvent être pratiques pour faire de petits changements dans +les templates existants. Par exemple, pour changer les noms de variables +utilisés lors de la création avec bake de fichiers de controller/template, on +pourra utiliser une fonction qui écoute ``Bake.beforeRender`` pour modifier les +variables utilisées dans les templates de bake:: + + on('Bake.beforeRender', function (Event $event) { + $view = $event->getSubject(); + + // Utilise $rows pour les principales variables de données dans les indexes + if ($view->get('pluralName')) { + $view->set('pluralName', 'rows'); + } + if ($view->get('pluralVar')) { + $view->set('pluralVar', 'rows'); + } + + // Utilise $theOne pour les principales variable de données dans les view/edit + if ($view->get('singularName')) { + $view->set('singularName', 'theOne'); + } + if ($view->get('singularVar')) { + $view->set('singularVar', 'theOne'); + } + + }); + +Vous pouvez aussi scoper les events ``Bake.beforeRender`` et +``Bake.afterRender`` dans un fichier généré spécifique. Par exemple, si vous +souhaitez ajouter des actions spécifiques à votre UsersController quand vous le +générez à partir d'un fichier **Controller/controller.ctp**, vous pouvez +utiliser l'event suivant:: + + on( + 'Bake.beforeRender.Controller.controller', + function (Event $event) { + $view = $event->subject; + if ($view->viewVars['name'] == 'Users') { + // ajouter les actions login et logout au controller Users + $view->viewVars['actions'] = [ + 'login', + 'logout', + 'index', + 'view', + 'add', + 'edit', + 'delete' + ]; + } + } + ); + +En scopant les écouteurs d'event vers des templates de bake spécifiques, vous +pouvez simplifier votre logique d'event liée à bake et fournir des callbacks +qui sont plus faciles à tester. + +Syntaxe de Template de Bake +=========================== + +Les fichiers de template de Bake utilisent les balises erb-style (``<% %>``) +pour indiquer la logique des templates, et traitent le reste, y compris les +balises php, comme du texte. + +.. note:: + + Les fichiers de template de Bake n'utilisent pas, et sont insensibles aux + ``asp_tags`` de la configuration de php ini. + +``BakeView`` intègre les balises suivantes: + + * ``<%`` Une balise php ouverte de template de Bake + * ``%>`` Une balise php fermante de template de Bake + * ``<%=`` Une balise php de short-echo de template de Bake + * ``<%-`` Une balise php ouverte de template de Bake, enlevant tout espace + en tête avant la balise + * ``-%>`` Une balise php fermante de template de Bake, enlevant les espaces + à a fin après la balise + +Une façon de voir/comprendre la façon dont les templates de Bake fonctionne, +spécialement quand on essaie de modifier les fichiers de template de bake, est +de créer avec bake une classe et de comparer le template utilisé avec le +template déjà présent dans le dossier **tmp/bake** de votre application. + +Ainsi, par exemple, pour créer avec bake un shell comme ceci: + +.. code-block:: bash + + bin/cake bake shell Foo + +Le template utilisé +(**vendor/cakephp/cakephp/src/Template/Bake/Shell/shell.ctp**) +ressemble à ceci:: + + \Shell; + + use Cake\Console\Shell; + + /** + * <%= $name %> shell command. + */ + class <%= $name %>Shell extends Shell + { + + /** + * main() method. + * + * @return bool|int Success or error code. + */ + public function main() + { + } + + } + +Le fichier template déjà présent (pre-processed) +(**tmp/bake/Bake-Shell-shell-ctp.php**), qui est le fichier réellement +rendu, ressemble à ceci:: + + \Shell; + + use Cake\Console\Shell; + + /** + * shell command. + */ + class Shell extends Shell + { + + /** + * main() method. + * + * @return bool|int Success or error code. + */ + public function main() + { + } + + } + +Et la classe résultante construite avec bake (**src/Shell/FooShell.php**) +ressemble à ceci:: + + \Foo; + + /** + * <%= $name %> foo + */ + class <%= $name %>Foo + { + // Add code. + } + +Vous devriez maintenant voir votre nouvelle tâche dans l'affichage de +``bin/cake bake``. Vous pouvez lancer votre nouvelle tâche en exécutant +``bin/cake bake foo Example``. +Cela va générer une nouvelle classe ``ExampleFoo`` dans +**src/Foo/ExampleFoo.php** que votre application va +pouvoir utiliser. + +Si vous souhaitez que votre appel à ``bake`` crée également un fichier de test +pour la classe ``ExampleFoo``, vous devrez surcharger la méthode ``bakeTest()`` +dans la classe ``FooTask`` pour y définir le suffixe et le namespace de la +classe de votre nom de commande personnalisée:: + + public function bakeTest($className) + { + if (!isset($this->Test->classSuffixes[$this->name()])) { + $this->Test->classSuffixes[$this->name()] = 'Foo'; + } + + $name = ucfirst($this->name()); + if (!isset($this->Test->classTypes[$name])) { + $this->Test->classTypes[$name] = 'Foo'; + } + + return parent::bakeTest($className); + } + +* Le **suffixe de classe** sera ajouté après le nom passé à ``bake``. Dans le + cadre de l'exemple ci-dessus, cela créerait un fichier ``ExampleFooTest.php``. +* Le **type de classe** sera le sous-namespace utilisé pour atteindre votre + fichier (relatif à l'application ou au plugin dans lequel vous faites le + ``bake``). Dans le cadre de l'exemple ci-dessus, cela créerait le test avec le + namespace ``App\Test\TestCase\Foo``. + +.. meta:: + :title lang=fr: Etendre Bake + :keywords lang=fr: interface ligne de commande,development,bake view, bake template syntax,erb tags,asp tags,percent tags diff --git a/app/vendor/cakephp/bake/docs/fr/index.rst b/app/vendor/cakephp/bake/docs/fr/index.rst new file mode 100644 index 000000000..c086cac49 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/fr/index.rst @@ -0,0 +1,26 @@ +Console Bake +############ + +La console Bake de CakePHP est un autre outil permettant de réaliser son +application rapidement. La console Bake peut créer chacun des ingrédients +basiques de CakePHP : models, behaviors, views, helpers, controllers, +components, cas de tests, fixtures et plugins. Et nous ne parlons pas +seulement des squelettes de classes : Bake peut créer une application +fonctionnelle complète en seulement quelques minutes. En réalité, Bake est une +étape naturelle à suivre une fois qu'une application a été prototypée. + +Installation +============ + +Avant d'essayer d'utiliser ou d'étendre bake, assurez-vous qu'il est installé +dans votre application. Bake est disponible en tant que plugin que vous pouvez +installer avec Composer:: + + composer require --dev cakephp/bake:~1.0 + +Ceci va installer bake en tant que dépendance de développement. Cela signifie +qu'il ne sera pas installé lors d'un déploiement en production. + +.. meta:: + :title lang=fr: Console Bake + :keywords lang=fr: interface ligne de commande,development,bake view, bake template syntaxe,erb tags,asp tags,percent tags diff --git a/app/vendor/cakephp/bake/docs/fr/usage.rst b/app/vendor/cakephp/bake/docs/fr/usage.rst new file mode 100644 index 000000000..56e891a19 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/fr/usage.rst @@ -0,0 +1,108 @@ +Génération de Code avec Bake +############################ + +Suivant la configuration de votre installation, vous devrez peut être donner +les droits d'exécution au script bash cake ou l'appeler avec la commande +``./bin/cake bake``. +La console cake est exécutée en utilisant le CLI PHP +(Interface de Ligne de Commande). Si vous avez des problèmes en exécutant ce +script, vérifiez que : + +#. le CLI PHP est installé et qu'il a les bons modules activés (ex: MySQL, intl). +#. Certains utilisateurs peuvent aussi rencontrer des problèmes si la base de + données host est 'localhost' et devront essayer '127.0.0.1' à la place. +#. Selon la configuration de votre ordinateur, vous devrez peut-être permettre + l'exécution du script bash pour permettre de lancer ``bin/cake bake``. + +Avant de lancer bake, vous devrez vous assurer qu'au moins une connection à une +base de données est configurée. + +Si vous exécutez la commande sans argument, ``bin/cake bake`` affichera la liste +des tâches disponibles. Vous devriez voir quelque chose comme ceci:: + + $ bin/cake bake + + Welcome to CakePHP v3.x.x Console + --------------------------------------------------------------- + App : src + Path: /var/www/cakephp.dev/src/ + --------------------------------------------------------------- + Les commandes suivantes avec lesquelles vous pouvez générer un squelette de + code pour votre application. + + Les commandes disponibles de bake: + + - all + - behavior + - cell + - component + - controller + - fixture + - form + - helper + - mailer + - migration + - migration_snapshot + - model + - plugin + - shell + - shell-helper + - template + - test + + En utilisant `cake bake [name]` vous pouvez faire appel à une tâche + spécifique de bake. + +Vous pouvez obtenir plus d'informations sur ce que chaque tâche fait et les +options disponibles en utilisant l'option ``--help``:: + + $ bin/cake bake controller --help + + Welcome to CakePHP v3.x.x Console + --------------------------------------------------------------- + App : src + Path: /var/www/cakephp.dev/src/ + --------------------------------------------------------------- + Bake a controller skeleton. + + Usage: + cake bake controller [subcommand] [options] [] + + Subcommands: + + all Bake all controllers with CRUD methods. + + To see help on a subcommand use `cake bake controller [subcommand] --help` + + Options: + + --help, -h Display this help. + --verbose, -v Enable verbose output. + --quiet, -q Enable quiet output. + --plugin, -p Plugin to bake into. + --force, -f Force overwriting existing files without prompting. + --connection, -c The datasource connection to get data from. + (default: default) + --theme, -t The theme to use when baking code. + --components The comma separated list of components to use. + --helpers The comma separated list of helpers to use. + --prefix The namespace/routing prefix to use. + --no-test Do not generate a test skeleton. + --no-actions Do not generate basic CRUD action methods. + + Arguments: + + name Name of the controller to bake. Can use Plugin.name to bake + controllers into plugins. (optional) + +Themes de Bake +============== + +L'option theme est commune à toutes les commandes de bake, et permet de changer +les fichiers de template utilisés lors de la création avec bake. Pour créer vos +propres templates, référez-vous :ref:`à la documentation sur la création de +theme bake `. + +.. meta:: + :title lang=fr: Génération de Code avec Bake + :keywords lang=fr: interface ligne de commande,application fonctionnelle,base de données,configuration base de données,bash script,ingredients basiques,project,model,path path,génération de code,scaffolding,windows users,configuration file,few minutes,config,iew,shell,models,running,mysql diff --git a/app/vendor/cakephp/bake/docs/ja/conf.py b/app/vendor/cakephp/bake/docs/ja/conf.py new file mode 100644 index 000000000..5871da648 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/ja/conf.py @@ -0,0 +1,9 @@ +import sys, os + +# Append the top level directory of the docs, so we can import from the config dir. +sys.path.insert(0, os.path.abspath('..')) + +# Pull in all the configuration options defined in the global config file.. +from config.all import * + +language = 'ja' diff --git a/app/vendor/cakephp/bake/docs/ja/contents.rst b/app/vendor/cakephp/bake/docs/ja/contents.rst new file mode 100644 index 000000000..08c3e957c --- /dev/null +++ b/app/vendor/cakephp/bake/docs/ja/contents.rst @@ -0,0 +1,7 @@ +.. toctree:: + :maxdepth: 2 + :caption: CakePHP Bake + + /index + /usage + /development diff --git a/app/vendor/cakephp/bake/docs/ja/development.rst b/app/vendor/cakephp/bake/docs/ja/development.rst new file mode 100644 index 000000000..a7d733edc --- /dev/null +++ b/app/vendor/cakephp/bake/docs/ja/development.rst @@ -0,0 +1,301 @@ +Bake の拡張 +########### + +Bake は、アプリケーションやプラグインが基本機能に対して変更または追加を可能にする +拡張可能なアーキテクチャーを備えています。Bake は、 `Twig `_ +テンプレートエンジンを使用したビュークラスを利用します。 + +Bake イベント +============= + +``BakeView`` は、ビュークラスとして、他のビュークラスと同様のイベントに加え、 +1つの特別な初期化 (initialize) イベントを発します。しかし、一方で標準ビュークラスは、 +イベントのプレフィックス "View." を使用しますが、 ``BakeView`` は、 +イベントのプレフィックス "Bake." を使用しています。 + +初期化イベントは、すべての bake の出力に対して変更を加えるために使用できます。 +例えば、bake ビュークラスに他のヘルパーを追加するためにこのイベントは使用されます。 :: + + on('Bake.initialize', function (Event $event) { + $view = $event->getSubject(); + + // bake テンプレートの中で MySpecial ヘルパーの使用を可能にします + $view->loadHelper('MySpecial', ['some' => 'config']); + + // そして、$author 変数を利用可能にするために追加 + $view->set('author', 'Andy'); + + }); + +別のプラグインの中から bake を変更したい場合は、プラグインの ``config/bootstrap.php`` +ファイルでプラグインの Bake イベントを置くことは良いアイデアです。 + +Bake イベントは、既存のテンプレートに小さな変更を行うための便利なことができます。 +例えば、コントローラーやテンプレートファイルを bake する際に使用される変数名を +変更するために、bake テンプレートで使用される変数を変更するために +``Bake.beforeRender`` で呼び出される関数を使用することができます。 :: + + on('Bake.beforeRender', function (Event $event) { + $view = $event->getSubject(); + + // indexes の中のメインデータ変数に $rows を使用 + if ($view->get('pluralName')) { + $view->set('pluralName', 'rows'); + } + if ($view->get('pluralVar')) { + $view->set('pluralVar', 'rows'); + } + + // view と edit の中のメインデータ変数に $theOne を使用 + if ($view->get('singularName')) { + $view->set('singularName', 'theOne'); + } + if ($view->get('singularVar')) { + $view->set('singularVar', 'theOne'); + } + + }); + +特定の生成されたファイルへの ``Bake.beforeRender`` と ``Bake.afterRender`` +イベントを指定することもあるでしょう。例えば、 +**Controller/controller.twig** ファイルから生成する際、 UsersController +に特定のアクションを追加したい場合、以下のイベントを使用することができます。 :: + + on( + 'Bake.beforeRender.Controller.controller', + function (Event $event) { + $view = $event->getSubject(); + if ($view->viewVars['name'] == 'Users') { + // Users コントローラーに login と logout を追加 + $view->viewVars['actions'] = [ + 'login', + 'logout', + 'index', + 'view', + 'add', + 'edit', + 'delete' + ]; + } + } + ); + +特定の bake テンプレートのためのイベントリスナーを指定することによって、 +bake 関連のイベント・ロジックを簡素化し、テストするのが容易であるコールバックを +提供することができます。 + +Bake テンプレート構文 +===================== + +Bake テンプレートファイルは、 `Twig `__ +テンプレート構文を使用します。 + +bake テンプレートがどのように動作するかを確認/理解する一つの方法は、 +bake テンプレートファイルを変更しようとする場合は特に、クラスを bake して、 +アプリケーションの **tmp/bake** フォルダー内に残っている前処理されたテンプレートファイルを +使ったテンプレートと比較することです。 + +だから、例えば、以下のようにシェルを bake した場合: + +.. code-block:: bash + + bin/cake bake shell Foo + +(**vendor/cakephp/bake/src/Template/Bake/Shell/shell.twig**) を使用した +テンプレートは、以下のようになります。 :: + + `` Bake テンプレートの PHP 終了タグ + * ``<%=`` Bake テンプレートの PHP ショートエコータグ + * ``<%-`` Bake テンプレートの PHP 開始タグ、タグの前に、先頭の空白を除去 + * ``-%>`` Bake テンプレートの PHP 終了タグ、タグの後に末尾の空白を除去 + +.. _creating-a-bake-theme: + +Bake テーマの作成 +================= + +"bake" コマンドによって生成された出力を変更したい場合、bake が使用するテンプレートの +一部または全部を置き換えることができる、独自の bake の「テーマ」を作成することができます。 +これを行うための最善の方法は、次のとおりです。 + +#. 新しいプラグインを bake します。プラグインの名前は bake の「テーマ」名になります。 +#. 新しいディレクトリー **plugins/[name]/src/Template/Bake/Template/** を作成します。 +#. **vendor/cakephp/bake/src/Template/Bake/Template** から上書きしたい + テンプレートをあなたのプラグインの中の適切なファイルにコピーしてください。 +#. bake を実行するときに、必要であれば、 bake のテーマを指定するための ``--theme`` + オプションを使用してください。各呼び出しでこのオプションを指定しなくても済むように、 + カスタムテーマをデフォルトテーマとして使用するように設定することもできます。 :: + + Test->classSuffixes[$this->name()])) { + $this->Test->classSuffixes[$this->name()] = 'Foo'; + } + + $name = ucfirst($this->name()); + if (!isset($this->Test->classTypes[$name])) { + $this->Test->classTypes[$name] = 'Foo'; + } + + return parent::bakeTest($className); + } + +* **class suffix** は ``bake`` 呼び出しで与えられた名前に追加します。前の例では、 + ``ExampleFooTest.php`` ファイルを作成します。 +* **class type** は、(あなたが bake するアプリやプラグインに関連する) + あなたのファイルを導くために使用されるサブ名前空間です。 + 前の例では、名前空間 ``App\Test\TestCase\Foo`` でテストを作成します。 + +.. meta:: + :title lang=ja: Bake の拡張 + :keywords lang=ja: command line interface,development,bake view, bake template syntax,twig,erb tags,percent tags diff --git a/app/vendor/cakephp/bake/docs/ja/index.rst b/app/vendor/cakephp/bake/docs/ja/index.rst new file mode 100644 index 000000000..a4e503963 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/ja/index.rst @@ -0,0 +1,28 @@ +Bake コンソール +################ + +CakePHP の bake コンソールは、迅速に CakePHP を動作させるまでを支援します。 +bake コンソールは、CakePHP の基本的な素材(モデル、ビヘイビアー、ビュー、ヘルパー、 +コントローラー、コンポーネント、テストケース、フィクスチャー、プラグイン)を作成できます。 +その為のスケルトンクラスについては、ここでは省略しますが、 +bake は数分で完全に機能するアプリケーションを作成できます。 +要するに、bake は足場の組まれたアプリケーションをいっぺんに手に入れるためにうってつけの方法です。 + +インストール手順 +================= + +bake を使用したり拡張する前に、アプリケーションに bake をインストールしておいてください。 +bake は Composer を使ってインストールするプラグインとして提供されています。 :: + + composer require --dev cakephp/bake:"^2.0" + +上記のコマンドは、bake を開発環境で使用するパッケージとしてインストールします。 +この入れ方の場合、本番環境としてデプロイする際には、 bake はインストールされません。 + +Twig テンプレートを使用する場合、 ``Cake/TwigView`` プラグインをブートストラップとともに +読み込んでいることを確認してください。それを完全に省略して、 +Bake プラグインにこのプラグインを読み込ませることもできます。 + +.. meta:: + :title lang=ja: Bakeコンソール + :keywords lang=ja: コマンドライン,CLI,development,bake view, bake template syntax,erb tags,asp tags,percent tags diff --git a/app/vendor/cakephp/bake/docs/ja/usage.rst b/app/vendor/cakephp/bake/docs/ja/usage.rst new file mode 100644 index 000000000..d9470e6c3 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/ja/usage.rst @@ -0,0 +1,102 @@ +Bake でコード生成 +################## + +cake コンソールは、 PHP CLI (command line interface) で実行します。 +もしスクリプトの実行に問題があるなら、以下を満たしてください。 + +#. PHP CLI がインストールされているか適切なモジュールが有効か確認してください (例:MySQL, intl)。 +#. データベースのホストが 'localhost' で問題があるなら、代わりに '127.0.0.1' を使って下さい。 + PHP CLI でこの問題がおこる可能性があります。 +#. 使っているコンピューターの設定に応じて、 ``bin/cake bake`` で使用する cake bash スクリプトの + 実行権限を設定する必要があります。 + +bake を実行する前にデータベースとの接続を確認しましょう。 + +``bin/cake bake`` を引数無しで実行すると可能なタスクを表示できます。 + +Windows システムの場合、 ``bin\cake bake`` を試してみてください。 + +それは以下のように表示されます。 :: + + $ bin/cake bake + + Welcome to CakePHP v3.1.6 Console + --------------------------------------------------------------- + App : src + Path: /var/www/cakephp.dev/src/ + PHP: 5.5.8 + --------------------------------------------------------------- + The following commands can be used to generate skeleton code for your application. + + Available bake commands: + + - all + - behavior + - cell + - component + - controller + - fixture + - form + - helper + - mailer + - migration + - migration_snapshot + - model + - plugin + - shell + - shell-helper + - template + - test + + By using `cake bake [name]` you can invoke a specific bake task. + +より詳しい各コマンドの情報を得るには、 ``--help`` オプションをつけ実行してください。 :: + + $ bin/cake bake controller --help + + Welcome to CakePHP v3.1.6 Console + --------------------------------------------------------------- + App : src + Path: /var/www/cakephp.dev/src/ + --------------------------------------------------------------- + Bake a controller skeleton. + + Usage: + cake bake controller [subcommand] [options] [] + + Subcommands: + + all Bake all controllers with CRUD methods. + + To see help on a subcommand use `cake bake controller [subcommand] --help` + + Options: + + --help, -h Display this help. + --verbose, -v Enable verbose output. + --quiet, -q Enable quiet output. + --plugin, -p Plugin to bake into. + --force, -f Force overwriting existing files without prompting. + --connection, -c The datasource connection to get data from. + (default: default) + --theme, -t The theme to use when baking code. + --components The comma separated list of components to use. + --helpers The comma separated list of helpers to use. + --prefix The namespace/routing prefix to use. + --no-test Do not generate a test skeleton. + --no-actions Do not generate basic CRUD action methods. + + Arguments: + + name Name of the controller to bake. Can use Plugin.name to bake + controllers into plugins. (optional) + +Bake テーマオプション +===================== + +テーマオプションは全 bake コマンドで一般的です。また、bake テンプレートファイルを変更することができます。 +テーマを作るには、 :ref:`Bake テーマ作成ドキュメント ` をご覧ください。 + +.. meta:: + :title lang=ja: Code Generation with Bake + :keywords lang=ja: command line interface,functional application,database,database configuration,bash script,basic ingredients,project,model,path path,code generation,scaffolding,windows users,configuration file,few minutes,config,iew,shell,models,running,mysql diff --git a/app/vendor/cakephp/bake/docs/pt/conf.py b/app/vendor/cakephp/bake/docs/pt/conf.py new file mode 100644 index 000000000..9e22cb017 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/pt/conf.py @@ -0,0 +1,9 @@ +import sys, os + +# Append the top level directory of the docs, so we can import from the config dir. +sys.path.insert(0, os.path.abspath('..')) + +# Pull in all the configuration options defined in the global config file.. +from config.all import * + +language = 'pt' diff --git a/app/vendor/cakephp/bake/docs/pt/contents.rst b/app/vendor/cakephp/bake/docs/pt/contents.rst new file mode 100644 index 000000000..08c3e957c --- /dev/null +++ b/app/vendor/cakephp/bake/docs/pt/contents.rst @@ -0,0 +1,7 @@ +.. toctree:: + :maxdepth: 2 + :caption: CakePHP Bake + + /index + /usage + /development diff --git a/app/vendor/cakephp/bake/docs/pt/development.rst b/app/vendor/cakephp/bake/docs/pt/development.rst new file mode 100644 index 000000000..5e4fb05f8 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/pt/development.rst @@ -0,0 +1,303 @@ +Estendendo o Bake +################# + +O Bake fornece uma arquitetura expansível que permite a sua aplicação ou plugin +modificar ou adicionar funcionalidades às suas funções básicas. Bake faz uso de +uma classe view dedicada que usa a ferramenta de templates `Twig +`_. + +Eventos do Bake +=============== + +Como uma class view , ``BakeView`` emite o mesmo evento como qualquer outra +classe view, mais uma extra que inicializa eventos. No entanto, onde as classes +view padrão usam o prefixo "View.", ``BakeView`` usa o prefixo "Bake.". + +O inicializador de eventos pode ser usado para fazer mudanças quando aplicado +a todas as saídas do Bake, por exemplo, ao adicionar outro helper à classe bake +view este evento pode ser usado:: + + on('Bake.initialize', function (Event $event) { + $view = $event->getSubject(); + + // In my bake templates, allow the use of the MySpecial helper + $view->loadHelper('MySpecial', ['some' => 'config']); + + // And add an $author variable so it's always available + $view->set('author', 'Andy'); + + }); + +Se você deseja modificar o bake de outro plugin, é recomendável colocar os +eventos do bake do seu plugin no arquivo **config/bootstrap.php**. + +Os eventos do Bake podem ser úteis para fazer pequenas alterações nos modelos +existentes. Por exemplo, para alterar os nomes das variáveis usados no +controller/template quando executar o bake, pode-se usar uma função esperando +o ``Bake.beforeRender`` para modificar as variáveis usadas no bake templates:: + + on('Bake.beforeRender', function (Event $event) { + $view = $event->getSubject(); + + // Use $rows for the main data variable in indexes + if ($view->get('pluralName')) { + $view->set('pluralName', 'rows'); + } + if ($view->get('pluralVar')) { + $view->set('pluralVar', 'rows'); + } + + // Use $theOne for the main data variable in view/edit + if ($view->get('singularName')) { + $view->set('singularName', 'theOne'); + } + if ($view->get('singularVar')) { + $view->set('singularVar', 'theOne'); + } + + }); + +Você também pode abranger os eventos ``Bake.beforeRender`` +e ``Bake.afterRender`` para um arquivo específico. Por exemplo, se você quiser +adicionar ações específicas para seu UsersController ao gerar a partir de um +arquivo **Controller/controller.twig**, você pode usar o seguinte evento:: + + on( + 'Bake.beforeRender.Controller.controller', + function (Event $event) { + $view = $event->getSubject(); + if ($view->viewVars['name'] == 'Users') { + // add the login and logout actions to the Users controller + $view->set('actions', [ + 'login', + 'logout', + 'index', + 'view', + 'add', + 'edit', + 'delete' + ]); + } + } + ); + +Ao adicionar eventos que escutam um bake templates específico, você pode +simplesmente relacionar a sua lógica de eventos com o bake e fornecer callbacks +que são facilmente testáveis. + +Sintaxe de Templates do Bake +============================ + +Os arquivos de templates do Bake usam a sintaxe `Twig `__. + +Uma forma de ver e entender como o bake funciona, especialmente quando tentamos +modificar os arquivos de templates, é executar o bake de uma classe que compara +o template usado com o template pré-processado deixado anteriormente pela +aplicação na pasta **tmp/bake**. + +Então, por exemplo, quando você executar algo como:: + +.. code-block:: bash + + $ bin/cake bake shell Foo + +O template usado (**vendor/cakephp/bake/src/Template/Bake/Shell/shell.twig**) +parece com algo assim:: + + `` Um template bake php fecha a tag + * ``<%=`` Um template bake php short-echo tag + * ``<%-`` Um template bake php abre a tag, retirando qualquer espaço em branco antes da tag + * ``-%>`` Um template bake php fecha a tag, retirando qualqualquer espaço em branco após a tag + +.. _creating-a-bake-theme: + +Criando um Tema Bake +===================== + +Se você deseja modificar a saída produzida com o comando bake, você pode criar +o seu próprio tema para o bake que permitirá você substituir algum ou todos os +tempaltes que o bake usa. O mmelhor jeito de fazer isto é: + +#. Bake um novo plugin. O nome do plugin é o 'nome do tema' +#. Crie uma nova pasta em **plugins/[name]/Template/Bake/Template/**. +#. Copie qualquer template que você queira modificar de + **vendor/cakephp/bake/src/Template/Bake/Template** para a pasta acima e modificá-los conforme sua necessidade. +#. Quando executar o bake use a opção ``--theme`` para especificar qual o tema + que o bake deve usar. Para evitar problemas com esta opção, em cada chamada, + você também pode definir o seu template customizado para ser usado como + o template padrão:: + + Test->classSuffixes[$this->name()])) { + $this->Test->classSuffixes[$this->name()] = 'Foo'; + } + + $name = ucfirst($this->name()); + if (!isset($this->Test->classTypes[$name])) { + $this->Test->classTypes[$name] = 'Foo'; + } + + return parent::bakeTest($className); + } + +* O **sufixo da classe** será anexado ao nome fornecido em sua chamada bake. No + exemplo anterior, ele criaria um arquivo ExampleFooTest.php. +* O **tipo de classe** será o subdomínio usado que levará ao seu arquivo + (relativo ao aplicativo ou ao plugin em que você está inserindo). No exemplo + anterior, ele criaria seu teste com o namespace App\Test\TestCase\Foo. + + +.. meta:: + :title lang=en: Extending Bake + :keywords lang=en: command line interface,development,bake view, bake template syntax,twig,erb tags,percent tags + diff --git a/app/vendor/cakephp/bake/docs/pt/index.rst b/app/vendor/cakephp/bake/docs/pt/index.rst new file mode 100644 index 000000000..8d068757e --- /dev/null +++ b/app/vendor/cakephp/bake/docs/pt/index.rst @@ -0,0 +1,30 @@ +Console Bake +############ + +O console do **Bake** é outra ferramenta disponível para você sair trabalhando +- e rápido! O console Bake pode criar qualquer ítem básico do CakePHP: models, +behaviors, views, helpers, controllers, components, test cases, fixtures +e plugins. E nós não estamos apenas falando do esqueleto da classes: O Bake +pode criar uma aplicação totalmente funcional em questão de minutos. De fato, +o Bake é um passo natural a se dar uma vez que a aplicação tem sua base +construída. + +Instalação +========== + +Antes de tentar usar ou estender o Bake, tenha certeza de que ele está instalado em +sua aplicação. O Bake é distribuído como um plugin que você pode instalar com o +Composer:: + + composer require --dev cakephp/bake:~2.0 + +Isto irá instalar o Bake como uma dependência de desenvolvimento, sendo assim, +não será instalado no ambiente de produção. + +Ao usar os modelos Twig, verifique se você está carregando o plugin +Cake/TwigView com seu bootstrap. Você também pode omiti-lo completamente, +o que faz com que o plugin Bake carregue esse plugin sob demanda. + +.. meta:: + :title lang=pt: Bake Console + :keywords lang=pt: cli,linha de comando,command line,dev,desenvolvimento,bake view, bake syntax,erb tags,asp tags,percent tags diff --git a/app/vendor/cakephp/bake/docs/pt/usage.rst b/app/vendor/cakephp/bake/docs/pt/usage.rst new file mode 100644 index 000000000..7d513a0f6 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/pt/usage.rst @@ -0,0 +1,117 @@ +Geração de Código com Bake +########################## + +O console do **Bake** é executado usando o PHP CLI (interface da linha de comando). +Se você tiver problemas para executar o script, assegure-se de que: + +#. Você instalou o PHP CLI e possui os módulos apropriados habilitados (por + exemplo: MySQL, intl). +#. Os usuários também podem ter problemas se o host do banco de dados for + 'localhost' e devem tentar '127.0.0.1', em vez disso, como localhost pode + causar problemas no PHP CLI. +#. Dependendo de como o seu computador está configurado, você pode ter que + definir direitos de execução no script cake bash para chamá-lo usando + ``bin/cake bake``. + +Antes de executar o Bake você deve certificar-se de ter pelo menos um banco de dados com a conexão configurada. + +Para ver as opções disponíveis no Bake digite:: + + $ bin/cake bake --help + + Current Paths: + + * app: src + * root: . + * core: .\vendor\cakephp\cakephp + + Available Commands: + + Bake: + - bake all + - bake behavior + - bake cell + - bake command + - bake component + - bake controller + - bake controller all + - bake fixture + - bake fixture all + - bake form + - bake helper + - bake mailer + - bake middleware + - bake model + - bake model all + - bake plugin + - bake shell + - bake shell_helper + - bake task + - bake template + - bake template all + - bake test + + To run a command, type `cake command_name [args|options]` + To get help on a specific command, type `cake command_name --help` + + +Você pode obter mais informações sobre o que cada tarefa faz e quais são suas opções +disponíveis usando a opção ``--help``:: + + $ bin/cake bake model --help + + Bake table and entity classes. + + Usage: + cake bake model [options] [] + + Options: + + --connection, -c The datasource connection to get data from. + (default: default) + --display-field The displayField if you would like to choose one. + --fields A comma separated list of fields to make + accessible. + --force, -f Force overwriting existing files without + prompting. + --help, -h Display this help. + --hidden A comma separated list of fields to hide. + --no-associations Disable generating associations. + --no-entity Disable generating an entity class. + --no-fields Disable generating accessible fields in the + entity. + --no-fixture Do not generate a test fixture skeleton. + --no-hidden Disable generating hidden fields in the entity. + --no-rules Disable generating a rules checker. + --no-table Disable generating a table class. + --no-test Do not generate a test case skeleton. + --no-validation Disable generating validation rules. + --plugin, -p Plugin to bake into. + --primary-key The primary key if you would like to manually set + one. Can be a comma separated list if you are + using a composite primary key. + --quiet, -q Enable quiet output. + --table The table name to use if you have + non-conventional table names. + --theme, -t The theme to use when baking code. + --verbose, -v Enable verbose output. + + Arguments: + + name Name of the model to bake (without the Table suffix). You can use + Plugin.name to bake plugin models. (optional) + + Omitting all arguments and options will list the table names you can + generate models for. + + + +Temas para o Bake +================= + +A opção de tema é comum a todos os comandos do Bake e permite mudar os arquivos de modelo usados por ele. Para criar seus próprios modelos, veja a +:ref:`documentação de criação de temas para o Bake `. + +.. meta:: + :title lang=pt: Geração de código com bake + :keywords lang=pt: command line interface,functional application,database,database configuration,bash script,basic ingredients,project,model,path path,code generation,scaffolding,windows users,configuration file,few minutes,config,iew,shell,models,running,mysql diff --git a/app/vendor/cakephp/bake/docs/ru/conf.py b/app/vendor/cakephp/bake/docs/ru/conf.py new file mode 100644 index 000000000..f8a170ee5 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/ru/conf.py @@ -0,0 +1,9 @@ +import sys, os + +# Append the top level directory of the docs, so we can import from the config dir. +sys.path.insert(0, os.path.abspath('..')) + +# Pull in all the configuration options defined in the global config file.. +from config.all import * + +language = 'ru' diff --git a/app/vendor/cakephp/bake/docs/ru/contents.rst b/app/vendor/cakephp/bake/docs/ru/contents.rst new file mode 100644 index 000000000..08c3e957c --- /dev/null +++ b/app/vendor/cakephp/bake/docs/ru/contents.rst @@ -0,0 +1,7 @@ +.. toctree:: + :maxdepth: 2 + :caption: CakePHP Bake + + /index + /usage + /development diff --git a/app/vendor/cakephp/bake/docs/ru/development.rst b/app/vendor/cakephp/bake/docs/ru/development.rst new file mode 100644 index 000000000..5b7de8ec8 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/ru/development.rst @@ -0,0 +1,293 @@ +Расширение возможностей Bake +############################ + +Bake имеет расширяемую архитектуру, которая позволяет вашему приложению или плагинам +измененять или добавления его базовую функциональность. Bake использует специальный +класс, который использует механизм шаблонизатора `Twig `_. + +События Bake +============ + +В качестве класса представления ``BakeView`` генерирует те же события, что и любой другой класс представления, +плюс одно дополнительное событие инициализации. Однако, в то время как классы стандартного представления используют +префикс события "View.", ``BakeView`` использует префикс события "Bake.". + +Событие initialize можно использовать для внесения изменений, которые применяются ко всем 'испеченным' +выводам, например, чтобы добавить другого помощника в класс вида bake, это событие может +использовать следующее:: + + on('Bake.initialize', function (Event $event) { + $view = $event->getSubject(); + + // В моих шаблонах bake, разрешить использование MySpecial helper + $view->loadHelper('MySpecial', ['some' => 'config']); + + // И добавьте переменную $author, чтобы она всегда была доступна + $view->set('author', 'Andy'); + + }); + +Если вы хотите изменить выпечку из другого плагина, хорошей идеей будет - поместить +события своего плагина в файл ``config/bootstrap.php``. + +События Bake могут быть полезны для внесения небольших изменений в существующие шаблоны. +Например, чтобы изменить имена переменных, используемых для выпечки файлов контроллеров/шаблонов, +можно использовать прослушивающую функцию ``Bake.beforeRender``:: + + on('Bake.beforeRender', function (Event $event) { + $view = $event->getSubject(); + + // Использовать $rows для основной переменной данных для индекса (index) + if ($view->get('pluralName')) { + $view->set('pluralName', 'rows'); + } + if ($view->get('pluralVar')) { + $view->set('pluralVar', 'rows'); + } + + // Используйте $theOne для основной переменной данных для просмотра/редактирования (view/edit) + if ($view->get('singularName')) { + $view->set('singularName', 'theOne'); + } + if ($view->get('singularVar')) { + $view->set('singularVar', 'theOne'); + } + + }); + +Вы также можете использовать события ``Bake.beforeRender`` и ``Bake.afterRender`` для +генерирования специфичного файла. Например, если вы хотите добавить определенные действия для +вашего UserController при генерации из файла **Controller/controller.twig**, +вы можете использовать следующее событие:: + + on( + 'Bake.beforeRender.Controller.controller', + function (Event $event) { + $view = $event->getSubject(); + if ($view->viewVars['name'] == 'Users') { + // добавим действия входа и выхода из системы в контроллер пользователей + $view->viewVars['actions'] = [ + 'login', + 'logout', + 'index', + 'view', + 'add', + 'edit', + 'delete' + ]; + } + } + ); + +При просмотре прослушивателей событий для конкретных шаблонов выпечки вы можете упростить +выпечку связанной логики событий и обеспечить обратные вызовы, которые легче тестировать. + +Синтаксис шаблона выпечки +========================= + +Файлы шаблонов Bake используют синтаксис шаблонизатора `Twig `__. + +Один из способов увидеть/понять, как работают шаблоны выпечки, особенно при попытке +изменить файлы шаблонов выпечки, это - испечь класс и сравнить используемый шаблон +с предварительно обработанным файлом шаблона, который остаётся в приложении в папке +**tmp/bake**. + +Так, например, при выпечке такой оболочки: + +.. code-block:: bash + + bin/cake bake shell Foo + +Используемый шаблон (**vendor/cakephp/bake/src/Template/Bake/Shell/shell.twig**) +будет выглядеть так:: + + `` Bake шаблон закрывающего тега php + * ``<%=`` Bake шаблон php короткого php тега echo + * ``<%-`` Bake шаблон php открытия тега, удаляющего любые введённые пробелы перед тегом + * ``-%>`` Bake шаблон php закрытия тега, любые введённые пробелы после тега + +.. _creating-a-bake-theme: + +Создание темы Bake +================== + +Если вы хотите изменить результат, полученный командой "bake", вы можете +создать свою собственную тему('theme') для "bake", которая позволит вам заменить некоторые или все +шаблоны, которые испекает bake. Лучше всего сделать это так: + +#. Выпечь новый плагин. Имя плагина - это название темы 'bake' +#. Создать новую диреткорию **plugins/[name]/src/Template/Bake/Template/**. +#. Скопируйте любые шаблоны, которые вы хотите переопределить + **vendor/cakephp/bake/src/Template/Bake/Template** для сопоставления файлов с вашим плагином. +#. При запуске выпечки используйте параметр ``--theme``, чтобы указать тему выпечки которую вы + хотите использовать. Чтобы избежать необходимости указывать этот параметр в каждом вызове, вы также можете + настроить свою тему в качестве темы по умолчанию:: + + Test->classSuffixes[$this->name()])) { + $this->Test->classSuffixes[$this->name()] = 'Foo'; + } + + $name = ucfirst($this->name()); + if (!isset($this->Test->classTypes[$name])) { + $this->Test->classTypes[$name] = 'Foo'; + } + + return parent::bakeTest($className); + } + +* **Суффикс класса** будет добавлен к имени, указанному в вашем вызове ``bake``. + В предыдущем примере он создал бы файл ``ExampleFooTest.php``. + +* **Тип файла** будет использовать пространство под-пространство имён(sub-namespace), которое приведёт к файлу (относительно приложения или подключаемого модуля). В предыдущем примере, он создаст ваш тест с пространством имен ``App\Test\TestCase\Foo``. + +.. meta:: + :title lang=ru: Расширение возможностей Bake + :keywords lang=ru: интерфейс командной строки, разработка, выпечка, синтаксис шаблона выпечки, твинг, метки erb, процентные теги diff --git a/app/vendor/cakephp/bake/docs/ru/index.rst b/app/vendor/cakephp/bake/docs/ru/index.rst new file mode 100644 index 000000000..0b9c1bc80 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/ru/index.rst @@ -0,0 +1,24 @@ +Консоль Bake +############ + +Bake консоль CakePHP - это еще один инструмент для быстрой разработки на фреймворке CakePHP. +Консоль Bake может создать любой из базовых компонентов или все сразу: models, +behaviors, views, helpers, controllers, components, test cases, fixtures и plugins. +Речь идет не только о каркасе приложения: Bake консоль создает полностью функционирующее приложение всего за пару минут. + +Bake это естественный шаг для статической генерации кода. + +Установка +========= + +Перед тем, как использовать Bake, убедитесь, что он установлен в вашем приложении. +Bake это отдельный плагин и вы можете установить его с помощью Composer:: + + composer require --dev cakephp/bake:~1.0 + +Команда выше установит Bake в зависимости от разработки. +Это значит, что Bake не будет установлен, когда вы делаете деплой на продакшн сервер. + +.. meta:: + :title lang=ru: Консоль Bake + :keywords lang=ru: интерфейс командной строки,разработка,bake view, bake template syntax,erb tags,asp tags,percent tags diff --git a/app/vendor/cakephp/bake/docs/ru/usage.rst b/app/vendor/cakephp/bake/docs/ru/usage.rst new file mode 100644 index 000000000..8cfd72b85 --- /dev/null +++ b/app/vendor/cakephp/bake/docs/ru/usage.rst @@ -0,0 +1,131 @@ +Генерация кода с помощью Bake +############################# + +Консоль cake запускается с использованием PHP CLI (интерфейса командной строки). +Если у вас возникли проблемы с запуском скрипта, убедитесь, что: + +#. У вас установлен PHP CLI и что у него есть соответствующие включённые модули + (например: MySQL, intl). +#. У пользователей также могут быть проблемы, если хост базы данных является + 'localhost' вмеcто этого можно попробовать '127.0.0.1', поскольку localhost + может вызвать проблемы с PHP CLI. +#. В зависимости от того, как настроен ваш компьютер, вам может потребоваться + установить права выполнения на скрипт bash, чтобы вызвать его, используя + ``bin/cake bake``. + +Перед запуском bake вы должны убедиться, что у вас есть хотя бы одна база данных и +соединение настроено. + +При запуске без аргументов ``bin/cake bake`` выводит список доступных +заданий. Вы должны увидеть что-то вроде:: + + $ bin/cake bake + + Welcome to CakePHP v3.4.6 Console + --------------------------------------------------------------- + App : src + Path: /var/www/cakephp.dev/src/ + PHP : 5.6.20 + --------------------------------------------------------------- + The following commands can be used to generate skeleton code for your application. + + Available bake commands: + + - all + - behavior + - cell + - component + - controller + - fixture + - form + - helper + - mailer + - migration + - migration_diff + - migration_snapshot + - model + - plugin + - seed + - shell + - shell_helper + - task + - template + - test + + By using `cake bake [name]` you can invoke a specific bake task. + +Вы можете получить больше дополнительной информации о том, что делает каждая задача, и какие параметры +доступны, если используете ключ ``--help``:: + + $ bin/cake bake --help + + Welcome to CakePHP v3.4.6 Console + --------------------------------------------------------------- + App : src + Path: /var/www/cakephp.dev/src/ + PHP : 5.6.20 + --------------------------------------------------------------- + The Bake script generates controllers, models and template files for + your application. If run with no command line arguments, Bake guides the + user through the class creation process. You can customize the + generation process by telling Bake where different parts of your + application are using command line arguments. + + Usage: + cake bake.bake [subcommand] [options] + + Subcommands: + + all Bake a complete MVC skeleton. + behavior Bake a behavior class file. + cell Bake a cell class file. + component Bake a component class file. + controller Bake a controller skeleton. + fixture Generate fixtures for use with the test suite. You + can use `bake fixture all` to bake all fixtures. + form Bake a form class file. + helper Bake a helper class file. + mailer Bake a mailer class file. + migration Bake migration class. + migration_diff Bake migration class. + migration_snapshot Bake migration snapshot class. + model Bake table and entity classes. + plugin Create the directory structure, AppController class + and testing setup for a new plugin. Can create + plugins in any of your bootstrapped plugin paths. + seed Bake seed class. + shell Bake a shell class file. + shell_helper Bake a shell_helper class file. + task Bake a task class file. + template Bake views for a controller, using built-in or + custom templates. + test Bake test case skeletons for classes. + + To see help on a subcommand use `cake bake.bake [subcommand] --help` + + Options: + + --connection, -c Database connection to use in conjunction with `bake + all`. (default: default) + --everything Bake a complete MVC skeleton, using all the available + tables. Usage: "bake all --everything" + --force, -f Force overwriting existing files without prompting. + --help, -h Display this help. + --plugin, -p Plugin to bake into. + --prefix Prefix to bake controllers and templates into. + --quiet, -q Enable quiet output. + --tablePrefix Table prefix to be used in models. + --theme, -t The theme to use when baking code. (choices: + Bake|Migrations) + --verbose, -v Enable verbose output. + +Темы Bake +========= + +Параметр темы является общим для всех команд bake, так же bake позволяет изменять +файлы шаблонов, используемые при 'выпечке'. Чтобы создать свои собственные шаблоны см. +:ref:`документация по созданию темы`. + +.. meta:: + :title lang=ru: Генерация кода с помощью Bake + :keywords lang=en: command line interface,functional application,database,database configuration,bash script,basic ingredients,project,model,path path,code generation,scaffolding,windows users,configuration file,few minutes,config,iew,shell,models,running,mysql diff --git a/app/vendor/cakephp/bake/phpcs.xml.dist b/app/vendor/cakephp/bake/phpcs.xml.dist new file mode 100644 index 000000000..ce02df237 --- /dev/null +++ b/app/vendor/cakephp/bake/phpcs.xml.dist @@ -0,0 +1,8 @@ + + + + + + + */comparisons/* + diff --git a/app/vendor/cakephp/bake/phpstan.neon b/app/vendor/cakephp/bake/phpstan.neon new file mode 100644 index 000000000..4decabc09 --- /dev/null +++ b/app/vendor/cakephp/bake/phpstan.neon @@ -0,0 +1,7 @@ +parameters: + level: 6 + checkMissingIterableValueType: false + paths: + - src + bootstrapFiles: + - tests/bootstrap.php diff --git a/app/vendor/cakephp/bake/psalm-baseline.xml b/app/vendor/cakephp/bake/psalm-baseline.xml new file mode 100644 index 000000000..a49882bc1 --- /dev/null +++ b/app/vendor/cakephp/bake/psalm-baseline.xml @@ -0,0 +1,19 @@ + + + + + new Filesystem() + + + findRecursive + + + + + new Filesystem() + + + find + + + diff --git a/app/vendor/cakephp/bake/psalm.xml b/app/vendor/cakephp/bake/psalm.xml new file mode 100644 index 000000000..de0149164 --- /dev/null +++ b/app/vendor/cakephp/bake/psalm.xml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/app/vendor/cakephp/bake/src/Command/AllCommand.php b/app/vendor/cakephp/bake/src/Command/AllCommand.php new file mode 100644 index 000000000..894347549 --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/AllCommand.php @@ -0,0 +1,123 @@ +_setCommonOptions($parser); + + $parser = $parser->setDescription( + 'Generate the model, controller, template, tests and fixture for a table.' + )->addArgument('name', [ + 'help' => 'Name of the table to generate code for.', + ])->addOption('everything', [ + 'help' => 'Generate code for all tables.', + 'default' => false, + 'boolean' => true, + ])->addOption('prefix', [ + 'help' => 'The namespace prefix to use.', + 'default' => false, + ]); + + return $parser; + } + + /** + * Execute the command. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int|null The exit code or null for success + */ + public function execute(Arguments $args, ConsoleIo $io): ?int + { + $this->extractCommonProperties($args); + $name = $args->getArgument('name') ?? ''; + $name = $this->_getName($name); + + $io->out('Bake All'); + $io->hr(); + + /** @var \Cake\Database\Connection $connection */ + $connection = ConnectionManager::get($this->connection); + $scanner = new TableScanner($connection); + if (empty($name) && !$args->getOption('everything')) { + $io->out('Choose a table to generate from the following:'); + foreach ($scanner->listUnskipped() as $table) { + $io->out('- ' . $this->_camelize($table)); + } + + return static::CODE_SUCCESS; + } + if ($args->getOption('everything')) { + $tables = $scanner->listUnskipped(); + } else { + $tables = [$name]; + } + + foreach ($this->commands as $commandName) { + /** @var \Cake\Command\Command $command */ + $command = new $commandName(); + + $options = $args->getOptions(); + if ( + $args->hasOption('prefix') && + !($command instanceof ControllerCommand) && + !($command instanceof TemplateCommand) + ) { + unset($options['prefix']); + } + + foreach ($tables as $table) { + $subArgs = new Arguments([$table], $options, ['name']); + $command->execute($subArgs, $io); + } + } + + $io->out('Bake All complete.', 1, ConsoleIo::QUIET); + + return static::CODE_SUCCESS; + } +} diff --git a/app/vendor/cakephp/bake/src/Command/BakeCommand.php b/app/vendor/cakephp/bake/src/Command/BakeCommand.php new file mode 100644 index 000000000..24f23da69 --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/BakeCommand.php @@ -0,0 +1,167 @@ +plugin = $plugin; + } + + return $name; + } + + /** + * Get the prefix name. + * + * Handles camelcasing each namespace in the prefix path. + * + * @param \Cake\Console\Arguments $args Arguments instance to read the prefix option from. + * @return string The inflected prefix path. + */ + protected function getPrefix(Arguments $args): string + { + $prefix = $args->getOption('prefix'); + if (!$prefix) { + return ''; + } + $parts = explode('/', $prefix); + + return implode('/', array_map([$this, '_camelize'], $parts)); + } + + /** + * Gets the path for output. Checks the plugin property + * and returns the correct path. + * + * @param \Cake\Console\Arguments $args Arguments instance to read the prefix option from. + * @return string Path to output. + */ + public function getPath(Arguments $args): string + { + $path = APP . $this->pathFragment; + if ($this->plugin) { + $path = $this->_pluginPath($this->plugin) . 'src/' . $this->pathFragment; + } + $prefix = $this->getPrefix($args); + if ($prefix) { + $path .= $prefix . DIRECTORY_SEPARATOR; + } + + return str_replace('/', DIRECTORY_SEPARATOR, $path); + } + + /** + * Gets the path to the template path for the application or plugin. + * + * @param \Cake\Console\Arguments $args Arguments instance to read the prefix option from. + * @param string|null $container The container directory in the templates directory. + * @return string Path to output. + */ + public function getTemplatePath(Arguments $args, ?string $container = null): string + { + $paths = (array)Configure::read('App.paths.templates'); + if (empty($paths)) { + throw new InvalidArgumentException( + 'Could not read template paths. ' . + 'Ensure `App.paths.templates` is defined in your application configuration.' + ); + } + $path = $paths[0]; + if ($this->plugin) { + $path = $this->_pluginPath($this->plugin) . 'templates' . DIRECTORY_SEPARATOR; + } + if ($container) { + $path .= $container . DIRECTORY_SEPARATOR; + } + $prefix = $this->getPrefix($args); + if ($prefix) { + $path .= $prefix . DIRECTORY_SEPARATOR; + } + + return str_replace('/', DIRECTORY_SEPARATOR, $path); + } + + /** + * Delete empty file in a given path + * + * @param string $path Path to folder which contains 'empty' file. + * @param \Cake\Console\ConsoleIo $io ConsoleIo to delete file with. + * @return void + */ + protected function deleteEmptyFile(string $path, ConsoleIo $io): void + { + if (file_exists($path)) { + unlink($path); + $io->out(sprintf('Deleted `%s`', $path), 1, ConsoleIo::QUIET); + } + } +} diff --git a/app/vendor/cakephp/bake/src/Command/BehaviorCommand.php b/app/vendor/cakephp/bake/src/Command/BehaviorCommand.php new file mode 100644 index 000000000..e5b5e852e --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/BehaviorCommand.php @@ -0,0 +1,54 @@ + + */ + public function templateData(Arguments $arguments): array + { + $prefix = $this->getPrefix($arguments); + if ($prefix) { + $prefix = '\\' . str_replace('/', '\\', $prefix); + } + + $namespace = Configure::read('App.namespace'); + if ($this->plugin) { + $namespace = $this->_pluginNamespace($this->plugin); + } + + return compact('namespace', 'prefix'); + } + + /** + * Bake the Cell class and template file. + * + * @param string $name The name of the cell to make. + * @param \Cake\Console\Arguments $args The console arguments + * @param \Cake\Console\ConsoleIo $io The console io + * @return void + */ + public function bake(string $name, Arguments $args, ConsoleIo $io): void + { + $this->bakeTemplate($name, $args, $io); + + parent::bake($name, $args, $io); + } + + /** + * Bake an empty file for a cell. + * + * @param string $name The name of the cell a template is needed for. + * @param \Cake\Console\Arguments $args The console arguments + * @param \Cake\Console\ConsoleIo $io The console io + * @return void + */ + protected function bakeTemplate(string $name, Arguments $args, ConsoleIo $io): void + { + $path = $this->getTemplatePath($args, 'cell'); + $path .= implode(DS, [$name, 'display.php']); + + $io->createFile($path, '', $args->getOption('force')); + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser Parser instance + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $parser = parent::buildOptionParser($parser); + $parser->addOption('prefix', [ + 'help' => 'The namespace prefix to use.', + ]); + + return $parser; + } +} diff --git a/app/vendor/cakephp/bake/src/Command/CommandCommand.php b/app/vendor/cakephp/bake/src/Command/CommandCommand.php new file mode 100644 index 000000000..dfca1a419 --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/CommandCommand.php @@ -0,0 +1,54 @@ +controllerCommand = new ControllerCommand(); + } + + /** + * Execute the command. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int|null The exit code or null for success + */ + public function execute(Arguments $args, ConsoleIo $io): ?int + { + $this->extractCommonProperties($args); + + /** @var \Cake\Database\Connection $connection */ + $connection = ConnectionManager::get($this->connection); + $scanner = new TableScanner($connection); + foreach ($scanner->listUnskipped() as $table) { + $this->getTableLocator()->clear(); + $controllerArgs = new Arguments([$table], $args->getOptions(), ['name']); + $this->controllerCommand->execute($controllerArgs, $io); + } + + return static::CODE_SUCCESS; + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser The console option parser + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $parser = $this->controllerCommand->buildOptionParser($parser); + $parser + ->setDescription('Bake all controller files with tests.') + ->setEpilog(''); + + return $parser; + } +} diff --git a/app/vendor/cakephp/bake/src/Command/ControllerCommand.php b/app/vendor/cakephp/bake/src/Command/ControllerCommand.php new file mode 100644 index 000000000..d83e43969 --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/ControllerCommand.php @@ -0,0 +1,279 @@ +extractCommonProperties($args); + $name = $args->getArgument('name') ?? ''; + $name = $this->_getName($name); + + if (empty($name)) { + /** @var \Cake\Database\Connection $connection */ + $connection = ConnectionManager::get($this->connection); + $scanner = new TableScanner($connection); + $io->out('Possible controllers based on your current database:'); + foreach ($scanner->listUnskipped() as $table) { + $io->out('- ' . $this->_camelize($table)); + } + + return static::CODE_SUCCESS; + } + + $controller = $this->_camelize($name); + $this->bake($controller, $args, $io); + + return static::CODE_SUCCESS; + } + + /** + * Assembles and writes a Controller file + * + * @param string $controllerName Controller name already pluralized and correctly cased. + * @param \Cake\Console\Arguments $args The console arguments + * @param \Cake\Console\ConsoleIo $io The console io + * @return void + */ + public function bake(string $controllerName, Arguments $args, ConsoleIo $io): void + { + $io->quiet(sprintf('Baking controller class for %s...', $controllerName)); + + $actions = []; + if (!$args->getOption('no-actions') && !$args->getOption('actions')) { + $actions = ['index', 'view', 'add', 'edit', 'delete']; + } + if ($args->getOption('actions')) { + $actions = array_map('trim', explode(',', $args->getOption('actions'))); + $actions = array_filter($actions); + } + + $helpers = $this->getHelpers($args); + $components = $this->getComponents($args); + + $prefix = $this->getPrefix($args); + if ($prefix) { + $prefix = '\\' . str_replace('/', '\\', $prefix); + } + + // Controllers default to importing AppController from `App` + $baseNamespace = $namespace = Configure::read('App.namespace'); + if ($this->plugin) { + $namespace = $this->_pluginNamespace($this->plugin); + } + // If the plugin has an AppController other plugin controllers + // should inherit from it. + if ($this->plugin && class_exists("{$namespace}\Controller\AppController")) { + $baseNamespace = $namespace; + } + + $currentModelName = $controllerName; + $plugin = $this->plugin; + if ($plugin) { + $plugin .= '.'; + } + + if ($this->getTableLocator()->exists($plugin . $currentModelName)) { + $modelObj = $this->getTableLocator()->get($plugin . $currentModelName); + } else { + $modelObj = $this->getTableLocator()->get($plugin . $currentModelName, [ + 'connectionName' => $this->connection, + ]); + } + + $pluralName = $this->_variableName($currentModelName); + $singularName = $this->_singularName($currentModelName); + $singularHumanName = $this->_singularHumanName($controllerName); + $pluralHumanName = $this->_variableName($controllerName); + + $defaultModel = sprintf('%s\Model\Table\%sTable', $namespace, $controllerName); + if (!class_exists($defaultModel)) { + $defaultModel = null; + } + $entityClassName = $this->_entityName($modelObj->getAlias()); + + $data = compact( + 'actions', + 'components', + 'currentModelName', + 'defaultModel', + 'entityClassName', + 'helpers', + 'modelObj', + 'namespace', + 'baseNamespace', + 'plugin', + 'pluralHumanName', + 'pluralName', + 'prefix', + 'singularHumanName', + 'singularName' + ); + $data['name'] = $controllerName; + + $this->bakeController($controllerName, $data, $args, $io); + $this->bakeTest($controllerName, $args, $io); + } + + /** + * Generate the controller code + * + * @param string $controllerName The name of the controller. + * @param array $data The data to turn into code. + * @param \Cake\Console\Arguments $args The console args + * @param \Cake\Console\ConsoleIo $io The console io + * @return void + */ + public function bakeController(string $controllerName, array $data, Arguments $args, ConsoleIo $io): void + { + $data += [ + 'name' => null, + 'namespace' => null, + 'prefix' => null, + 'actions' => null, + 'helpers' => null, + 'components' => null, + 'plugin' => null, + 'pluginPath' => null, + ]; + + $renderer = new TemplateRenderer($this->theme); + $renderer->set($data); + + $contents = $renderer->generate('Bake.Controller/controller'); + + $path = $this->getPath($args); + $filename = $path . $controllerName . 'Controller.php'; + $io->createFile($filename, $contents, $args->getOption('force')); + } + + /** + * Assembles and writes a unit test file + * + * @param string $className Controller class name + * @param \Cake\Console\Arguments $args The console arguments + * @param \Cake\Console\ConsoleIo $io The console io + * @return void + */ + public function bakeTest(string $className, Arguments $args, ConsoleIo $io): void + { + if ($args->getOption('no-test')) { + return; + } + $test = new TestCommand(); + $testArgs = new Arguments( + ['controller', $className], + $args->getOptions(), + ['type', 'name'] + ); + $test->execute($testArgs, $io); + } + + /** + * Get the list of components for the controller. + * + * @param \Cake\Console\Arguments $args The console arguments + * @return string[] + */ + public function getComponents(Arguments $args): array + { + $components = []; + if ($args->getOption('components')) { + $components = explode(',', $args->getOption('components')); + $components = array_values(array_filter(array_map('trim', $components))); + } + + return $components; + } + + /** + * Get the list of helpers for the controller. + * + * @param \Cake\Console\Arguments $args The console arguments + * @return string[] + */ + public function getHelpers(Arguments $args): array + { + $helpers = []; + if ($args->getOption('helpers')) { + $helpers = explode(',', $args->getOption('helpers')); + $helpers = array_values(array_filter(array_map('trim', $helpers))); + } + + return $helpers; + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser The console option parser + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $parser = $this->_setCommonOptions($parser); + $parser->setDescription( + 'Bake a controller skeleton.' + )->addArgument('name', [ + 'help' => 'Name of the controller to bake (without the `Controller` suffix). ' . + 'You can use Plugin.name to bake controllers into plugins.', + ])->addOption('components', [ + 'help' => 'The comma separated list of components to use.', + ])->addOption('helpers', [ + 'help' => 'The comma separated list of helpers to use.', + ])->addOption('prefix', [ + 'help' => 'The namespace/routing prefix to use.', + ])->addOption('actions', [ + 'help' => 'The comma separated list of actions to generate. ' . + 'You can include custom methods provided by your template set here.', + ])->addOption('no-test', [ + 'boolean' => true, + 'help' => 'Do not generate a test skeleton.', + ])->addOption('no-actions', [ + 'boolean' => true, + 'help' => 'Do not generate basic CRUD action methods.', + ]); + + return $parser; + } +} diff --git a/app/vendor/cakephp/bake/src/Command/EntryCommand.php b/app/vendor/cakephp/bake/src/Command/EntryCommand.php new file mode 100644 index 000000000..ba7b51558 --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/EntryCommand.php @@ -0,0 +1,231 @@ +commands = $commands; + } + + /** + * Run the command. + * + * Override the run() method so that we can splice in dynamic + * subcommand handling for legacy tasks. + * + * @param array $argv Arguments from the CLI environment. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int|null Exit code or null for success. + */ + public function run(array $argv, ConsoleIo $io): ?int + { + $this->initialize(); + + $parser = $this->getOptionParser(); + try { + [$options, $arguments] = $parser->parse($argv); + $args = new Arguments( + $arguments, + $options, + $parser->argumentNames() + ); + } catch (ConsoleException $e) { + $io->err('Error: ' . $e->getMessage()); + + return static::CODE_ERROR; + } + $this->setOutputLevel($args, $io); + + // This is the variance from Command::run() + if (!$args->getArgumentAt(0) && $args->getOption('help')) { + $this->executeCommand($this->help, [], $io); + + return static::CODE_SUCCESS; + } + + return $this->execute($args, $io); + } + + /** + * Execute the command. + * + * This command acts as a catch-all for legacy tasks that may + * be defined in the application or plugins. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int|null The exit code or null for success + */ + public function execute(Arguments $args, ConsoleIo $io): ?int + { + if ($args->hasArgumentAt(0)) { + $name = $args->getArgumentAt(0); + $task = $this->createTask($name, $io); + if ($task) { + $argList = $args->getArguments(); + + // Remove command name. + array_shift($argList); + foreach ($args->getOptions() as $key => $value) { + if ($value === false) { + continue; + } elseif ($value === true) { + $argList[] = '--' . $key; + } else { + $argList[] = '--' . $key; + $argList[] = $value; + } + } + + $result = $task->runCommand($argList); + if ($result === false) { + return static::CODE_ERROR; + } + if ($result === true) { + return static::CODE_SUCCESS; + } + + return $result; + } + $io->err("Could not find a task named `{$name}`."); + + return static::CODE_ERROR; + } + $io->err('No command provided. Run `bake --help` to get a list of commands.'); + + return static::CODE_ERROR; + } + + /** + * Find and create a Shell based BakeTask + * + * @param string $name The task name. + * @param \Cake\Console\ConsoleIo $io The console io. + * @return \Cake\Console\Shell|null + */ + protected function createTask(string $name, ConsoleIo $io): ?Shell + { + $found = false; + $name = Inflector::camelize($name); + $factory = function ($className, $io) { + $task = new $className($io); + $task->setRootName('cake bake'); + + return $task; + }; + + // Look in each plugin for the requested task + foreach (CorePlugin::loaded() as $plugin) { + $namespace = str_replace('/', '\\', $plugin); + $candidate = $namespace . '\Shell\Task\\' . $name . 'Task'; + if (class_exists($candidate) && is_subclass_of($candidate, BakeTask::class)) { + return $factory($candidate, $io); + } + } + + // Try the app as well + $namespace = Configure::read('App.namespace'); + $candidate = $namespace . '\Shell\Task\\' . $name . 'Task'; + if (class_exists($candidate) && is_subclass_of($candidate, BakeTask::class)) { + return $factory($candidate, $io); + } + + return null; + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser The console option parser + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $this->help = new HelpCommand(); + /** @psalm-suppress InaccessibleMethod Protected methods as class based */ + $parser = $this->help->buildOptionParser($parser); + $parser + ->setDescription( + 'Bake generates code for your application. Different types of classes can be generated' . + ' with the subcommands listed below. For example run bake controller --help' . + ' to learn more about generating a controller.' + ) + ->setEpilog('Older Shell based tasks will not be listed here, but can still be run.'); + $commands = []; + foreach ($this->commands as $command => $class) { + if (substr($command, 0, 4) === 'bake') { + $parts = explode(' ', $command); + + // Remove `bake` + array_shift($parts); + if (count($parts) === 0) { + continue; + } + $commands[$command] = $class; + } + } + + $CommandCollection = new CommandCollection($commands); + $this->help->setCommandCollection($CommandCollection); + + return $parser; + } +} diff --git a/app/vendor/cakephp/bake/src/Command/FixtureAllCommand.php b/app/vendor/cakephp/bake/src/Command/FixtureAllCommand.php new file mode 100644 index 000000000..e6268fc70 --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/FixtureAllCommand.php @@ -0,0 +1,96 @@ +_setCommonOptions($parser); + + $parser = $parser->setDescription( + 'Generate all fixtures for use with the test suite.' + )->addOption('count', [ + 'help' => 'When using generated data, the number of records to include in the fixture(s).', + 'short' => 'n', + 'default' => 1, + ])->addOption('schema', [ + 'help' => 'Create a fixture that imports schema, instead of dumping a schema snapshot into the fixture.', + 'short' => 's', + 'boolean' => true, + ])->addOption('records', [ + 'help' => 'Generate a fixture with records from the non-test database.' . + ' Used with --count and --conditions to limit which records are added to the fixture.', + 'short' => 'r', + 'boolean' => true, + ])->addOption('conditions', [ + 'help' => 'The SQL snippet to use when importing records.', + 'default' => '1=1', + ]); + + return $parser; + } + + /** + * Execute the command. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int|null + */ + public function execute(Arguments $args, ConsoleIo $io): ?int + { + $this->extractCommonProperties($args); + + /** @var \Cake\Database\Connection $connection */ + $connection = ConnectionManager::get($args->getOption('connection') ?? 'default'); + $scanner = new TableScanner($connection); + $fixture = new FixtureCommand(); + foreach ($scanner->listUnskipped() as $table) { + $fixtureArgs = new Arguments([$table], $args->getOptions(), ['name']); + $fixture->execute($fixtureArgs, $io); + } + + return static::CODE_SUCCESS; + } +} diff --git a/app/vendor/cakephp/bake/src/Command/FixtureCommand.php b/app/vendor/cakephp/bake/src/Command/FixtureCommand.php new file mode 100644 index 000000000..1fd184934 --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/FixtureCommand.php @@ -0,0 +1,457 @@ +plugin) { + $path = $this->_pluginPath($this->plugin) . 'tests/' . $dir; + } + + return str_replace('/', DS, $path); + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser Option parser to update. + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $parser = $this->_setCommonOptions($parser); + + $parser = $parser->setDescription( + 'Generate fixtures for use with the test suite. You can use `bake fixture all` to bake all fixtures.' + )->addArgument('name', [ + 'help' => 'Name of the fixture to bake (without the `Fixture` suffix). ' . + 'You can use Plugin.name to bake plugin fixtures.', + ])->addOption('table', [ + 'help' => 'The table name if it does not follow conventions.', + ])->addOption('count', [ + 'help' => 'When using generated data, the number of records to include in the fixture(s).', + 'short' => 'n', + 'default' => 1, + ])->addOption('schema', [ + 'help' => 'Create a fixture that imports schema, instead of dumping a schema snapshot into the fixture.', + 'short' => 's', + 'boolean' => true, + ])->addOption('records', [ + 'help' => 'Generate a fixture with records from the non-test database.' . + ' Used with --count and --conditions to limit which records are added to the fixture.', + 'short' => 'r', + 'boolean' => true, + ])->addOption('conditions', [ + 'help' => 'The SQL snippet to use when importing records.', + 'default' => '1=1', + ]); + + return $parser; + } + + /** + * Execute the command. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int|null The exit code or null for success + */ + public function execute(Arguments $args, ConsoleIo $io): ?int + { + $this->extractCommonProperties($args); + $name = $args->getArgument('name') ?? ''; + $name = $this->_getName($name); + + /** @var \Cake\Database\Connection $connection */ + $connection = ConnectionManager::get($this->connection); + $scanner = new TableScanner($connection); + if (empty($name)) { + $io->out('Choose a fixture to bake from the following:'); + foreach ($scanner->listUnskipped() as $table) { + $io->out('- ' . $this->_camelize($table)); + } + + return static::CODE_SUCCESS; + } + + $table = $args->getOption('table') ?? ''; + $model = $this->_camelize($name); + $this->bake($model, $table, $args, $io); + + return static::CODE_SUCCESS; + } + + /** + * Assembles and writes a Fixture file + * + * @param string $model Name of model to bake. + * @param string $useTable Name of table to use. + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return void + * @throws \RuntimeException + */ + protected function bake(string $model, string $useTable, Arguments $args, ConsoleIo $io): void + { + $table = $schema = $records = $import = $modelImport = null; + + if (!$useTable) { + $useTable = Inflector::tableize($model); + } elseif ($useTable !== Inflector::tableize($model)) { + $table = $useTable; + } + + $importBits = []; + if ($args->getOption('schema')) { + $modelImport = true; + $importBits[] = "'table' => '{$useTable}'"; + } + if (!empty($importBits) && $this->connection !== 'default') { + $importBits[] = "'connection' => '{$this->connection}'"; + } + if (!empty($importBits)) { + $import = sprintf('[%s]', implode(', ', $importBits)); + } + + try { + $data = $this->readSchema($model, $useTable); + } catch (Exception $e) { + $this->getTableLocator()->remove($model); + $useTable = Inflector::underscore($model); + $table = $useTable; + $data = $this->readSchema($model, $useTable); + } + + if ($modelImport === null) { + $schema = $this->_generateSchema($data); + } + + if ($args->getOption('records')) { + $records = $this->_makeRecordString($this->_getRecordsFromTable($args, $model, $useTable)); + } else { + $recordCount = 1; + if ($args->hasOption('count')) { + $recordCount = (int)$args->getOption('count'); + } + $records = $this->_makeRecordString($this->_generateRecords($data, $recordCount)); + } + + $this->generateFixtureFile($args, $io, $model, compact('records', 'table', 'schema', 'import')); + } + + /** + * Get schema metadata for the current table mapping. + * + * @param string $name The model alias to use + * @param string $table The table name to get schema metadata for. + * @return \Cake\Database\Schema\TableSchemaInterface + */ + public function readSchema(string $name, string $table): TableSchemaInterface + { + $connection = ConnectionManager::get($this->connection); + + if ($this->getTableLocator()->exists($name)) { + $model = $this->getTableLocator()->get($name); + } else { + $model = $this->getTableLocator()->get($name, [ + 'table' => $table, + 'connection' => $connection, + ]); + } + + return $model->getSchema(); + } + + /** + * Generate the fixture file, and write to disk + * + * @param \Cake\Console\Arguments $args The CLI arguments. + * @param \Cake\Console\ConsoleIo $io The console io instance. + * @param string $model name of the model being generated + * @param array $otherVars Contents of the fixture file. + * @return void + */ + public function generateFixtureFile(Arguments $args, ConsoleIo $io, string $model, array $otherVars): void + { + $defaults = [ + 'name' => $model, + 'table' => null, + 'schema' => null, + 'records' => null, + 'import' => null, + 'fields' => null, + 'namespace' => Configure::read('App.namespace'), + ]; + if ($this->plugin) { + $defaults['namespace'] = $this->_pluginNamespace($this->plugin); + } + $vars = $otherVars + $defaults; + + $path = $this->getPath($args); + $filename = $vars['name'] . 'Fixture.php'; + + $renderer = new TemplateRenderer($args->getOption('theme')); + $renderer->set('model', $model); + $renderer->set($vars); + $content = $renderer->generate('Bake.tests/fixture'); + + $io->out("\n" . sprintf('Baking test fixture for %s...', $model), 1, ConsoleIo::QUIET); + $io->createFile($path . $filename, $content, $args->getOption('force')); + $emptyFile = $path . '.gitkeep'; + $this->deleteEmptyFile($emptyFile, $io); + } + + /** + * Generates a string representation of a schema. + * + * @param \Cake\Database\Schema\TableSchemaInterface $table Table schema + * @return string fields definitions + */ + protected function _generateSchema(TableSchemaInterface $table): string + { + $cols = $indexes = $constraints = []; + foreach ($table->columns() as $field) { + $fieldData = $table->getColumn($field); + $properties = implode(', ', $this->_values($fieldData)); + $cols[] = " '$field' => [$properties],"; + } + foreach ($table->indexes() as $index) { + $fieldData = $table->getIndex($index); + $properties = implode(', ', $this->_values($fieldData)); + $indexes[] = " '$index' => [$properties],"; + } + foreach ($table->constraints() as $index) { + $fieldData = $table->getConstraint($index); + $properties = implode(', ', $this->_values($fieldData)); + $constraints[] = " '$index' => [$properties],"; + } + $options = $this->_values($table->getOptions()); + + $content = implode("\n", $cols) . "\n"; + if (!empty($indexes)) { + $content .= " '_indexes' => [\n" . implode("\n", $indexes) . "\n ],\n"; + } + if (!empty($constraints)) { + $content .= " '_constraints' => [\n" . implode("\n", $constraints) . "\n ],\n"; + } + if (!empty($options)) { + foreach ($options as &$option) { + $option = ' ' . $option; + } + $content .= " '_options' => [\n" . implode(",\n", $options) . "\n ],\n"; + } + + return "[\n$content ]"; + } + + /** + * Formats Schema columns from Model Object + * + * @param array $values options keys(type, null, default, key, length, extra) + * @return string[] Formatted values + */ + protected function _values(array $values): array + { + $vals = []; + + foreach ($values as $key => $val) { + if (is_array($val)) { + $vals[] = "'{$key}' => [" . implode(', ', $this->_values($val)) . ']'; + } else { + $val = var_export($val, true); + if ($val === 'NULL') { + $val = 'null'; + } + if (!is_numeric($key)) { + $vals[] = "'{$key}' => {$val}"; + } else { + $vals[] = "{$val}"; + } + } + } + + return $vals; + } + + /** + * Generate String representation of Records + * + * @param \Cake\Database\Schema\TableSchemaInterface $table Table schema array + * @param int $recordCount The number of records to generate. + * @return array Array of records to use in the fixture. + */ + protected function _generateRecords(TableSchemaInterface $table, int $recordCount = 1): array + { + $records = []; + for ($i = 0; $i < $recordCount; $i++) { + $record = []; + foreach ($table->columns() as $field) { + $fieldInfo = $table->getColumn($field); + $insert = ''; + switch ($fieldInfo['type']) { + case 'decimal': + $insert = $i + 1.5; + break; + case 'biginteger': + case 'integer': + case 'float': + case 'smallinteger': + case 'tinyinteger': + $insert = $i + 1; + break; + case 'string': + case 'binary': + $isPrimary = in_array($field, $table->getPrimaryKey()); + if ($isPrimary) { + $insert = Text::uuid(); + } else { + $insert = 'Lorem ipsum dolor sit amet'; + if (!empty($fieldInfo['length'])) { + $insert = substr( + $insert, + 0, + (int)$fieldInfo['length'] > 2 + ? (int)$fieldInfo['length'] - 2 + : (int)$fieldInfo['length'] + ); + } + } + break; + case 'timestamp': + case 'timestamptimezone': + case 'timestampfractional': + $insert = time(); + break; + case 'datetime': + $insert = date('Y-m-d H:i:s'); + break; + case 'date': + $insert = date('Y-m-d'); + break; + case 'time': + $insert = date('H:i:s'); + break; + case 'boolean': + $insert = 1; + break; + case 'text': + $insert = 'Lorem ipsum dolor sit amet, aliquet feugiat.'; + $insert .= ' Convallis morbi fringilla gravida,'; + $insert .= ' phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin'; + $insert .= ' venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla'; + $insert .= ' vestibulum massa neque ut et, id hendrerit sit,'; + $insert .= ' feugiat in taciti enim proin nibh, tempor dignissim, rhoncus'; + $insert .= ' duis vestibulum nunc mattis convallis.'; + break; + case 'uuid': + $insert = Text::uuid(); + break; + } + $record[$field] = $insert; + } + $records[] = $record; + } + + return $records; + } + + /** + * Convert a $records array into a string. + * + * @param array $records Array of records to be converted to string + * @return string A string value of the $records array. + */ + protected function _makeRecordString(array $records): string + { + $out = "[\n"; + foreach ($records as $record) { + $values = []; + foreach ($record as $field => $value) { + if ($value instanceof DateTimeInterface) { + $value = $value->format('Y-m-d H:i:s'); + } + $val = var_export($value, true); + if ($val === 'NULL') { + $val = 'null'; + } + $values[] = " '$field' => $val"; + } + $out .= " [\n"; + $out .= implode(",\n", $values); + $out .= ",\n ],\n"; + } + $out .= ' ]'; + + return $out; + } + + /** + * Interact with the user to get a custom SQL condition and use that to extract data + * to build a fixture. + * + * @param \Cake\Console\Arguments $args CLI arguments + * @param string $modelName name of the model to take records from. + * @param string|null $useTable Name of table to use. + * @return array Array of records. + */ + protected function _getRecordsFromTable(Arguments $args, string $modelName, ?string $useTable = null): array + { + $recordCount = ($args->getOption('count') ?? 10); + /** @var string $conditions */ + $conditions = ($args->getOption('conditions') ?? '1=1'); + if ($this->getTableLocator()->exists($modelName)) { + $model = $this->getTableLocator()->get($modelName); + } else { + $model = $this->getTableLocator()->get($modelName, [ + 'table' => $useTable, + 'connection' => ConnectionManager::get($this->connection), + ]); + } + $records = $model->find('all') + ->where($conditions) + ->limit((int)$recordCount) + ->enableHydration(false); + + return $records->toArray(); + } +} diff --git a/app/vendor/cakephp/bake/src/Command/FormCommand.php b/app/vendor/cakephp/bake/src/Command/FormCommand.php new file mode 100644 index 000000000..f84572bad --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/FormCommand.php @@ -0,0 +1,54 @@ +modelCommand = new ModelCommand(); + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser The parser to configure + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $parser = $this->modelCommand->buildOptionParser($parser); + $parser + ->setDescription('Bake all model files with associations and validation.') + ->setEpilog(''); + + return $parser; + } + + /** + * Execute the command. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int|null The exit code or null for success + */ + public function execute(Arguments $args, ConsoleIo $io): ?int + { + $this->extractCommonProperties($args); + /** @var \Cake\Database\Connection $connection */ + $connection = ConnectionManager::get($this->connection); + $scanner = new TableScanner($connection); + foreach ($scanner->listUnskipped() as $table) { + $this->getTableLocator()->clear(); + $modelArgs = new Arguments([$table], $args->getOptions(), ['name']); + $this->modelCommand->execute($modelArgs, $io); + } + + return static::CODE_SUCCESS; + } +} diff --git a/app/vendor/cakephp/bake/src/Command/ModelCommand.php b/app/vendor/cakephp/bake/src/Command/ModelCommand.php new file mode 100644 index 000000000..2be46282b --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/ModelCommand.php @@ -0,0 +1,1205 @@ +extractCommonProperties($args); + $name = $this->_getName($args->getArgument('name') ?? ''); + + if (empty($name)) { + $io->out('Choose a model to bake from the following:'); + foreach ($this->listUnskipped() as $table) { + $io->out('- ' . $this->_camelize($table)); + } + + return static::CODE_SUCCESS; + } + + $this->bake($this->_camelize($name), $args, $io); + + return static::CODE_SUCCESS; + } + + /** + * Generate code for the given model name. + * + * @param string $name The model name to generate. + * @param \Cake\Console\Arguments $args Console Arguments. + * @param \Cake\Console\ConsoleIo $io Console Io. + * @return void + */ + public function bake(string $name, Arguments $args, ConsoleIo $io): void + { + $table = $this->getTable($name, $args); + $tableObject = $this->getTableObject($name, $table); + $data = $this->getTableContext($tableObject, $table, $name, $args, $io); + $this->bakeTable($tableObject, $data, $args, $io); + $this->bakeEntity($tableObject, $data, $args, $io); + $this->bakeFixture($tableObject->getAlias(), $tableObject->getTable(), $args, $io); + $this->bakeTest($tableObject->getAlias(), $args, $io); + } + + /** + * Get table context for baking a given table. + * + * @param \Cake\ORM\Table $tableObject The model name to generate. + * @param string $table The table name for the model being baked. + * @param string $name The model name to generate. + * @param \Cake\Console\Arguments $args CLI Arguments + * @param \Cake\Console\ConsoleIo $io CLI io + * @return array + */ + public function getTableContext( + Table $tableObject, + string $table, + string $name, + Arguments $args, + ConsoleIo $io + ): array { + $associations = $this->getAssociations($tableObject, $args, $io); + $this->applyAssociations($tableObject, $associations); + $associationInfo = $this->getAssociationInfo($tableObject); + + $primaryKey = $this->getPrimaryKey($tableObject, $args); + $displayField = $this->getDisplayField($tableObject, $args); + $propertySchema = $this->getEntityPropertySchema($tableObject); + $fields = $this->getFields($tableObject, $args); + $validation = $this->getValidation($tableObject, $associations, $args); + $rulesChecker = $this->getRules($tableObject, $associations, $args); + $behaviors = $this->getBehaviors($tableObject); + $connection = $this->connection; + $hidden = $this->getHiddenFields($tableObject, $args); + + return compact( + 'associations', + 'associationInfo', + 'primaryKey', + 'displayField', + 'table', + 'propertySchema', + 'fields', + 'validation', + 'rulesChecker', + 'behaviors', + 'connection', + 'hidden' + ); + } + + /** + * Get a model object for a class name. + * + * @param string $className Name of class you want model to be. + * @param string $table Table name + * @return \Cake\ORM\Table Table instance + */ + public function getTableObject(string $className, string $table): Table + { + if (!empty($this->plugin)) { + $className = $this->plugin . '.' . $className; + } + + if ($this->getTableLocator()->exists($className)) { + return $this->getTableLocator()->get($className); + } + + return $this->getTableLocator()->get($className, [ + 'name' => $className, + 'table' => $this->tablePrefix . $table, + 'connection' => ConnectionManager::get($this->connection), + ]); + } + + /** + * Get the array of associations to generate. + * + * @param \Cake\ORM\Table $table The table to get associations for. + * @param \Cake\Console\Arguments $args CLI Arguments + * @param \Cake\Console\ConsoleIo $io CLI io + * @return array + */ + public function getAssociations(Table $table, Arguments $args, ConsoleIo $io): array + { + if ($args->getOption('no-associations')) { + return []; + } + $io->out('One moment while associations are detected.'); + + $this->listAll(); + + $associations = [ + 'belongsTo' => [], + 'hasMany' => [], + 'belongsToMany' => [], + ]; + + $primary = $table->getPrimaryKey(); + $associations = $this->findBelongsTo($table, $associations); + + if (is_array($primary) && count($primary) > 1) { + $io->warning( + 'Bake cannot generate associations for composite primary keys at this time.' + ); + + return $associations; + } + + $associations = $this->findHasMany($table, $associations); + $associations = $this->findBelongsToMany($table, $associations); + + return $associations; + } + + /** + * Sync the in memory table object. + * + * Composer's class cache prevents us from loading the + * newly generated class. Applying associations if we have a + * generic table object means fields will be detected correctly. + * + * @param \Cake\ORM\Table $model The table to apply associations to. + * @param array $associations The associations to append. + * @return void + */ + public function applyAssociations(Table $model, array $associations): void + { + if (get_class($model) !== Table::class) { + return; + } + foreach ($associations as $type => $assocs) { + foreach ($assocs as $assoc) { + $alias = $assoc['alias']; + unset($assoc['alias']); + $model->{$type}($alias, $assoc); + } + } + } + + /** + * Collects meta information for associations. + * + * The information returned is in the format of map, where the key is the + * association alias: + * + * ``` + * [ + * 'associationAlias' => [ + * 'targetFqn' => '...' + * ], + * // ... + * ] + * ``` + * + * @param \Cake\ORM\Table $table The table from which to collect association information. + * @return array A map of association information. + */ + public function getAssociationInfo(Table $table): array + { + $info = []; + + $appNamespace = Configure::read('App.namespace'); + + foreach ($table->associations() as $association) { + /** @var \Cake\ORM\Association $association */ + + $tableClass = get_class($association->getTarget()); + if ($tableClass === Table::class) { + $namespace = $appNamespace; + + $className = $association->getClassName(); + [$plugin, $className] = pluginSplit($className); + if ($plugin !== null) { + $namespace = $plugin; + } + + $namespace = str_replace('/', '\\', trim($namespace, '\\')); + $tableClass = $namespace . '\Model\Table\\' . $className . 'Table'; + } + + $info[$association->getName()] = [ + 'targetFqn' => '\\' . $tableClass, + ]; + } + + return $info; + } + + /** + * Find belongsTo relations and add them to the associations list. + * + * @param \Cake\ORM\Table $model Database\Table instance of table being generated. + * @param array $associations Array of in progress associations + * @return array Associations with belongsTo added in. + */ + public function findBelongsTo(Table $model, array $associations): array + { + $schema = $model->getSchema(); + foreach ($schema->columns() as $fieldName) { + if (!preg_match('/^.+_id$/', $fieldName) || ($schema->getPrimaryKey() === [$fieldName])) { + continue; + } + + if ($fieldName === 'parent_id') { + $className = $this->plugin ? $this->plugin . '.' . $model->getAlias() : $model->getAlias(); + $assoc = [ + 'alias' => 'Parent' . $model->getAlias(), + 'className' => $className, + 'foreignKey' => $fieldName, + ]; + } else { + $tmpModelName = $this->_modelNameFromKey($fieldName); + if (!in_array(Inflector::tableize($tmpModelName), $this->_tables, true)) { + $found = $this->findTableReferencedBy($schema, $fieldName); + if ($found) { + $tmpModelName = Inflector::camelize($found); + } + } + $assoc = [ + 'alias' => $tmpModelName, + 'foreignKey' => $fieldName, + ]; + if ($schema->getColumn($fieldName)['null'] === false) { + $assoc['joinType'] = 'INNER'; + } + } + + if ($this->plugin && empty($assoc['className'])) { + $assoc['className'] = $this->plugin . '.' . $assoc['alias']; + } + $associations['belongsTo'][] = $assoc; + } + + return $associations; + } + + /** + * find the table, if any, actually referenced by the passed key field. + * Search tables in db for keyField; if found search key constraints + * for the table to which it refers. + * + * @param \Cake\Database\Schema\TableSchemaInterface $schema The table schema to find a constraint for. + * @param string $keyField The field to check for a constraint. + * @return string|null Either the referenced table or null if the field has no constraints. + */ + public function findTableReferencedBy(TableSchemaInterface $schema, string $keyField): ?string + { + if (!$schema->getColumn($keyField)) { + return null; + } + + foreach ($schema->constraints() as $constraint) { + $constraintInfo = $schema->getConstraint($constraint); + if (!in_array($keyField, $constraintInfo['columns'])) { + continue; + } + + if (!isset($constraintInfo['references'])) { + continue; + } + $length = $this->tablePrefix ? mb_strlen($this->tablePrefix) : 0; + if ($length > 0 && mb_substr($constraintInfo['references'][0], 0, $length) === $this->tablePrefix) { + return mb_substr($constraintInfo['references'][0], $length); + } + + return $constraintInfo['references'][0]; + } + + return null; + } + + /** + * Find the hasMany relations and add them to associations list + * + * @param \Cake\ORM\Table $model Model instance being generated + * @param array $associations Array of in progress associations + * @return array Associations with hasMany added in. + */ + public function findHasMany(Table $model, array $associations): array + { + $schema = $model->getSchema(); + $primaryKey = $schema->getPrimaryKey(); + $tableName = $schema->name(); + $foreignKey = $this->_modelKey($tableName); + + $tables = $this->listAll(); + foreach ($tables as $otherTableName) { + $otherModel = $this->getTableObject($this->_camelize($otherTableName), $otherTableName); + $otherSchema = $otherModel->getSchema(); + + $pregTableName = preg_quote($tableName, '/'); + $pregPattern = "/^{$pregTableName}_|_{$pregTableName}$/"; + if (preg_match($pregPattern, $otherTableName) === 1) { + $possibleHABTMTargetTable = preg_replace($pregPattern, '', $otherTableName); + if (in_array($possibleHABTMTargetTable, $tables)) { + continue; + } + } + + foreach ($otherSchema->columns() as $fieldName) { + $assoc = false; + if (!in_array($fieldName, $primaryKey) && $fieldName === $foreignKey) { + $assoc = [ + 'alias' => $otherModel->getAlias(), + 'foreignKey' => $fieldName, + ]; + } elseif ($otherTableName === $tableName && $fieldName === 'parent_id') { + $className = $this->plugin ? $this->plugin . '.' . $model->getAlias() : $model->getAlias(); + $assoc = [ + 'alias' => 'Child' . $model->getAlias(), + 'className' => $className, + 'foreignKey' => $fieldName, + ]; + } + if ($assoc && $this->plugin && empty($assoc['className'])) { + $assoc['className'] = $this->plugin . '.' . $assoc['alias']; + } + if ($assoc) { + $associations['hasMany'][] = $assoc; + } + } + } + + return $associations; + } + + /** + * Find the BelongsToMany relations and add them to associations list + * + * @param \Cake\ORM\Table $model Model instance being generated + * @param array $associations Array of in-progress associations + * @return array Associations with belongsToMany added in. + */ + public function findBelongsToMany(Table $model, array $associations): array + { + $schema = $model->getSchema(); + $tableName = $schema->name(); + $foreignKey = $this->_modelKey($tableName); + + $tables = $this->listAll(); + foreach ($tables as $otherTableName) { + $assocTable = null; + $offset = strpos($otherTableName, $tableName . '_'); + $otherOffset = strpos($otherTableName, '_' . $tableName); + + if ($offset !== false) { + $assocTable = substr($otherTableName, strlen($tableName . '_')); + } elseif ($otherOffset !== false) { + $assocTable = substr($otherTableName, 0, $otherOffset); + } + if ($assocTable && in_array($assocTable, $tables)) { + $habtmName = $this->_camelize($assocTable); + $assoc = [ + 'alias' => $habtmName, + 'foreignKey' => $foreignKey, + 'targetForeignKey' => $this->_modelKey($habtmName), + 'joinTable' => $otherTableName, + ]; + if ($this->plugin) { + $assoc['className'] = $this->plugin . '.' . $assoc['alias']; + } + $associations['belongsToMany'][] = $assoc; + } + } + + return $associations; + } + + /** + * Get the display field from the model or parameters + * + * @param \Cake\ORM\Table $model The model to introspect. + * @param \Cake\Console\Arguments $args CLI Arguments + * @return string|null + * @psalm-suppress InvalidReturnType + */ + public function getDisplayField(Table $model, Arguments $args): ?string + { + if ($args->getOption('display-field')) { + return (string)$args->getOption('display-field'); + } + + /** @psalm-suppress InvalidReturnStatement */ + return $model->getDisplayField(); + } + + /** + * Get the primary key field from the model or parameters + * + * @param \Cake\ORM\Table $model The model to introspect. + * @param \Cake\Console\Arguments $args CLI Arguments + * @return string[] The columns in the primary key + */ + public function getPrimaryKey(Table $model, Arguments $args): array + { + if ($args->getOption('primary-key')) { + $fields = explode(',', $args->getOption('primary-key')); + + return array_values(array_filter(array_map('trim', $fields))); + } + + return (array)$model->getPrimaryKey(); + } + + /** + * Returns an entity property "schema". + * + * The schema is an associative array, using the property names + * as keys, and information about the property as the value. + * + * The value part consists of at least two keys: + * + * - `kind`: The kind of property, either `column`, which indicates + * that the property stems from a database column, or `association`, + * which identifies a property that is generated for an associated + * table. + * - `type`: The type of the property value. For the `column` kind + * this is the database type associated with the column, and for the + * `association` type it's the FQN of the entity class for the + * associated table. + * + * For `association` properties an additional key will be available + * + * - `association`: Holds an instance of the corresponding association + * class. + * + * @param \Cake\ORM\Table $model The model to introspect. + * @return array The property schema + */ + public function getEntityPropertySchema(Table $model): array + { + $properties = []; + + $schema = $model->getSchema(); + foreach ($schema->columns() as $column) { + $columnSchema = $schema->getColumn($column); + + $properties[$column] = [ + 'kind' => 'column', + 'type' => $columnSchema['type'], + 'null' => $columnSchema['null'], + ]; + } + + foreach ($model->associations() as $association) { + $entityClass = '\\' . ltrim($association->getTarget()->getEntityClass(), '\\'); + + if ($entityClass === '\Cake\ORM\Entity') { + $namespace = Configure::read('App.namespace'); + + [$plugin, ] = pluginSplit($association->getTarget()->getRegistryAlias()); + if ($plugin !== null) { + $namespace = $plugin; + } + $namespace = str_replace('/', '\\', trim($namespace, '\\')); + + $entityClass = $this->_entityName($association->getTarget()->getAlias()); + $entityClass = '\\' . $namespace . '\Model\Entity\\' . $entityClass; + } + + $properties[$association->getProperty()] = [ + 'kind' => 'association', + 'association' => $association, + 'type' => $entityClass, + ]; + } + + return $properties; + } + + /** + * Evaluates the fields and no-fields options, and + * returns if, and which fields should be made accessible. + * + * If no fields are specified and the `no-fields` parameter is + * not set, then all non-primary key fields + association + * fields will be set as accessible. + * + * @param \Cake\ORM\Table $table The table instance to get fields for. + * @param \Cake\Console\Arguments $args CLI Arguments + * @return string[]|false|null Either an array of fields, `false` in + * case the no-fields option is used, or `null` if none of the + * field options is used. + */ + public function getFields(Table $table, Arguments $args) + { + if ($args->getOption('no-fields')) { + return false; + } + if ($args->getOption('fields')) { + $fields = explode(',', $args->getOption('fields')); + + return array_values(array_filter(array_map('trim', $fields))); + } + $schema = $table->getSchema(); + $fields = $schema->columns(); + foreach ($table->associations() as $assoc) { + $fields[] = $assoc->getProperty(); + } + $primaryKey = $schema->getPrimaryKey(); + + return array_values(array_diff($fields, $primaryKey)); + } + + /** + * Get the hidden fields from a model. + * + * Uses the hidden and no-hidden options. + * + * @param \Cake\ORM\Table $model The model to introspect. + * @param \Cake\Console\Arguments $args CLI Arguments + * @return string[] The columns to make accessible + */ + public function getHiddenFields(Table $model, Arguments $args): array + { + if ($args->getOption('no-hidden')) { + return []; + } + if ($args->getOption('hidden')) { + $fields = explode(',', $args->getOption('hidden')); + + return array_values(array_filter(array_map('trim', $fields))); + } + $schema = $model->getSchema(); + $columns = $schema->columns(); + $whitelist = ['token', 'password', 'passwd']; + + return array_values(array_intersect($columns, $whitelist)); + } + + /** + * Generate default validation rules. + * + * @param \Cake\ORM\Table $model The model to introspect. + * @param array $associations The associations list. + * @param \Cake\Console\Arguments $args CLI Arguments + * @return array|false The validation rules. + */ + public function getValidation(Table $model, array $associations, Arguments $args) + { + if ($args->getOption('no-validation')) { + return []; + } + $schema = $model->getSchema(); + $fields = $schema->columns(); + if (!$fields) { + return false; + } + + $validate = []; + $primaryKey = $schema->getPrimaryKey(); + $foreignKeys = []; + if (isset($associations['belongsTo'])) { + foreach ($associations['belongsTo'] as $assoc) { + $foreignKeys[] = $assoc['foreignKey']; + } + } + foreach ($fields as $fieldName) { + if (in_array($fieldName, $foreignKeys, true)) { + continue; + } + $field = $schema->getColumn($fieldName); + $validation = $this->fieldValidation($schema, $fieldName, $field, $primaryKey); + if ($validation) { + $validate[$fieldName] = $validation; + } + } + + return $validate; + } + + /** + * Does individual field validation handling. + * + * @param \Cake\Database\Schema\TableSchemaInterface $schema The table schema for the current field. + * @param string $fieldName Name of field to be validated. + * @param array $metaData metadata for field + * @param array $primaryKey The primary key field + * @return array Array of validation for the field. + */ + public function fieldValidation( + TableSchemaInterface $schema, + string $fieldName, + array $metaData, + array $primaryKey + ): array { + $ignoreFields = ['lft', 'rght', 'created', 'modified', 'updated']; + if (in_array($fieldName, $ignoreFields, true)) { + return []; + } + + $rules = []; + if ($fieldName === 'email') { + $rules['email'] = []; + } elseif ($metaData['type'] === 'uuid') { + $rules['uuid'] = []; + } elseif ($metaData['type'] === 'integer') { + if ($metaData['unsigned']) { + $rules['nonNegativeInteger'] = []; + } else { + $rules['integer'] = []; + } + } elseif ($metaData['type'] === 'float') { + $rules['numeric'] = []; + if ($metaData['unsigned']) { + $rules['greaterThanOrEqual'] = [ + 0, + ]; + } + } elseif ($metaData['type'] === 'decimal') { + $rules['decimal'] = []; + if ($metaData['unsigned']) { + $rules['greaterThanOrEqual'] = [ + 0, + ]; + } + } elseif ($metaData['type'] === 'boolean') { + $rules['boolean'] = []; + } elseif ($metaData['type'] === 'date') { + $rules['date'] = []; + } elseif ($metaData['type'] === 'time') { + $rules['time'] = []; + } elseif (strpos($metaData['type'], 'datetime') === 0) { + $rules['dateTime'] = []; + } elseif (strpos($metaData['type'], 'timestamp') === 0) { + $rules['dateTime'] = []; + } elseif ($metaData['type'] === 'inet') { + $rules['ip'] = []; + } elseif (in_array($metaData['type'], ['char', 'string', 'text'], true)) { + $rules['scalar'] = []; + if ($metaData['length'] > 0) { + $rules['maxLength'] = [$metaData['length']]; + } + } + + $validation = []; + foreach ($rules as $rule => $args) { + $validation[$rule] = [ + 'rule' => $rule, + 'args' => $args, + ]; + } + + if (in_array($fieldName, $primaryKey, true)) { + $validation['allowEmpty'] = [ + 'rule' => $this->getEmptyMethod($fieldName, $metaData), + 'args' => [null, 'create'], + ]; + } elseif ($metaData['null'] === true) { + $validation['allowEmpty'] = [ + 'rule' => $this->getEmptyMethod($fieldName, $metaData), + 'args' => [], + ]; + } else { + if ($metaData['default'] === null || $metaData['default'] === false) { + $validation['requirePresence'] = [ + 'rule' => 'requirePresence', + 'args' => ['create'], + ]; + } + $validation['notEmpty'] = [ + 'rule' => $this->getEmptyMethod($fieldName, $metaData, 'not'), + 'args' => [], + ]; + } + + foreach ($schema->constraints() as $constraint) { + $constraint = $schema->getConstraint($constraint); + if (!in_array($fieldName, $constraint['columns'], true) || count($constraint['columns']) > 1) { + continue; + } + + $timeTypes = [ + 'datetime', + 'timestamp', + 'datetimefractional', + 'timestampfractional', + 'timestamptimezone', + 'date', + 'time', + ]; + $notDatetime = !in_array($metaData['type'], $timeTypes, true); + if ($constraint['type'] === TableSchema::CONSTRAINT_UNIQUE && $notDatetime) { + $validation['unique'] = ['rule' => 'validateUnique', 'provider' => 'table']; + } + } + + return $validation; + } + + /** + * Get the specific allow empty method for field based on metadata. + * + * @param string $fieldName Field name. + * @param array $metaData Field meta data. + * @param string $prefix Method name prefix. + * @return string + */ + protected function getEmptyMethod(string $fieldName, array $metaData, string $prefix = 'allow'): string + { + switch ($metaData['type']) { + case 'date': + return $prefix . 'EmptyDate'; + + case 'time': + return $prefix . 'EmptyTime'; + + case 'datetime': + case 'datetimefractional': + case 'timestamp': + case 'timestampfractional': + case 'timestamptimezone': + return $prefix . 'EmptyDateTime'; + } + + if (preg_match('/file|image/', $fieldName)) { + return $prefix . 'EmptyFile'; + } + + return $prefix . 'EmptyString'; + } + + /** + * Generate default rules checker. + * + * @param \Cake\ORM\Table $model The model to introspect. + * @param array $associations The associations for the model. + * @param \Cake\Console\Arguments $args CLI Arguments + * @return array The rules to be applied. + */ + public function getRules(Table $model, array $associations, Arguments $args): array + { + if ($args->getOption('no-rules')) { + return []; + } + $schema = $model->getSchema(); + $fields = $schema->columns(); + if (empty($fields)) { + return []; + } + + $uniqueColumns = ['username', 'login']; + if (in_array($model->getAlias(), ['Users', 'Accounts'])) { + $uniqueColumns[] = 'email'; + } + + $rules = []; + foreach ($fields as $fieldName) { + if (in_array($fieldName, $uniqueColumns, true)) { + $rules[$fieldName] = ['name' => 'isUnique']; + } + } + foreach ($schema->constraints() as $name) { + $constraint = $schema->getConstraint($name); + if ($constraint['type'] !== TableSchema::CONSTRAINT_UNIQUE) { + continue; + } + if (count($constraint['columns']) > 1) { + continue; + } + $rules[$constraint['columns'][0]] = ['name' => 'isUnique']; + } + + if (empty($associations['belongsTo'])) { + return $rules; + } + + foreach ($associations['belongsTo'] as $assoc) { + $rules[$assoc['foreignKey']] = ['name' => 'existsIn', 'extra' => $assoc['alias']]; + } + + return $rules; + } + + /** + * Get behaviors + * + * @param \Cake\ORM\Table $model The model to generate behaviors for. + * @return array Behaviors + */ + public function getBehaviors(Table $model): array + { + $behaviors = []; + $schema = $model->getSchema(); + $fields = $schema->columns(); + if (empty($fields)) { + return []; + } + if (in_array('created', $fields, true) || in_array('modified', $fields, true)) { + $behaviors['Timestamp'] = []; + } + + if ( + in_array('lft', $fields, true) + && $schema->getColumnType('lft') === 'integer' + && in_array('rght', $fields, true) + && $schema->getColumnType('rght') === 'integer' + && in_array('parent_id', $fields, true) + ) { + $behaviors['Tree'] = []; + } + + $counterCache = $this->getCounterCache($model); + if (!empty($counterCache)) { + $behaviors['CounterCache'] = $counterCache; + } + + return $behaviors; + } + + /** + * Get CounterCaches + * + * @param \Cake\ORM\Table $model The table to get counter cache fields for. + * @return array CounterCache configurations + */ + public function getCounterCache(Table $model): array + { + $belongsTo = $this->findBelongsTo($model, ['belongsTo' => []]); + $counterCache = []; + foreach ($belongsTo['belongsTo'] as $otherTable) { + $otherAlias = $otherTable['alias']; + $otherModel = $this->getTableObject($this->_camelize($otherAlias), Inflector::underscore($otherAlias)); + + try { + $otherSchema = $otherModel->getSchema(); + } catch (Exception $e) { + continue; + } + + $otherFields = $otherSchema->columns(); + $alias = $model->getAlias(); + $field = Inflector::singularize(Inflector::underscore($alias)) . '_count'; + if (in_array($field, $otherFields, true)) { + $counterCache[$otherAlias] = [$field]; + } + } + + return $counterCache; + } + + /** + * Bake an entity class. + * + * @param \Cake\ORM\Table $model Model name or object + * @param array $data An array to use to generate the Table + * @param \Cake\Console\Arguments $args CLI Arguments + * @param \Cake\Console\ConsoleIo $io CLI io + * @return void + */ + public function bakeEntity(Table $model, array $data, Arguments $args, ConsoleIo $io): void + { + if ($args->getOption('no-entity')) { + return; + } + $name = $this->_entityName($model->getAlias()); + + $namespace = Configure::read('App.namespace'); + $pluginPath = ''; + if ($this->plugin) { + $namespace = $this->_pluginNamespace($this->plugin); + $pluginPath = $this->plugin . '.'; + } + + $data += [ + 'name' => $name, + 'namespace' => $namespace, + 'plugin' => $this->plugin, + 'pluginPath' => $pluginPath, + 'primaryKey' => [], + ]; + + $renderer = new TemplateRenderer($this->theme); + $renderer->set($data); + $out = $renderer->generate('Bake.Model/entity'); + + $path = $this->getPath($args); + $filename = $path . 'Entity' . DS . $name . '.php'; + $io->out("\n" . sprintf('Baking entity class for %s...', $name), 1, ConsoleIo::QUIET); + $io->createFile($filename, $out, $args->getOption('force')); + + $emptyFile = $path . 'Entity' . DS . '.gitkeep'; + $this->deleteEmptyFile($emptyFile, $io); + } + + /** + * Bake a table class. + * + * @param \Cake\ORM\Table $model Model name or object + * @param array $data An array to use to generate the Table + * @param \Cake\Console\Arguments $args CLI Arguments + * @param \Cake\Console\ConsoleIo $io CLI Arguments + * @return void + */ + public function bakeTable(Table $model, array $data, Arguments $args, ConsoleIo $io): void + { + if ($args->getOption('no-table')) { + return; + } + + $namespace = Configure::read('App.namespace'); + $pluginPath = ''; + if ($this->plugin) { + $namespace = $this->_pluginNamespace($this->plugin); + } + + $name = $model->getAlias(); + $entity = $this->_entityName($model->getAlias()); + $data += [ + 'plugin' => $this->plugin, + 'pluginPath' => $pluginPath, + 'namespace' => $namespace, + 'name' => $name, + 'entity' => $entity, + 'associations' => [], + 'primaryKey' => 'id', + 'displayField' => null, + 'table' => null, + 'validation' => [], + 'rulesChecker' => [], + 'behaviors' => [], + 'connection' => $this->connection, + ]; + + $renderer = new TemplateRenderer($this->theme); + $renderer->set($data); + $out = $renderer->generate('Bake.Model/table'); + + $path = $this->getPath($args); + $filename = $path . 'Table' . DS . $name . 'Table.php'; + $io->out("\n" . sprintf('Baking table class for %s...', $name), 1, ConsoleIo::QUIET); + $io->createFile($filename, $out, $args->getOption('force')); + + // Work around composer caching that classes/files do not exist. + // Check for the file as it might not exist in tests. + if (file_exists($filename)) { + require_once $filename; + } + $this->getTableLocator()->clear(); + + $emptyFile = $path . 'Table' . DS . '.gitkeep'; + $this->deleteEmptyFile($emptyFile, $io); + } + + /** + * Outputs the a list of possible models or controllers from database + * + * @return string[] + */ + public function listAll(): array + { + if (!empty($this->_tables)) { + return $this->_tables; + } + + /** @var \Cake\Database\Connection $connection */ + $connection = ConnectionManager::get($this->connection); + $scanner = new TableScanner($connection); + $this->_tables = $scanner->listAll(); + + return $this->_tables; + } + + /** + * Outputs the a list of unskipped models or controllers from database + * + * @return string[] + */ + public function listUnskipped(): array + { + /** @var \Cake\Database\Connection $connection */ + $connection = ConnectionManager::get($this->connection); + $scanner = new TableScanner($connection); + + return $scanner->listUnskipped(); + } + + /** + * Get the table name for the model being baked. + * + * Uses the `table` option if it is set. + * + * @param string $name Table name + * @param \Cake\Console\Arguments $args The CLI arguments + * @return string + */ + public function getTable(string $name, Arguments $args): string + { + if ($args->getOption('table')) { + return (string)$args->getOption('table'); + } + + return Inflector::underscore($name); + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser The parser to configure + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $parser = $this->_setCommonOptions($parser); + + $parser->setDescription( + 'Bake table and entity classes.' + )->addArgument('name', [ + 'help' => 'Name of the model to bake (without the Table suffix). ' . + 'You can use Plugin.name to bake plugin models.', + ])->addOption('table', [ + 'help' => 'The table name to use if you have non-conventional table names.', + ])->addOption('no-entity', [ + 'boolean' => true, + 'help' => 'Disable generating an entity class.', + ])->addOption('no-table', [ + 'boolean' => true, + 'help' => 'Disable generating a table class.', + ])->addOption('no-validation', [ + 'boolean' => true, + 'help' => 'Disable generating validation rules.', + ])->addOption('no-rules', [ + 'boolean' => true, + 'help' => 'Disable generating a rules checker.', + ])->addOption('no-associations', [ + 'boolean' => true, + 'help' => 'Disable generating associations.', + ])->addOption('no-fields', [ + 'boolean' => true, + 'help' => 'Disable generating accessible fields in the entity.', + ])->addOption('fields', [ + 'help' => 'A comma separated list of fields to make accessible.', + ])->addOption('no-hidden', [ + 'boolean' => true, + 'help' => 'Disable generating hidden fields in the entity.', + ])->addOption('hidden', [ + 'help' => 'A comma separated list of fields to hide.', + ])->addOption('primary-key', [ + 'help' => 'The primary key if you would like to manually set one.' . + ' Can be a comma separated list if you are using a composite primary key.', + ])->addOption('display-field', [ + 'help' => 'The displayField if you would like to choose one.', + ])->addOption('no-test', [ + 'boolean' => true, + 'help' => 'Do not generate a test case skeleton.', + ])->addOption('no-fixture', [ + 'boolean' => true, + 'help' => 'Do not generate a test fixture skeleton.', + ])->setEpilog( + 'Omitting all arguments and options will list the table names you can generate models for.' + ); + + return $parser; + } + + /** + * Interact with FixtureTask to automatically bake fixtures when baking models. + * + * @param string $className Name of class to bake fixture for + * @param string $useTable Optional table name for fixture to use. + * @param \Cake\Console\Arguments $args Arguments instance + * @param \Cake\Console\ConsoleIo $io ConsoleIo instance + * @return void + */ + public function bakeFixture( + string $className, + string $useTable, + Arguments $args, + ConsoleIo $io + ): void { + if ($args->getOption('no-fixture')) { + return; + } + $fixture = new FixtureCommand(); + $fixtureArgs = new Arguments( + [$className], + ['table' => $useTable] + $args->getOptions(), + ['name'] + ); + $fixture->execute($fixtureArgs, $io); + } + + /** + * Assembles and writes a unit test file + * + * @param string $className Model class name + * @param \Cake\Console\Arguments $args Arguments instance + * @param \Cake\Console\ConsoleIo $io ConsoleIo instance + * @return void + */ + public function bakeTest(string $className, Arguments $args, ConsoleIo $io): void + { + if ($args->getOption('no-test')) { + return; + } + $test = new TestCommand(); + $testArgs = new Arguments( + ['table', $className], + $args->getOptions(), + ['type', 'name'] + ); + $test->execute($testArgs, $io); + } +} diff --git a/app/vendor/cakephp/bake/src/Command/PluginCommand.php b/app/vendor/cakephp/bake/src/Command/PluginCommand.php new file mode 100644 index 000000000..9cc30f277 --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/PluginCommand.php @@ -0,0 +1,434 @@ +path = current(App::path('plugins')); + } + + /** + * Execute the command. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int|null The exit code or null for success + */ + public function execute(Arguments $args, ConsoleIo $io): ?int + { + $name = $args->getArgument('name'); + if (empty($name)) { + $io->err('You must provide a plugin name in CamelCase format.'); + $io->err('To make an "MyExample" plugin, run `cake bake plugin MyExample`.'); + + return static::CODE_ERROR; + } + $parts = explode('/', $name); + $plugin = implode('/', array_map([Inflector::class, 'camelize'], $parts)); + + $pluginPath = $this->_pluginPath($plugin); + if (is_dir($pluginPath)) { + $io->out(sprintf('Plugin: %s already exists, no action taken', $plugin)); + $io->out(sprintf('Path: %s', $pluginPath)); + + return static::CODE_ERROR; + } + if (!$this->bake($plugin, $args, $io)) { + $io->error(sprintf('An error occurred trying to bake: %s in %s', $plugin, $this->path . $plugin)); + $this->abort(); + } + + return static::CODE_SUCCESS; + } + + /** + * Bake the plugin's contents + * + * Also update the autoloader and the root composer.json file if it can be found + * + * @param string $plugin Name of the plugin in CamelCased format + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return bool|null + */ + public function bake(string $plugin, Arguments $args, ConsoleIo $io): ?bool + { + $pathOptions = App::path('plugins'); + if (count($pathOptions) > 1) { + $this->findPath($pathOptions, $io); + } + $io->out(sprintf('Plugin Name: %s', $plugin)); + $io->out(sprintf('Plugin Directory: %s', $this->path . $plugin)); + $io->hr(); + + $looksGood = $io->askChoice('Look okay?', ['y', 'n', 'q'], 'y'); + + if (strtolower($looksGood) !== 'y') { + return null; + } + + $this->_generateFiles($plugin, $this->path, $args, $io); + + $this->_modifyAutoloader($plugin, $this->path, $args, $io); + $this->_modifyApplication($plugin, $io); + + $io->hr(); + $io->out(sprintf('Created: %s in %s', $plugin, $this->path . $plugin), 2); + + $emptyFile = $this->path . '.gitkeep'; + $this->deleteEmptyFile($emptyFile, $io); + + return true; + } + + /** + * Modify the application class + * + * @param string $plugin Name of plugin the plugin. + * @param \Cake\Console\ConsoleIo $io ConsoleIo + * @return void + */ + protected function _modifyApplication(string $plugin, ConsoleIo $io): void + { + $this->executeCommand(PluginLoadCommand::class, [$plugin], $io); + } + + /** + * Generate all files for a plugin + * + * Find the first path which contains `src/Template/Bake/Plugin` that contains + * something, and use that as the template to recursively render a plugin's + * contents. Allows the creation of a bake them containing a `Plugin` folder + * to provide customized bake output for plugins. + * + * @param string $pluginName the CamelCase name of the plugin + * @param string $path the path to the plugins dir (the containing folder) + * @param \Cake\Console\Arguments $args CLI arguments. + * @param \Cake\Console\ConsoleIo $io The io instance. + * @return void + */ + protected function _generateFiles( + string $pluginName, + string $path, + Arguments $args, + ConsoleIo $io + ): void { + $namespace = str_replace('/', '\\', $pluginName); + $baseNamespace = Configure::read('App.namespace'); + + $name = $pluginName; + $vendor = 'your-name-here'; + if (strpos($pluginName, '/') !== false) { + [$vendor, $name] = explode('/', $pluginName); + } + $package = Inflector::dasherize($vendor) . '/' . Inflector::dasherize($name); + + /** @psalm-suppress UndefinedConstant */ + $composerConfig = json_decode( + file_get_contents(ROOT . DS . 'composer.json'), + true + ); + + $renderer = new TemplateRenderer($args->getOption('theme')); + $renderer->set([ + 'package' => $package, + 'namespace' => $namespace, + 'baseNamespace' => $baseNamespace, + 'plugin' => $pluginName, + 'routePath' => Inflector::dasherize($pluginName), + 'path' => $path, + 'root' => ROOT, + 'cakeVersion' => $composerConfig['require']['cakephp/cakephp'], + ]); + + $root = $path . $pluginName . DS; + + $paths = []; + if ($args->hasOption('theme')) { + $paths[] = Plugin::templatePath($args->getOption('theme')); + } + + $paths = array_merge($paths, Configure::read('App.paths.templates')); + $paths[] = Plugin::templatePath('Bake'); + + $fs = new Filesystem(); + $templates = []; + do { + $templatesPath = array_shift($paths) . BakeView::BAKE_TEMPLATE_FOLDER . '/Plugin'; + if (is_dir($templatesPath)) { + $templates = array_keys(iterator_to_array( + $fs->findRecursive($templatesPath, '/.*\.(twig|php)/') + )); + } + } while (!$templates); + + sort($templates); + foreach ($templates as $template) { + $template = substr($template, strrpos($template, 'Plugin' . DIRECTORY_SEPARATOR) + 7, -4); + $template = rtrim($template, '.'); + $this->_generateFile($renderer, $template, $root, $io); + } + } + + /** + * Generate a file + * + * @param \Bake\Utility\TemplateRenderer $renderer The renderer to use. + * @param string $template The template to render + * @param string $root The path to the plugin's root + * @param \Cake\Console\ConsoleIo $io The io instance. + * @return void + */ + protected function _generateFile( + TemplateRenderer $renderer, + string $template, + string $root, + ConsoleIo $io + ): void { + $io->out(sprintf('Generating %s file...', $template)); + $out = $renderer->generate('Bake.Plugin/' . $template); + $io->createFile($root . $template, $out); + } + + /** + * Modifies App's composer.json to include the plugin and tries to call + * composer dump-autoload to refresh the autoloader cache + * + * @param string $plugin Name of plugin + * @param string $path The path to save the phpunit.xml file to. + * @param \Cake\Console\Arguments $args The Arguments instance. + * @param \Cake\Console\ConsoleIo $io The io instance. + * @return bool True if composer could be modified correctly + */ + protected function _modifyAutoloader( + string $plugin, + string $path, + Arguments $args, + ConsoleIo $io + ): bool { + $file = $this->_rootComposerFilePath(); + + if (!file_exists($file)) { + $io->out(sprintf('Main composer file %s not found', $file)); + + return false; + } + + $autoloadPath = str_replace(ROOT . DS, '', $this->path); + $autoloadPath = str_replace('\\', '/', $autoloadPath); + $namespace = str_replace('/', '\\', $plugin); + + $config = json_decode(file_get_contents($file), true); + $config['autoload']['psr-4'][$namespace . '\\'] = $autoloadPath . $plugin . '/src/'; + $config['autoload-dev']['psr-4'][$namespace . '\\Test\\'] = $autoloadPath . $plugin . '/tests/'; + + $io->out('Modifying composer autoloader'); + + $out = json_encode($config, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) . "\n"; + $io->createFile($file, $out, (bool)$args->getOption('force')); + + $composer = $this->findComposer($args, $io); + + if (!$composer) { + $io->error('Could not locate composer. Add composer to your PATH, or use the --composer option.'); + $this->abort(); + } + + try { + $cwd = getcwd(); + + // Windows makes running multiple commands at once hard. + chdir(dirname($this->_rootComposerFilePath())); + $command = 'php ' . escapeshellarg($composer) . ' dump-autoload'; + $process = new Process($io); + $io->out($process->call($command)); + + chdir($cwd); + } catch (\RuntimeException $e) { + $error = $e->getMessage(); + $io->error(sprintf('Could not run `composer dump-autoload`: %s', $error)); + $this->abort(); + } + + return true; + } + + /** + * The path to the main application's composer file + * + * This is a test isolation wrapper + * + * @return string the abs file path + */ + protected function _rootComposerFilePath(): string + { + return ROOT . DS . 'composer.json'; + } + + /** + * find and change $this->path to the user selection + * + * @param array $pathOptions The list of paths to look in. + * @param \Cake\Console\ConsoleIo $io The io object + * @return void + */ + public function findPath(array $pathOptions, ConsoleIo $io): void + { + $valid = false; + foreach ($pathOptions as $i => $path) { + if (!is_dir($path)) { + unset($pathOptions[$i]); + } + } + $pathOptions = array_values($pathOptions); + $max = count($pathOptions); + + if ($max === 0) { + $io->error('No valid plugin paths found! Please configure a plugin path that exists.'); + $this->abort(); + } + + if ($max === 1) { + $this->path = $pathOptions[0]; + + return; + } + + $choice = 0; + while (!$valid) { + foreach ($pathOptions as $i => $option) { + $io->out($i + 1 . '. ' . $option); + } + $prompt = 'Choose a plugin path from the paths above.'; + $choice = (int)$io->ask($prompt); + if ($choice > 0 && $choice <= $max) { + $valid = true; + } + } + $this->path = $pathOptions[$choice - 1]; + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser The option parser + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $parser->setDescription( + 'Create the directory structure, AppController class and testing setup for a new plugin. ' . + 'Can create plugins in any of your bootstrapped plugin paths.' + )->addArgument('name', [ + 'help' => 'CamelCased name of the plugin to create.', + ])->addOption('composer', [ + 'default' => ROOT . DS . 'composer.phar', + 'help' => 'The path to the composer executable.', + ])->addOption('force', [ + 'short' => 'f', + 'boolean' => true, + 'help' => 'Force overwriting existing files without prompting.', + ])->addOption('theme', [ + 'short' => 't', + 'help' => 'The theme to use when baking code.', + 'default' => Configure::read('Bake.theme') ?? '', + 'choices' => $this->_getBakeThemes(), + ]); + + return $parser; + } + + /** + * Uses either the CLI option or looks in $PATH and cwd for composer. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return string|bool Either the path to composer or false if it cannot be found. + */ + public function findComposer(Arguments $args, ConsoleIo $io) + { + if ($args->hasOption('composer')) { + /** @var string $path */ + $path = $args->getOption('composer'); + if (file_exists($path)) { + return $path; + } + } + $composer = false; + $path = env('PATH'); + if (!empty($path)) { + $paths = explode(PATH_SEPARATOR, $path); + $composer = $this->_searchPath($paths, $io); + } + + return $composer; + } + + /** + * Search the $PATH for composer. + * + * @param array $path The paths to search. + * @param \Cake\Console\ConsoleIo $io The console io + * @return string|bool + */ + protected function _searchPath(array $path, ConsoleIo $io) + { + $composer = ['composer.phar', 'composer']; + foreach ($path as $dir) { + foreach ($composer as $cmd) { + if (is_file($dir . DS . $cmd)) { + $io->verbose('Found composer executable in ' . $dir); + + return $dir . DS . $cmd; + } + } + } + + return false; + } +} diff --git a/app/vendor/cakephp/bake/src/Command/ShellHelperCommand.php b/app/vendor/cakephp/bake/src/Command/ShellHelperCommand.php new file mode 100644 index 000000000..19f8d5d3f --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/ShellHelperCommand.php @@ -0,0 +1,54 @@ + + */ + public function templateData(Arguments $arguments): array + { + $namespace = Configure::read('App.namespace'); + if ($this->plugin) { + $namespace = $this->_pluginNamespace($this->plugin); + } + + return ['namespace' => $namespace]; + } + + /** + * Execute the command. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int|null The exit code or null for success + */ + public function execute(Arguments $args, ConsoleIo $io): ?int + { + $this->extractCommonProperties($args); + $name = $args->getArgumentAt(0); + if (empty($name)) { + $io->err('You must provide a name to bake a ' . $this->name()); + $this->abort(); + + return null; + } + $name = $this->_getName($name); + $name = Inflector::camelize($name); + $this->bake($name, $args, $io); + $this->bakeTest($name, $args, $io); + + return static::CODE_SUCCESS; + } + + /** + * Generate a class stub + * + * @param string $name The class name + * @param \Cake\Console\Arguments $args The console arguments + * @param \Cake\Console\ConsoleIo $io The console io + * @return void + */ + protected function bake(string $name, Arguments $args, ConsoleIo $io): void + { + $renderer = new TemplateRenderer($args->getOption('theme')); + $renderer->set('name', $name); + $renderer->set($this->templateData($args)); + $contents = $renderer->generate($this->template()); + + $filename = $this->getPath($args) . $this->fileName($name); + $io->createFile($filename, $contents, (bool)$args->getOption('force')); + + $emptyFile = $this->getPath($args) . '.gitkeep'; + $this->deleteEmptyFile($emptyFile, $io); + } + + /** + * Generate a test case. + * + * @param string $className The class to bake a test for. + * @param \Cake\Console\Arguments $args The console arguments + * @param \Cake\Console\ConsoleIo $io The console io + * @return void + */ + public function bakeTest(string $className, Arguments $args, ConsoleIo $io): void + { + if ($args->getOption('no-test')) { + return; + } + $test = new TestCommand(); + $test->plugin = $this->plugin; + $test->bake($this->name(), $className, $args, $io); + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser Option parser to update. + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $parser = $this->_setCommonOptions($parser); + $name = $this->name(); + $parser->setDescription( + sprintf('Bake a %s class file.', $name) + )->addArgument('name', [ + 'help' => sprintf( + 'Name of the %s to bake. Can use Plugin.name to bake %s files into plugins.', + $name, + $name + ), + ])->addOption('no-test', [ + 'boolean' => true, + 'help' => 'Do not generate a test skeleton.', + ]); + + return $parser; + } +} diff --git a/app/vendor/cakephp/bake/src/Command/TemplateAllCommand.php b/app/vendor/cakephp/bake/src/Command/TemplateAllCommand.php new file mode 100644 index 000000000..9d2aae179 --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/TemplateAllCommand.php @@ -0,0 +1,96 @@ +templateCommand = new TemplateCommand(); + } + + /** + * Execute the command. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int The exit code + */ + public function execute(Arguments $args, ConsoleIo $io): int + { + $this->extractCommonProperties($args); + /** @var \Cake\Database\Connection $connection */ + $connection = ConnectionManager::get($this->connection); + $scanner = new TableScanner($connection); + + foreach ($scanner->listUnskipped() as $table) { + $templateArgs = new Arguments([$table], $args->getOptions(), ['name']); + $this->templateCommand->execute($templateArgs, $io); + } + + return static::CODE_SUCCESS; + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser The option parser to update. + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $parser = $this->_setCommonOptions($parser); + $parser + ->setDescription('Bake all view template files.') + ->addOption('prefix', [ + 'help' => 'The routing prefix to generate views for.', + ])->addOption('index-columns', [ + 'help' => 'Limit for the number of index columns', + 'default' => 0, + ]); + + return $parser; + } +} diff --git a/app/vendor/cakephp/bake/src/Command/TemplateCommand.php b/app/vendor/cakephp/bake/src/Command/TemplateCommand.php new file mode 100644 index 000000000..bb8bfd905 --- /dev/null +++ b/app/vendor/cakephp/bake/src/Command/TemplateCommand.php @@ -0,0 +1,435 @@ +path = current(App::path('templates')); + } + + /** + * Execute the command. + * + * @param \Cake\Console\Arguments $args The command arguments. + * @param \Cake\Console\ConsoleIo $io The console io + * @return int|null The exit code or null for success + */ + public function execute(Arguments $args, ConsoleIo $io): ?int + { + $this->extractCommonProperties($args); + $name = $args->getArgument('name') ?? ''; + $name = $this->_getName($name); + + if (empty($name)) { + $io->out('Possible tables to bake view templates for based on your current database:'); + /** @var \Cake\Database\Connection $connection */ + $connection = ConnectionManager::get($this->connection); + $scanner = new TableScanner($connection); + foreach ($scanner->listUnskipped() as $table) { + $io->out('- ' . $this->_camelize($table)); + } + + return static::CODE_SUCCESS; + } + $template = $args->getArgument('template'); + $action = $args->getArgument('action'); + + $controller = $args->getOption('controller'); + $this->controller($args, $name, $controller); + $this->model($name); + + if ($template && $action === null) { + $action = $template; + } + if ($template) { + $this->bake($args, $io, $template, true, $action); + + return static::CODE_SUCCESS; + } + + $vars = $this->_loadController($io); + $methods = $this->_methodsToBake(); + + foreach ($methods as $method) { + try { + $content = $this->getContent($args, $io, $method, $vars); + $this->bake($args, $io, $method, $content); + } catch (MissingTemplateException $e) { + $io->verbose($e->getMessage()); + } catch (RuntimeException $e) { + $io->error($e->getMessage()); + } + } + + return static::CODE_SUCCESS; + } + + /** + * Set the model class for the table. + * + * @param string $table The table/model that is being baked. + * @return void + */ + public function model(string $table): void + { + $tableName = $this->_camelize($table); + $plugin = $this->plugin; + if ($plugin) { + $plugin = $plugin . '.'; + } + $this->modelName = $plugin . $tableName; + } + + /** + * Set the controller related properties. + * + * @param \Cake\Console\Arguments $args The arguments + * @param string $table The table/model that is being baked. + * @param string|null $controller The controller name if specified. + * @return void + */ + public function controller(Arguments $args, string $table, ?string $controller = null): void + { + $tableName = $this->_camelize($table); + if (empty($controller)) { + $controller = $tableName; + } + $this->controllerName = $controller; + + $plugin = $this->plugin; + if ($plugin) { + $plugin .= '.'; + } + $prefix = $this->getPrefix($args); + if ($prefix) { + $prefix .= '/'; + } + $this->controllerClass = (string)App::className($plugin . $prefix . $controller, 'Controller', 'Controller'); + } + + /** + * Get the path base for view templates. + * + * @param \Cake\Console\Arguments $args The arguments + * @param string|null $container Unused. + * @return string + */ + public function getTemplatePath(Arguments $args, ?string $container = null): string + { + $path = parent::getTemplatePath($args, $container); + $path .= $this->controllerName . DS; + + return $path; + } + + /** + * Get a list of actions that can / should have view templates baked for them. + * + * @return string[] Array of action names that should be baked + */ + protected function _methodsToBake(): array + { + $base = Configure::read('App.namespace'); + + $methods = []; + if (class_exists($this->controllerClass)) { + $methods = array_diff( + array_map( + 'Cake\Utility\Inflector::underscore', + get_class_methods($this->controllerClass) + ), + array_map( + 'Cake\Utility\Inflector::underscore', + get_class_methods($base . '\Controller\AppController') + ) + ); + } + if (empty($methods)) { + $methods = $this->scaffoldActions; + } + foreach ($methods as $i => $method) { + if ($method[0] === '_') { + unset($methods[$i]); + } + } + + return $methods; + } + + /** + * Loads Controller and sets variables for the template + * Available template variables: + * + * - 'modelObject' + * - 'modelClass' + * - 'entityClass' + * - 'primaryKey' + * - 'displayField' + * - 'singularVar' + * - 'pluralVar' + * - 'singularHumanName' + * - 'pluralHumanName' + * - 'fields' + * - 'keyFields' + * - 'schema' + * + * @param \Cake\Console\ConsoleIo $io Instance of the ConsoleIO + * @return array Returns variables to be made available to a view template + */ + protected function _loadController(ConsoleIo $io): array + { + if ($this->getTableLocator()->exists($this->modelName)) { + $modelObject = $this->getTableLocator()->get($this->modelName); + } else { + $modelObject = $this->getTableLocator()->get($this->modelName, [ + 'connectionName' => $this->connection, + ]); + } + + $namespace = Configure::read('App.namespace'); + + $primaryKey = $displayField = $singularVar = $singularHumanName = null; + $schema = $fields = $modelClass = null; + try { + $primaryKey = (array)$modelObject->getPrimaryKey(); + $displayField = $modelObject->getDisplayField(); + $singularVar = $this->_singularName($this->controllerName); + $singularHumanName = $this->_singularHumanName($this->controllerName); + $schema = $modelObject->getSchema(); + $fields = $schema->columns(); + $modelClass = $this->modelName; + } catch (\Exception $exception) { + $io->error($exception->getMessage()); + $this->abort(); + } + + [, $entityClass] = namespaceSplit($this->_entityName($this->modelName)); + $entityClass = sprintf('%s\Model\Entity\%s', $namespace, $entityClass); + if (!class_exists($entityClass)) { + $entityClass = EntityInterface::class; + } + $associations = $this->_filteredAssociations($modelObject); + $keyFields = []; + if (!empty($associations['BelongsTo'])) { + foreach ($associations['BelongsTo'] as $assoc) { + $keyFields[$assoc['foreignKey']] = $assoc['variable']; + } + } + + $pluralVar = Inflector::variable($this->controllerName); + $pluralHumanName = $this->_pluralHumanName($this->controllerName); + + return compact( + 'modelObject', + 'modelClass', + 'entityClass', + 'schema', + 'primaryKey', + 'displayField', + 'singularVar', + 'pluralVar', + 'singularHumanName', + 'pluralHumanName', + 'fields', + 'associations', + 'keyFields', + 'namespace' + ); + } + + /** + * Assembles and writes bakes the view file. + * + * @param \Cake\Console\Arguments $args CLI arguments + * @param \Cake\Console\ConsoleIo $io Console io + * @param string $template Template file to use. + * @param string|true $content Content to write. + * @param string $outputFile The output file to create. If null will use `$template` + * @return void + */ + public function bake( + Arguments $args, + ConsoleIo $io, + string $template, + $content = '', + ?string $outputFile = null + ): void { + if ($outputFile === null) { + $outputFile = $template; + } + if ($content === true) { + $content = $this->getContent($args, $io, $template); + } + if (empty($content)) { + $io->err("No generated content for '{$template}.php', not generating template."); + + return; + } + $path = $this->getTemplatePath($args); + $filename = $path . Inflector::underscore($outputFile) . '.php'; + + $io->out("\n" . sprintf('Baking `%s` view template file...', $outputFile), 1, ConsoleIo::QUIET); + $io->createFile($filename, $content, $args->getOption('force')); + } + + /** + * Builds content from template and variables + * + * @param \Cake\Console\Arguments $args The CLI arguments + * @param \Cake\Console\ConsoleIo $io The console io + * @param string $action name to generate content to + * @param array|null $vars passed for use in templates + * @return string|false Content from template + */ + public function getContent(Arguments $args, ConsoleIo $io, string $action, ?array $vars = null) + { + if (!$vars) { + $vars = $this->_loadController($io); + } + + if (empty($vars['primaryKey'])) { + $io->error('Cannot generate views for models with no primary key'); + $this->abort(); + } + + $renderer = new TemplateRenderer($args->getOption('theme')); + $renderer->set('action', $action); + $renderer->set('plugin', $this->plugin); + $renderer->set($vars); + + $indexColumns = 0; + if ($action === 'index' && $args->getOption('index-columns') !== null) { + $indexColumns = $args->getOption('index-columns'); + } + $renderer->set('indexColumns', $indexColumns); + + return $renderer->generate("Bake.Template/$action"); + } + + /** + * Gets the option parser instance and configures it. + * + * @param \Cake\Console\ConsoleOptionParser $parser The option parser to update. + * @return \Cake\Console\ConsoleOptionParser + */ + public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser + { + $parser = $this->_setCommonOptions($parser); + + $parser->setDescription( + 'Bake views for a controller, using built-in or custom templates. ' + )->addArgument('name', [ + 'help' => 'Name of the controller views to bake. You can use Plugin.name as a shortcut for plugin baking.', + ])->addArgument('template', [ + 'help' => "Will bake a single action's file. core templates are (index, add, edit, view)", + ])->addArgument('action', [ + 'help' => 'Will bake the template in