├── .env.docker ├── .github └── workflows │ ├── acore-ci-cd.yml │ └── sync-plugins.yml ├── .gitignore ├── .gitmodules ├── .htaccess ├── .vscode └── extensions.json ├── acore-cms.code-workspace ├── apps ├── azerothcore │ └── mysql-tools │ │ ├── .gitignore │ │ ├── README │ │ ├── bin │ │ ├── dump-parser │ │ ├── mysql.exe │ │ ├── mysqldump.exe │ │ └── mysqlimport.exe │ │ ├── build-dump-parser.sh │ │ ├── dump-parser.c │ │ ├── mysql-config.dist │ │ ├── mysql-dump │ │ ├── mysql-import │ │ ├── mysql-tools │ │ └── shared-def ├── ci │ └── test-setup.sh ├── db_exporter │ ├── .gitignore │ ├── README.md │ ├── db_export.sh │ ├── db_import.sh │ └── shared.sh ├── import-srv.sh └── init │ ├── healthcheck.sh │ ├── init.lib.sh │ └── init.sh ├── conf ├── dist │ ├── certs │ │ ├── cert.crt │ │ └── cert.key │ ├── conf.sh │ ├── maintenance │ │ ├── conf │ │ │ └── default.conf │ │ └── html │ │ │ └── index.html │ ├── nginx-conf │ │ └── wordpress.conf │ └── php-conf │ │ └── upload.ini └── init │ └── .gitkeep ├── data ├── docker │ ├── Wordpress.Dockerfile │ └── docker-compose.override.yml └── plugins │ └── .gitkeep ├── docker-compose.yml ├── docs ├── .env-files │ └── Gemfile.gitlab ├── README.md ├── _config.yml ├── _includes │ └── sidebar.html ├── configure-acore-docker.md ├── configure-cms.md ├── dashboard.png ├── images │ ├── 3d-viewer-example-mount.png │ ├── 3d-viewer-example-pet.png │ ├── 3d-viewer-example-transmog.png │ ├── 3d-viewer-option.png │ └── shop.png ├── logo.png ├── nginx-for-multisite.md └── themes.md ├── init.sh ├── jsconfig.json ├── package.json └── src └── acore-wp-plugin ├── LICENSE ├── README.md ├── acore-wp-plugin.php ├── app.sh ├── composer.json ├── composer.lock ├── data └── languages │ └── .gitkeep ├── src ├── Components │ ├── AdminPanel │ │ ├── AdminPanel.php │ │ ├── Pages │ │ │ ├── ElunaSettings.php │ │ │ ├── Home.php │ │ │ ├── PVPRewards.php │ │ │ ├── RealmSettings.php │ │ │ └── Tools.php │ │ ├── SettingsController.php │ │ └── SettingsView.php │ ├── CharactersMenu │ │ ├── CharactersController.php │ │ ├── CharactersMenu.php │ │ └── CharactersView.php │ ├── ServerInfo │ │ ├── ServerInfo.php │ │ ├── ServerInfoApi.php │ │ └── ServerInfoWidget.php │ ├── Tools │ │ ├── ToolsApi.php │ │ └── ToolsInfo.php │ ├── UnstuckMenu │ │ ├── UnstuckApi.php │ │ ├── UnstuckController.php │ │ ├── UnstuckMenu.php │ │ └── UnstuckView.php │ └── UserPanel │ │ ├── Pages │ │ ├── ItemRestorationPage.php │ │ └── RafProgressPage.php │ │ ├── UserController.php │ │ ├── UserMenu.php │ │ └── UserView.php ├── Deps │ └── class-tgm-plugin-activation.php ├── Hooks │ ├── Head │ │ └── head.php │ ├── Subscriptions │ │ └── sync_subscription.php │ ├── User │ │ ├── Include.php │ │ └── User.php │ ├── Various │ │ ├── ItemSku.php │ │ └── tgmplugin_activator.php │ └── WooCommerce │ │ ├── CarbonCopy.php │ │ ├── CartValidation.php │ │ ├── CharChange.php │ │ ├── CharTransfer.php │ │ ├── FieldElements.php │ │ ├── GuildChange.php │ │ ├── ItemRestoration.php │ │ ├── ItemSend.php │ │ ├── NameUnlock.php │ │ ├── Products.php │ │ ├── Smartstone.php │ │ ├── TransmogItemSend.php │ │ ├── TransmogItemsetSend.php │ │ └── WooCommerce.php ├── Lib │ └── WpClass.php ├── Manager │ ├── ACoreServices.php │ ├── AcoreConnector │ │ ├── AcoreManager.php │ │ ├── AcoreManagerTrait.php │ │ └── AcoreRepository.php │ ├── Auth │ │ ├── AuthManager.php │ │ ├── Entity │ │ │ ├── AccountAccessEntity.php │ │ │ ├── AccountBannedEntity.php │ │ │ └── AccountEntity.php │ │ └── Repository │ │ │ ├── AccountAccessRepository.php │ │ │ ├── AccountBannedRepository.php │ │ │ └── AccountRepository.php │ ├── Character │ │ ├── CharacterManager.php │ │ ├── Entity │ │ │ ├── CharacterBannedEntity.php │ │ │ └── CharacterEntity.php │ │ └── Repository │ │ │ ├── CharacterBannedRepository.php │ │ │ └── CharacterRepository.php │ ├── Common.php │ ├── Opts.php │ ├── Soap │ │ ├── AccountService.php │ │ ├── AcoreSoap.php │ │ ├── AcoreSoapTrait.php │ │ ├── CharacterService.php │ │ ├── GuildService.php │ │ ├── MailService.php │ │ ├── ServerService.php │ │ ├── SmartstoneService.php │ │ ├── TransmogService.php │ │ └── UnstuckService.php │ ├── UserValidator.php │ └── World │ │ └── WorldManager.php ├── Utils │ └── AcoreUtils.php └── boot.php ├── vendor ├── autoload.php ├── bin │ ├── doctrine │ ├── doctrine-dbal │ ├── doctrine-dbal.bat │ └── doctrine.bat ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ ├── package-versions-deprecated │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ │ └── PackageVersions │ │ │ ├── FallbackVersions.php │ │ │ ├── Installer.php │ │ │ └── Versions.php │ └── platform_check.php ├── doctrine │ ├── annotations │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Annotations │ │ │ ├── Annotation.php │ │ │ ├── Annotation │ │ │ ├── Attribute.php │ │ │ ├── Attributes.php │ │ │ ├── Enum.php │ │ │ ├── IgnoreAnnotation.php │ │ │ ├── NamedArgumentConstructor.php │ │ │ ├── Required.php │ │ │ └── Target.php │ │ │ ├── AnnotationException.php │ │ │ ├── AnnotationReader.php │ │ │ ├── AnnotationRegistry.php │ │ │ ├── CachedReader.php │ │ │ ├── DocLexer.php │ │ │ ├── DocParser.php │ │ │ ├── FileCacheReader.php │ │ │ ├── ImplicitlyIgnoredAnnotationNames.php │ │ │ ├── IndexedReader.php │ │ │ ├── NamedArgumentConstructorAnnotation.php │ │ │ ├── PhpParser.php │ │ │ ├── PsrCachedReader.php │ │ │ ├── Reader.php │ │ │ ├── SimpleAnnotationReader.php │ │ │ └── TokenParser.php │ ├── cache │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-1.11.md │ │ ├── UPGRADE-1.4.md │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Cache │ │ │ ├── Cache.php │ │ │ ├── CacheProvider.php │ │ │ ├── ClearableCache.php │ │ │ ├── FlushableCache.php │ │ │ ├── MultiDeleteCache.php │ │ │ ├── MultiGetCache.php │ │ │ ├── MultiOperationCache.php │ │ │ ├── MultiPutCache.php │ │ │ └── Psr6 │ │ │ ├── CacheAdapter.php │ │ │ ├── CacheItem.php │ │ │ ├── DoctrineProvider.php │ │ │ ├── InvalidArgument.php │ │ │ └── TypedCacheItem.php │ ├── collections │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Collections │ │ │ │ ├── AbstractLazyCollection.php │ │ │ │ ├── ArrayCollection.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Criteria.php │ │ │ │ ├── Expr │ │ │ │ ├── ClosureExpressionVisitor.php │ │ │ │ ├── Comparison.php │ │ │ │ ├── CompositeExpression.php │ │ │ │ ├── Expression.php │ │ │ │ ├── ExpressionVisitor.php │ │ │ │ └── Value.php │ │ │ │ ├── ExpressionBuilder.php │ │ │ │ └── Selectable.php │ │ ├── phpstan.neon.dist │ │ └── psalm.xml.dist │ ├── common │ │ ├── .doctrine-project.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE_TO_2_1 │ │ ├── UPGRADE_TO_2_2 │ │ ├── composer.json │ │ ├── humbug.json.dist │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── CommonException.php │ │ │ │ ├── Comparable.php │ │ │ │ ├── Proxy │ │ │ │ ├── AbstractProxyFactory.php │ │ │ │ ├── Autoloader.php │ │ │ │ ├── Exception │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ │ ├── ProxyException.php │ │ │ │ │ └── UnexpectedValueException.php │ │ │ │ ├── Proxy.php │ │ │ │ ├── ProxyDefinition.php │ │ │ │ └── ProxyGenerator.php │ │ │ │ └── Util │ │ │ │ ├── ClassUtils.php │ │ │ │ └── Debug.php │ │ ├── phpstan.neon.dist │ │ └── psalm.xml │ ├── dbal │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── doctrine-dbal │ │ │ └── doctrine-dbal.php │ │ ├── composer.json │ │ ├── src │ │ │ ├── ArrayParameters │ │ │ │ ├── Exception.php │ │ │ │ └── Exception │ │ │ │ │ ├── MissingNamedParameter.php │ │ │ │ │ └── MissingPositionalParameter.php │ │ │ ├── Cache │ │ │ │ ├── ArrayResult.php │ │ │ │ ├── CacheException.php │ │ │ │ ├── CachingResult.php │ │ │ │ └── QueryCacheProfile.php │ │ │ ├── ColumnCase.php │ │ │ ├── Configuration.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionException.php │ │ │ ├── Connections │ │ │ │ └── PrimaryReadReplicaConnection.php │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ │ ├── API │ │ │ │ │ ├── ExceptionConverter.php │ │ │ │ │ ├── IBMDB2 │ │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ │ ├── MySQL │ │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ │ ├── OCI │ │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ │ ├── PostgreSQL │ │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ │ ├── SQLSrv │ │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ │ └── SQLite │ │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── AbstractDB2Driver.php │ │ │ │ ├── AbstractException.php │ │ │ │ ├── AbstractMySQLDriver.php │ │ │ │ ├── AbstractOracleDriver.php │ │ │ │ ├── AbstractOracleDriver │ │ │ │ │ └── EasyConnectString.php │ │ │ │ ├── AbstractPostgreSQLDriver.php │ │ │ │ ├── AbstractSQLServerDriver.php │ │ │ │ ├── AbstractSQLServerDriver │ │ │ │ │ └── Exception │ │ │ │ │ │ └── PortWithoutHost.php │ │ │ │ ├── AbstractSQLiteDriver.php │ │ │ │ ├── Connection.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ │ └── UnknownParameterType.php │ │ │ │ ├── FetchUtils.php │ │ │ │ ├── IBMDB2 │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── DataSourceName.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── CannotCopyStreamToStream.php │ │ │ │ │ │ ├── CannotCreateTemporaryFile.php │ │ │ │ │ │ ├── CannotWriteToTemporaryFile.php │ │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ │ ├── PrepareFailed.php │ │ │ │ │ │ └── StatementError.php │ │ │ │ │ ├── Result.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── Middleware.php │ │ │ │ ├── Mysqli │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ │ ├── FailedReadingStreamOffset.php │ │ │ │ │ │ ├── HostRequired.php │ │ │ │ │ │ ├── InvalidCharset.php │ │ │ │ │ │ ├── InvalidOption.php │ │ │ │ │ │ ├── NonStreamResourceUsedAsLargeObject.php │ │ │ │ │ │ └── StatementError.php │ │ │ │ │ ├── Initializer.php │ │ │ │ │ ├── Initializer │ │ │ │ │ │ ├── Charset.php │ │ │ │ │ │ ├── Options.php │ │ │ │ │ │ └── Secure.php │ │ │ │ │ ├── Result.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── OCI8 │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── ConvertPositionalToNamedPlaceholders.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ ├── NonTerminatedStringLiteral.php │ │ │ │ │ │ ├── SequenceDoesNotExist.php │ │ │ │ │ │ └── UnknownParameterIndex.php │ │ │ │ │ ├── ExecutionMode.php │ │ │ │ │ ├── Result.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── PDO │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── MySQL │ │ │ │ │ │ └── Driver.php │ │ │ │ │ ├── OCI │ │ │ │ │ │ └── Driver.php │ │ │ │ │ ├── PgSQL │ │ │ │ │ │ └── Driver.php │ │ │ │ │ ├── Result.php │ │ │ │ │ ├── SQLSrv │ │ │ │ │ │ ├── Connection.php │ │ │ │ │ │ ├── Driver.php │ │ │ │ │ │ └── Statement.php │ │ │ │ │ ├── SQLite │ │ │ │ │ │ └── Driver.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── Result.php │ │ │ │ ├── SQLSrv │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── Error.php │ │ │ │ │ ├── Result.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── ServerInfoAwareConnection.php │ │ │ │ └── Statement.php │ │ │ ├── DriverManager.php │ │ │ ├── Event │ │ │ │ ├── ConnectionEventArgs.php │ │ │ │ ├── Listeners │ │ │ │ │ ├── OracleSessionInit.php │ │ │ │ │ └── SQLSessionInit.php │ │ │ │ ├── SchemaAlterTableAddColumnEventArgs.php │ │ │ │ ├── SchemaAlterTableChangeColumnEventArgs.php │ │ │ │ ├── SchemaAlterTableEventArgs.php │ │ │ │ ├── SchemaAlterTableRemoveColumnEventArgs.php │ │ │ │ ├── SchemaAlterTableRenameColumnEventArgs.php │ │ │ │ ├── SchemaColumnDefinitionEventArgs.php │ │ │ │ ├── SchemaCreateTableColumnEventArgs.php │ │ │ │ ├── SchemaCreateTableEventArgs.php │ │ │ │ ├── SchemaDropTableEventArgs.php │ │ │ │ ├── SchemaEventArgs.php │ │ │ │ └── SchemaIndexDefinitionEventArgs.php │ │ │ ├── Events.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ │ ├── ConnectionException.php │ │ │ │ ├── ConnectionLost.php │ │ │ │ ├── ConstraintViolationException.php │ │ │ │ ├── DatabaseObjectExistsException.php │ │ │ │ ├── DatabaseObjectNotFoundException.php │ │ │ │ ├── DeadlockException.php │ │ │ │ ├── DriverException.php │ │ │ │ ├── ForeignKeyConstraintViolationException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidFieldNameException.php │ │ │ │ ├── InvalidLockMode.php │ │ │ │ ├── LockWaitTimeoutException.php │ │ │ │ ├── NoKeyValue.php │ │ │ │ ├── NonUniqueFieldNameException.php │ │ │ │ ├── NotNullConstraintViolationException.php │ │ │ │ ├── ReadOnlyException.php │ │ │ │ ├── RetryableException.php │ │ │ │ ├── ServerException.php │ │ │ │ ├── SyntaxErrorException.php │ │ │ │ ├── TableExistsException.php │ │ │ │ ├── TableNotFoundException.php │ │ │ │ └── UniqueConstraintViolationException.php │ │ │ ├── ExpandArrayParameters.php │ │ │ ├── FetchMode.php │ │ │ ├── Id │ │ │ │ ├── TableGenerator.php │ │ │ │ └── TableGeneratorSchemaVisitor.php │ │ │ ├── LockMode.php │ │ │ ├── Logging │ │ │ │ ├── DebugStack.php │ │ │ │ ├── LoggerChain.php │ │ │ │ └── SQLLogger.php │ │ │ ├── ParameterType.php │ │ │ ├── Platforms │ │ │ │ ├── AbstractPlatform.php │ │ │ │ ├── DB2Platform.php │ │ │ │ ├── DateIntervalUnit.php │ │ │ │ ├── Keywords │ │ │ │ │ ├── DB2Keywords.php │ │ │ │ │ ├── KeywordList.php │ │ │ │ │ ├── MariaDb102Keywords.php │ │ │ │ │ ├── MySQL57Keywords.php │ │ │ │ │ ├── MySQL80Keywords.php │ │ │ │ │ ├── MySQLKeywords.php │ │ │ │ │ ├── OracleKeywords.php │ │ │ │ │ ├── PostgreSQL100Keywords.php │ │ │ │ │ ├── PostgreSQL94Keywords.php │ │ │ │ │ ├── ReservedKeywordsValidator.php │ │ │ │ │ ├── SQLServer2012Keywords.php │ │ │ │ │ └── SQLiteKeywords.php │ │ │ │ ├── MariaDb1027Platform.php │ │ │ │ ├── MySQL57Platform.php │ │ │ │ ├── MySQL80Platform.php │ │ │ │ ├── MySQLPlatform.php │ │ │ │ ├── OraclePlatform.php │ │ │ │ ├── PostgreSQL100Platform.php │ │ │ │ ├── PostgreSQL94Platform.php │ │ │ │ ├── SQLServer2012Platform.php │ │ │ │ ├── SqlitePlatform.php │ │ │ │ └── TrimMode.php │ │ │ ├── Portability │ │ │ │ ├── Connection.php │ │ │ │ ├── Converter.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Middleware.php │ │ │ │ ├── OptimizeFlags.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── Query.php │ │ │ ├── Query │ │ │ │ ├── Expression │ │ │ │ │ ├── CompositeExpression.php │ │ │ │ │ └── ExpressionBuilder.php │ │ │ │ ├── QueryBuilder.php │ │ │ │ └── QueryException.php │ │ │ ├── Result.php │ │ │ ├── SQL │ │ │ │ ├── Parser.php │ │ │ │ └── Parser │ │ │ │ │ └── Visitor.php │ │ │ ├── Schema │ │ │ │ ├── AbstractAsset.php │ │ │ │ ├── AbstractSchemaManager.php │ │ │ │ ├── Column.php │ │ │ │ ├── ColumnDiff.php │ │ │ │ ├── Comparator.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── DB2SchemaManager.php │ │ │ │ ├── Exception │ │ │ │ │ ├── InvalidTableName.php │ │ │ │ │ └── UnknownColumnOption.php │ │ │ │ ├── ForeignKeyConstraint.php │ │ │ │ ├── Identifier.php │ │ │ │ ├── Index.php │ │ │ │ ├── MySQLSchemaManager.php │ │ │ │ ├── OracleSchemaManager.php │ │ │ │ ├── PostgreSQLSchemaManager.php │ │ │ │ ├── SQLServerSchemaManager.php │ │ │ │ ├── Schema.php │ │ │ │ ├── SchemaConfig.php │ │ │ │ ├── SchemaDiff.php │ │ │ │ ├── SchemaException.php │ │ │ │ ├── Sequence.php │ │ │ │ ├── SqliteSchemaManager.php │ │ │ │ ├── Table.php │ │ │ │ ├── TableDiff.php │ │ │ │ ├── UniqueConstraint.php │ │ │ │ ├── View.php │ │ │ │ └── Visitor │ │ │ │ │ ├── AbstractVisitor.php │ │ │ │ │ ├── CreateSchemaSqlCollector.php │ │ │ │ │ ├── DropSchemaSqlCollector.php │ │ │ │ │ ├── Graphviz.php │ │ │ │ │ ├── NamespaceVisitor.php │ │ │ │ │ ├── RemoveNamespacedAssets.php │ │ │ │ │ ├── SchemaDiffVisitor.php │ │ │ │ │ └── Visitor.php │ │ │ ├── Statement.php │ │ │ ├── Tools │ │ │ │ ├── Console │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── ReservedWordsCommand.php │ │ │ │ │ │ └── RunSqlCommand.php │ │ │ │ │ ├── ConnectionNotFound.php │ │ │ │ │ ├── ConnectionProvider.php │ │ │ │ │ ├── ConnectionProvider │ │ │ │ │ │ └── SingleConnectionProvider.php │ │ │ │ │ └── ConsoleRunner.php │ │ │ │ └── Dumper.php │ │ │ ├── TransactionIsolationLevel.php │ │ │ ├── Types │ │ │ │ ├── ArrayType.php │ │ │ │ ├── AsciiStringType.php │ │ │ │ ├── BigIntType.php │ │ │ │ ├── BinaryType.php │ │ │ │ ├── BlobType.php │ │ │ │ ├── BooleanType.php │ │ │ │ ├── ConversionException.php │ │ │ │ ├── DateImmutableType.php │ │ │ │ ├── DateIntervalType.php │ │ │ │ ├── DateTimeImmutableType.php │ │ │ │ ├── DateTimeType.php │ │ │ │ ├── DateTimeTzImmutableType.php │ │ │ │ ├── DateTimeTzType.php │ │ │ │ ├── DateType.php │ │ │ │ ├── DecimalType.php │ │ │ │ ├── FloatType.php │ │ │ │ ├── GuidType.php │ │ │ │ ├── IntegerType.php │ │ │ │ ├── JsonType.php │ │ │ │ ├── ObjectType.php │ │ │ │ ├── PhpDateTimeMappingType.php │ │ │ │ ├── PhpIntegerMappingType.php │ │ │ │ ├── SimpleArrayType.php │ │ │ │ ├── SmallIntType.php │ │ │ │ ├── StringType.php │ │ │ │ ├── TextType.php │ │ │ │ ├── TimeImmutableType.php │ │ │ │ ├── TimeType.php │ │ │ │ ├── Type.php │ │ │ │ ├── TypeRegistry.php │ │ │ │ ├── Types.php │ │ │ │ ├── VarDateTimeImmutableType.php │ │ │ │ └── VarDateTimeType.php │ │ │ └── VersionAwarePlatformDriver.php │ │ └── static-analysis │ │ │ └── driver-manager-retrieves-correct-connection-type.php │ ├── deprecations │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Deprecations │ │ │ │ ├── Deprecation.php │ │ │ │ └── PHPUnit │ │ │ │ └── VerifyDeprecations.php │ │ ├── phpcs.xml │ │ ├── phpunit.xml.dist │ │ └── test_fixtures │ │ │ └── src │ │ │ ├── Foo.php │ │ │ └── RootDeprecation.php │ ├── event-manager │ │ ├── .doctrine-project.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ ├── EventArgs.php │ │ │ ├── EventManager.php │ │ │ └── EventSubscriber.php │ ├── inflector │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Inflector │ │ │ │ ├── CachedWordInflector.php │ │ │ │ ├── GenericLanguageInflectorFactory.php │ │ │ │ ├── Inflector.php │ │ │ │ ├── InflectorFactory.php │ │ │ │ ├── Language.php │ │ │ │ ├── LanguageInflectorFactory.php │ │ │ │ ├── NoopWordInflector.php │ │ │ │ ├── Rules │ │ │ │ ├── English │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ ├── French │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ ├── NorwegianBokmal │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ ├── Pattern.php │ │ │ │ ├── Patterns.php │ │ │ │ ├── Portuguese │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ ├── Ruleset.php │ │ │ │ ├── Spanish │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ ├── Substitution.php │ │ │ │ ├── Substitutions.php │ │ │ │ ├── Transformation.php │ │ │ │ ├── Transformations.php │ │ │ │ ├── Turkish │ │ │ │ │ ├── Inflectible.php │ │ │ │ │ ├── InflectorFactory.php │ │ │ │ │ ├── Rules.php │ │ │ │ │ └── Uninflected.php │ │ │ │ └── Word.php │ │ │ │ ├── RulesetInflector.php │ │ │ │ └── WordInflector.php │ │ ├── phpstan.neon.dist │ │ └── psalm.xml │ ├── instantiator │ │ ├── .doctrine-project.json │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── workflows │ │ │ │ ├── coding-standards.yml │ │ │ │ ├── continuous-integration.yml │ │ │ │ ├── phpbench.yml │ │ │ │ ├── release-on-milestone-closed.yml │ │ │ │ └── static-analysis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpbench.json │ │ ├── phpcs.xml.dist │ │ ├── phpstan.neon.dist │ │ └── src │ │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── Instantiator.php │ │ │ └── InstantiatorInterface.php │ ├── lexer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Lexer │ │ │ └── AbstractLexer.php │ ├── orm │ │ ├── .gitmodules │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── UPGRADE.md │ │ ├── bin │ │ │ ├── doctrine │ │ │ ├── doctrine-pear.php │ │ │ ├── doctrine.bat │ │ │ └── doctrine.php │ │ ├── ci │ │ │ └── github │ │ │ │ └── phpunit │ │ │ │ ├── mysqli.xml │ │ │ │ ├── pdo_mysql.xml │ │ │ │ ├── pdo_pgsql.xml │ │ │ │ └── sqlite.xml │ │ ├── composer.json │ │ ├── doctrine-mapping.xsd │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── ORM │ │ │ │ ├── AbstractQuery.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Cache │ │ │ │ ├── AssociationCacheEntry.php │ │ │ │ ├── CacheConfiguration.php │ │ │ │ ├── CacheEntry.php │ │ │ │ ├── CacheException.php │ │ │ │ ├── CacheFactory.php │ │ │ │ ├── CacheKey.php │ │ │ │ ├── CollectionCacheEntry.php │ │ │ │ ├── CollectionCacheKey.php │ │ │ │ ├── CollectionHydrator.php │ │ │ │ ├── ConcurrentRegion.php │ │ │ │ ├── DefaultCache.php │ │ │ │ ├── DefaultCacheFactory.php │ │ │ │ ├── DefaultCollectionHydrator.php │ │ │ │ ├── DefaultEntityHydrator.php │ │ │ │ ├── DefaultQueryCache.php │ │ │ │ ├── EntityCacheEntry.php │ │ │ │ ├── EntityCacheKey.php │ │ │ │ ├── EntityHydrator.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CacheException.php │ │ │ │ │ ├── CannotUpdateReadOnlyCollection.php │ │ │ │ │ ├── CannotUpdateReadOnlyEntity.php │ │ │ │ │ ├── FeatureNotImplemented.php │ │ │ │ │ ├── InvalidResultCacheDriver.php │ │ │ │ │ ├── MetadataCacheNotConfigured.php │ │ │ │ │ ├── MetadataCacheUsesNonPersistentCache.php │ │ │ │ │ ├── NonCacheableEntity.php │ │ │ │ │ ├── NonCacheableEntityAssociation.php │ │ │ │ │ ├── QueryCacheNotConfigured.php │ │ │ │ │ └── QueryCacheUsesNonPersistentCache.php │ │ │ │ ├── Lock.php │ │ │ │ ├── LockException.php │ │ │ │ ├── Logging │ │ │ │ │ ├── CacheLogger.php │ │ │ │ │ ├── CacheLoggerChain.php │ │ │ │ │ └── StatisticsCacheLogger.php │ │ │ │ ├── MultiGetRegion.php │ │ │ │ ├── Persister │ │ │ │ │ ├── CachedPersister.php │ │ │ │ │ ├── Collection │ │ │ │ │ │ ├── AbstractCollectionPersister.php │ │ │ │ │ │ ├── CachedCollectionPersister.php │ │ │ │ │ │ ├── NonStrictReadWriteCachedCollectionPersister.php │ │ │ │ │ │ ├── ReadOnlyCachedCollectionPersister.php │ │ │ │ │ │ └── ReadWriteCachedCollectionPersister.php │ │ │ │ │ └── Entity │ │ │ │ │ │ ├── AbstractEntityPersister.php │ │ │ │ │ │ ├── CachedEntityPersister.php │ │ │ │ │ │ ├── NonStrictReadWriteCachedEntityPersister.php │ │ │ │ │ │ ├── ReadOnlyCachedEntityPersister.php │ │ │ │ │ │ └── ReadWriteCachedEntityPersister.php │ │ │ │ ├── QueryCache.php │ │ │ │ ├── QueryCacheEntry.php │ │ │ │ ├── QueryCacheKey.php │ │ │ │ ├── QueryCacheValidator.php │ │ │ │ ├── Region.php │ │ │ │ ├── Region │ │ │ │ │ ├── DefaultMultiGetRegion.php │ │ │ │ │ ├── DefaultRegion.php │ │ │ │ │ ├── FileLockRegion.php │ │ │ │ │ └── UpdateTimestampCache.php │ │ │ │ ├── RegionsConfiguration.php │ │ │ │ ├── TimestampCacheEntry.php │ │ │ │ ├── TimestampCacheKey.php │ │ │ │ ├── TimestampQueryCacheValidator.php │ │ │ │ └── TimestampRegion.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── Decorator │ │ │ │ └── EntityManagerDecorator.php │ │ │ │ ├── EntityManager.php │ │ │ │ ├── EntityManagerInterface.php │ │ │ │ ├── EntityNotFoundException.php │ │ │ │ ├── EntityRepository.php │ │ │ │ ├── Event │ │ │ │ ├── LifecycleEventArgs.php │ │ │ │ ├── ListenersInvoker.php │ │ │ │ ├── LoadClassMetadataEventArgs.php │ │ │ │ ├── OnClassMetadataNotFoundEventArgs.php │ │ │ │ ├── OnClearEventArgs.php │ │ │ │ ├── OnFlushEventArgs.php │ │ │ │ ├── PostFlushEventArgs.php │ │ │ │ ├── PreFlushEventArgs.php │ │ │ │ └── PreUpdateEventArgs.php │ │ │ │ ├── Events.php │ │ │ │ ├── Exception │ │ │ │ ├── ConfigurationException.php │ │ │ │ ├── EntityManagerClosed.php │ │ │ │ ├── EntityMissingAssignedId.php │ │ │ │ ├── InvalidEntityRepository.php │ │ │ │ ├── InvalidHydrationMode.php │ │ │ │ ├── ManagerException.php │ │ │ │ ├── MismatchedEventManager.php │ │ │ │ ├── MissingIdentifierField.php │ │ │ │ ├── MissingMappingDriverImplementation.php │ │ │ │ ├── MultipleSelectorsFoundException.php │ │ │ │ ├── NamedNativeQueryNotFound.php │ │ │ │ ├── NamedQueryNotFound.php │ │ │ │ ├── NotSupported.php │ │ │ │ ├── ORMException.php │ │ │ │ ├── PersisterException.php │ │ │ │ ├── ProxyClassesAlwaysRegenerating.php │ │ │ │ ├── RepositoryException.php │ │ │ │ ├── SchemaToolException.php │ │ │ │ ├── UnexpectedAssociationValue.php │ │ │ │ ├── UnknownEntityNamespace.php │ │ │ │ └── UnrecognizedIdentifierFields.php │ │ │ │ ├── Id │ │ │ │ ├── AbstractIdGenerator.php │ │ │ │ ├── AssignedGenerator.php │ │ │ │ ├── BigIntegerIdentityGenerator.php │ │ │ │ ├── IdentityGenerator.php │ │ │ │ ├── SequenceGenerator.php │ │ │ │ ├── TableGenerator.php │ │ │ │ └── UuidGenerator.php │ │ │ │ ├── Internal │ │ │ │ ├── CommitOrderCalculator.php │ │ │ │ ├── Hydration │ │ │ │ │ ├── AbstractHydrator.php │ │ │ │ │ ├── ArrayHydrator.php │ │ │ │ │ ├── HydrationException.php │ │ │ │ │ ├── IterableResult.php │ │ │ │ │ ├── ObjectHydrator.php │ │ │ │ │ ├── ScalarColumnHydrator.php │ │ │ │ │ ├── ScalarHydrator.php │ │ │ │ │ ├── SimpleObjectHydrator.php │ │ │ │ │ └── SingleScalarHydrator.php │ │ │ │ ├── HydrationCompleteHandler.php │ │ │ │ └── SQLResultCasing.php │ │ │ │ ├── LazyCriteriaCollection.php │ │ │ │ ├── Mapping │ │ │ │ ├── Annotation.php │ │ │ │ ├── AnsiQuoteStrategy.php │ │ │ │ ├── AssociationOverride.php │ │ │ │ ├── AssociationOverrides.php │ │ │ │ ├── AttributeOverride.php │ │ │ │ ├── AttributeOverrides.php │ │ │ │ ├── Builder │ │ │ │ │ ├── AssociationBuilder.php │ │ │ │ │ ├── ClassMetadataBuilder.php │ │ │ │ │ ├── EmbeddedBuilder.php │ │ │ │ │ ├── EntityListenerBuilder.php │ │ │ │ │ ├── FieldBuilder.php │ │ │ │ │ ├── ManyToManyAssociationBuilder.php │ │ │ │ │ └── OneToManyAssociationBuilder.php │ │ │ │ ├── Cache.php │ │ │ │ ├── ChangeTrackingPolicy.php │ │ │ │ ├── ClassMetadata.php │ │ │ │ ├── ClassMetadataFactory.php │ │ │ │ ├── ClassMetadataInfo.php │ │ │ │ ├── Column.php │ │ │ │ ├── ColumnResult.php │ │ │ │ ├── CustomIdGenerator.php │ │ │ │ ├── DefaultEntityListenerResolver.php │ │ │ │ ├── DefaultNamingStrategy.php │ │ │ │ ├── DefaultQuoteStrategy.php │ │ │ │ ├── DiscriminatorColumn.php │ │ │ │ ├── DiscriminatorMap.php │ │ │ │ ├── Driver │ │ │ │ │ ├── AnnotationDriver.php │ │ │ │ │ ├── AttributeDriver.php │ │ │ │ │ ├── AttributeReader.php │ │ │ │ │ ├── DatabaseDriver.php │ │ │ │ │ ├── DoctrineAnnotations.php │ │ │ │ │ ├── DriverChain.php │ │ │ │ │ ├── PHPDriver.php │ │ │ │ │ ├── RepeatableAttributeCollection.php │ │ │ │ │ ├── SimplifiedXmlDriver.php │ │ │ │ │ ├── SimplifiedYamlDriver.php │ │ │ │ │ ├── StaticPHPDriver.php │ │ │ │ │ ├── XmlDriver.php │ │ │ │ │ └── YamlDriver.php │ │ │ │ ├── Embeddable.php │ │ │ │ ├── Embedded.php │ │ │ │ ├── Entity.php │ │ │ │ ├── EntityListenerResolver.php │ │ │ │ ├── EntityListeners.php │ │ │ │ ├── EntityResult.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CannotGenerateIds.php │ │ │ │ │ ├── InvalidCustomGenerator.php │ │ │ │ │ └── UnknownGeneratorType.php │ │ │ │ ├── FieldResult.php │ │ │ │ ├── GeneratedValue.php │ │ │ │ ├── HasLifecycleCallbacks.php │ │ │ │ ├── Id.php │ │ │ │ ├── Index.php │ │ │ │ ├── InheritanceType.php │ │ │ │ ├── InverseJoinColumn.php │ │ │ │ ├── JoinColumn.php │ │ │ │ ├── JoinColumns.php │ │ │ │ ├── JoinTable.php │ │ │ │ ├── ManyToMany.php │ │ │ │ ├── ManyToOne.php │ │ │ │ ├── MappedSuperclass.php │ │ │ │ ├── MappingException.php │ │ │ │ ├── NamedNativeQueries.php │ │ │ │ ├── NamedNativeQuery.php │ │ │ │ ├── NamedQueries.php │ │ │ │ ├── NamedQuery.php │ │ │ │ ├── NamingStrategy.php │ │ │ │ ├── OneToMany.php │ │ │ │ ├── OneToOne.php │ │ │ │ ├── OrderBy.php │ │ │ │ ├── PostLoad.php │ │ │ │ ├── PostPersist.php │ │ │ │ ├── PostRemove.php │ │ │ │ ├── PostUpdate.php │ │ │ │ ├── PreFlush.php │ │ │ │ ├── PrePersist.php │ │ │ │ ├── PreRemove.php │ │ │ │ ├── PreUpdate.php │ │ │ │ ├── QuoteStrategy.php │ │ │ │ ├── Reflection │ │ │ │ │ └── ReflectionPropertiesGetter.php │ │ │ │ ├── ReflectionEmbeddedProperty.php │ │ │ │ ├── SequenceGenerator.php │ │ │ │ ├── SqlResultSetMapping.php │ │ │ │ ├── SqlResultSetMappings.php │ │ │ │ ├── Table.php │ │ │ │ ├── UnderscoreNamingStrategy.php │ │ │ │ ├── UniqueConstraint.php │ │ │ │ └── Version.php │ │ │ │ ├── NativeQuery.php │ │ │ │ ├── NoResultException.php │ │ │ │ ├── NonUniqueResultException.php │ │ │ │ ├── ORMException.php │ │ │ │ ├── ORMInvalidArgumentException.php │ │ │ │ ├── OptimisticLockException.php │ │ │ │ ├── PersistentCollection.php │ │ │ │ ├── Persisters │ │ │ │ ├── Collection │ │ │ │ │ ├── AbstractCollectionPersister.php │ │ │ │ │ ├── CollectionPersister.php │ │ │ │ │ ├── ManyToManyPersister.php │ │ │ │ │ └── OneToManyPersister.php │ │ │ │ ├── Entity │ │ │ │ │ ├── AbstractEntityInheritancePersister.php │ │ │ │ │ ├── BasicEntityPersister.php │ │ │ │ │ ├── CachedPersisterContext.php │ │ │ │ │ ├── EntityPersister.php │ │ │ │ │ ├── JoinedSubclassPersister.php │ │ │ │ │ └── SingleTablePersister.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CantUseInOperatorOnCompositeKeys.php │ │ │ │ │ ├── InvalidOrientation.php │ │ │ │ │ └── UnrecognizedField.php │ │ │ │ ├── MatchingAssociationFieldRequiresObject.php │ │ │ │ ├── PersisterException.php │ │ │ │ ├── SqlExpressionVisitor.php │ │ │ │ └── SqlValueVisitor.php │ │ │ │ ├── PessimisticLockException.php │ │ │ │ ├── Proxy │ │ │ │ ├── Autoloader.php │ │ │ │ ├── Proxy.php │ │ │ │ └── ProxyFactory.php │ │ │ │ ├── Query.php │ │ │ │ ├── Query │ │ │ │ ├── AST │ │ │ │ │ ├── ASTException.php │ │ │ │ │ ├── AggregateExpression.php │ │ │ │ │ ├── ArithmeticExpression.php │ │ │ │ │ ├── ArithmeticFactor.php │ │ │ │ │ ├── ArithmeticTerm.php │ │ │ │ │ ├── BetweenExpression.php │ │ │ │ │ ├── CoalesceExpression.php │ │ │ │ │ ├── CollectionMemberExpression.php │ │ │ │ │ ├── ComparisonExpression.php │ │ │ │ │ ├── ConditionalExpression.php │ │ │ │ │ ├── ConditionalFactor.php │ │ │ │ │ ├── ConditionalPrimary.php │ │ │ │ │ ├── ConditionalTerm.php │ │ │ │ │ ├── DeleteClause.php │ │ │ │ │ ├── DeleteStatement.php │ │ │ │ │ ├── EmptyCollectionComparisonExpression.php │ │ │ │ │ ├── ExistsExpression.php │ │ │ │ │ ├── FromClause.php │ │ │ │ │ ├── Functions │ │ │ │ │ │ ├── AbsFunction.php │ │ │ │ │ │ ├── AvgFunction.php │ │ │ │ │ │ ├── BitAndFunction.php │ │ │ │ │ │ ├── BitOrFunction.php │ │ │ │ │ │ ├── ConcatFunction.php │ │ │ │ │ │ ├── CountFunction.php │ │ │ │ │ │ ├── CurrentDateFunction.php │ │ │ │ │ │ ├── CurrentTimeFunction.php │ │ │ │ │ │ ├── CurrentTimestampFunction.php │ │ │ │ │ │ ├── DateAddFunction.php │ │ │ │ │ │ ├── DateDiffFunction.php │ │ │ │ │ │ ├── DateSubFunction.php │ │ │ │ │ │ ├── FunctionNode.php │ │ │ │ │ │ ├── IdentityFunction.php │ │ │ │ │ │ ├── LengthFunction.php │ │ │ │ │ │ ├── LocateFunction.php │ │ │ │ │ │ ├── LowerFunction.php │ │ │ │ │ │ ├── MaxFunction.php │ │ │ │ │ │ ├── MinFunction.php │ │ │ │ │ │ ├── ModFunction.php │ │ │ │ │ │ ├── SizeFunction.php │ │ │ │ │ │ ├── SqrtFunction.php │ │ │ │ │ │ ├── SubstringFunction.php │ │ │ │ │ │ ├── SumFunction.php │ │ │ │ │ │ ├── TrimFunction.php │ │ │ │ │ │ └── UpperFunction.php │ │ │ │ │ ├── GeneralCaseExpression.php │ │ │ │ │ ├── GroupByClause.php │ │ │ │ │ ├── HavingClause.php │ │ │ │ │ ├── IdentificationVariableDeclaration.php │ │ │ │ │ ├── InExpression.php │ │ │ │ │ ├── IndexBy.php │ │ │ │ │ ├── InputParameter.php │ │ │ │ │ ├── InstanceOfExpression.php │ │ │ │ │ ├── Join.php │ │ │ │ │ ├── JoinAssociationDeclaration.php │ │ │ │ │ ├── JoinAssociationPathExpression.php │ │ │ │ │ ├── JoinClassPathExpression.php │ │ │ │ │ ├── JoinVariableDeclaration.php │ │ │ │ │ ├── LikeExpression.php │ │ │ │ │ ├── Literal.php │ │ │ │ │ ├── NewObjectExpression.php │ │ │ │ │ ├── Node.php │ │ │ │ │ ├── NullComparisonExpression.php │ │ │ │ │ ├── NullIfExpression.php │ │ │ │ │ ├── OrderByClause.php │ │ │ │ │ ├── OrderByItem.php │ │ │ │ │ ├── ParenthesisExpression.php │ │ │ │ │ ├── PartialObjectExpression.php │ │ │ │ │ ├── PathExpression.php │ │ │ │ │ ├── QuantifiedExpression.php │ │ │ │ │ ├── RangeVariableDeclaration.php │ │ │ │ │ ├── SelectClause.php │ │ │ │ │ ├── SelectExpression.php │ │ │ │ │ ├── SelectStatement.php │ │ │ │ │ ├── SimpleArithmeticExpression.php │ │ │ │ │ ├── SimpleCaseExpression.php │ │ │ │ │ ├── SimpleSelectClause.php │ │ │ │ │ ├── SimpleSelectExpression.php │ │ │ │ │ ├── SimpleWhenClause.php │ │ │ │ │ ├── Subselect.php │ │ │ │ │ ├── SubselectFromClause.php │ │ │ │ │ ├── SubselectIdentificationVariableDeclaration.php │ │ │ │ │ ├── TypedExpression.php │ │ │ │ │ ├── UpdateClause.php │ │ │ │ │ ├── UpdateItem.php │ │ │ │ │ ├── UpdateStatement.php │ │ │ │ │ ├── WhenClause.php │ │ │ │ │ └── WhereClause.php │ │ │ │ ├── Exec │ │ │ │ │ ├── AbstractSqlExecutor.php │ │ │ │ │ ├── MultiTableDeleteExecutor.php │ │ │ │ │ ├── MultiTableUpdateExecutor.php │ │ │ │ │ ├── SingleSelectExecutor.php │ │ │ │ │ └── SingleTableDeleteUpdateExecutor.php │ │ │ │ ├── Expr.php │ │ │ │ ├── Expr │ │ │ │ │ ├── Andx.php │ │ │ │ │ ├── Base.php │ │ │ │ │ ├── Comparison.php │ │ │ │ │ ├── Composite.php │ │ │ │ │ ├── From.php │ │ │ │ │ ├── Func.php │ │ │ │ │ ├── GroupBy.php │ │ │ │ │ ├── Join.php │ │ │ │ │ ├── Literal.php │ │ │ │ │ ├── Math.php │ │ │ │ │ ├── OrderBy.php │ │ │ │ │ ├── Orx.php │ │ │ │ │ └── Select.php │ │ │ │ ├── Filter │ │ │ │ │ ├── FilterException.php │ │ │ │ │ └── SQLFilter.php │ │ │ │ ├── FilterCollection.php │ │ │ │ ├── Lexer.php │ │ │ │ ├── Parameter.php │ │ │ │ ├── ParameterTypeInferer.php │ │ │ │ ├── Parser.php │ │ │ │ ├── ParserResult.php │ │ │ │ ├── Printer.php │ │ │ │ ├── QueryException.php │ │ │ │ ├── QueryExpressionVisitor.php │ │ │ │ ├── ResultSetMapping.php │ │ │ │ ├── ResultSetMappingBuilder.php │ │ │ │ ├── SqlWalker.php │ │ │ │ ├── TreeWalker.php │ │ │ │ ├── TreeWalkerAdapter.php │ │ │ │ ├── TreeWalkerChain.php │ │ │ │ └── TreeWalkerChainIterator.php │ │ │ │ ├── QueryBuilder.php │ │ │ │ ├── Repository │ │ │ │ ├── DefaultRepositoryFactory.php │ │ │ │ ├── Exception │ │ │ │ │ ├── InvalidFindByCall.php │ │ │ │ │ └── InvalidMagicMethodCall.php │ │ │ │ └── RepositoryFactory.php │ │ │ │ ├── Tools │ │ │ │ ├── AttachEntityListenersListener.php │ │ │ │ ├── Console │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── AbstractEntityManagerCommand.php │ │ │ │ │ │ ├── ClearCache │ │ │ │ │ │ │ ├── CollectionRegionCommand.php │ │ │ │ │ │ │ ├── EntityRegionCommand.php │ │ │ │ │ │ │ ├── MetadataCommand.php │ │ │ │ │ │ │ ├── QueryCommand.php │ │ │ │ │ │ │ ├── QueryRegionCommand.php │ │ │ │ │ │ │ └── ResultCommand.php │ │ │ │ │ │ ├── ConvertDoctrine1SchemaCommand.php │ │ │ │ │ │ ├── ConvertMappingCommand.php │ │ │ │ │ │ ├── EnsureProductionSettingsCommand.php │ │ │ │ │ │ ├── GenerateEntitiesCommand.php │ │ │ │ │ │ ├── GenerateProxiesCommand.php │ │ │ │ │ │ ├── GenerateRepositoriesCommand.php │ │ │ │ │ │ ├── InfoCommand.php │ │ │ │ │ │ ├── MappingDescribeCommand.php │ │ │ │ │ │ ├── RunDqlCommand.php │ │ │ │ │ │ ├── SchemaTool │ │ │ │ │ │ │ ├── AbstractCommand.php │ │ │ │ │ │ │ ├── CreateCommand.php │ │ │ │ │ │ │ ├── DropCommand.php │ │ │ │ │ │ │ └── UpdateCommand.php │ │ │ │ │ │ └── ValidateSchemaCommand.php │ │ │ │ │ ├── ConsoleRunner.php │ │ │ │ │ ├── EntityManagerProvider.php │ │ │ │ │ ├── EntityManagerProvider │ │ │ │ │ │ ├── ConnectionFromManagerProvider.php │ │ │ │ │ │ ├── HelperSetManagerProvider.php │ │ │ │ │ │ ├── SingleManagerProvider.php │ │ │ │ │ │ └── UnknownManagerException.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── EntityManagerHelper.php │ │ │ │ │ └── MetadataFilter.php │ │ │ │ ├── ConvertDoctrine1Schema.php │ │ │ │ ├── DebugUnitOfWorkListener.php │ │ │ │ ├── DisconnectedClassMetadataFactory.php │ │ │ │ ├── EntityGenerator.php │ │ │ │ ├── EntityRepositoryGenerator.php │ │ │ │ ├── Event │ │ │ │ │ ├── GenerateSchemaEventArgs.php │ │ │ │ │ └── GenerateSchemaTableEventArgs.php │ │ │ │ ├── Exception │ │ │ │ │ ├── MissingColumnException.php │ │ │ │ │ └── NotSupported.php │ │ │ │ ├── Export │ │ │ │ │ ├── ClassMetadataExporter.php │ │ │ │ │ ├── Driver │ │ │ │ │ │ ├── AbstractExporter.php │ │ │ │ │ │ ├── AnnotationExporter.php │ │ │ │ │ │ ├── PhpExporter.php │ │ │ │ │ │ ├── XmlExporter.php │ │ │ │ │ │ └── YamlExporter.php │ │ │ │ │ └── ExportException.php │ │ │ │ ├── Pagination │ │ │ │ │ ├── CountOutputWalker.php │ │ │ │ │ ├── CountWalker.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── RowNumberOverFunctionNotEnabled.php │ │ │ │ │ ├── LimitSubqueryOutputWalker.php │ │ │ │ │ ├── LimitSubqueryWalker.php │ │ │ │ │ ├── Paginator.php │ │ │ │ │ ├── RowNumberOverFunction.php │ │ │ │ │ └── WhereInWalker.php │ │ │ │ ├── ResolveTargetEntityListener.php │ │ │ │ ├── SchemaTool.php │ │ │ │ ├── SchemaValidator.php │ │ │ │ ├── Setup.php │ │ │ │ ├── ToolEvents.php │ │ │ │ └── ToolsException.php │ │ │ │ ├── TransactionRequiredException.php │ │ │ │ ├── UnexpectedResultException.php │ │ │ │ ├── UnitOfWork.php │ │ │ │ ├── Utility │ │ │ │ ├── HierarchyDiscriminatorResolver.php │ │ │ │ ├── IdentifierFlattener.php │ │ │ │ └── PersisterHelper.php │ │ │ │ └── Version.php │ │ ├── phpstan-dbal2.neon │ │ └── phpstan-params.neon │ └── persistence │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-1.2.md │ │ ├── UPGRADE-2.2.md │ │ ├── composer.json │ │ └── lib │ │ └── Doctrine │ │ ├── Common │ │ └── Persistence │ │ │ └── PersistentObject.php │ │ └── Persistence │ │ ├── AbstractManagerRegistry.php │ │ ├── ConnectionRegistry.php │ │ ├── Event │ │ ├── LifecycleEventArgs.php │ │ ├── LoadClassMetadataEventArgs.php │ │ ├── ManagerEventArgs.php │ │ ├── OnClearEventArgs.php │ │ └── PreUpdateEventArgs.php │ │ ├── ManagerRegistry.php │ │ ├── Mapping │ │ ├── AbstractClassMetadataFactory.php │ │ ├── ClassMetadata.php │ │ ├── ClassMetadataFactory.php │ │ ├── Driver │ │ │ ├── AnnotationDriver.php │ │ │ ├── DefaultFileLocator.php │ │ │ ├── FileDriver.php │ │ │ ├── FileLocator.php │ │ │ ├── MappingDriver.php │ │ │ ├── MappingDriverChain.php │ │ │ ├── PHPDriver.php │ │ │ ├── StaticPHPDriver.php │ │ │ └── SymfonyFileLocator.php │ │ ├── MappingException.php │ │ ├── ProxyClassNameResolver.php │ │ ├── ReflectionService.php │ │ ├── RuntimeReflectionService.php │ │ └── StaticReflectionService.php │ │ ├── NotifyPropertyChanged.php │ │ ├── ObjectManager.php │ │ ├── ObjectManagerAware.php │ │ ├── ObjectManagerDecorator.php │ │ ├── ObjectRepository.php │ │ ├── PropertyChangedListener.php │ │ ├── Proxy.php │ │ └── Reflection │ │ ├── RuntimePublicReflectionProperty.php │ │ ├── TypedNoDefaultReflectionProperty.php │ │ ├── TypedNoDefaultReflectionPropertyBase.php │ │ └── TypedNoDefaultRuntimePublicReflectionProperty.php ├── psr │ ├── cache │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CacheException.php │ │ │ ├── CacheItemInterface.php │ │ │ ├── CacheItemPoolInterface.php │ │ │ └── InvalidArgumentException.php │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ └── log │ │ ├── LICENSE │ │ ├── Psr │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ ├── NullLogger.php │ │ │ └── Test │ │ │ ├── DummyTest.php │ │ │ ├── LoggerInterfaceTest.php │ │ │ └── TestLogger.php │ │ ├── README.md │ │ └── composer.json └── symfony │ ├── cache-contracts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CacheInterface.php │ ├── CacheTrait.php │ ├── CallbackInterface.php │ ├── ItemInterface.php │ ├── LICENSE │ ├── README.md │ ├── TagAwareCacheInterface.php │ └── composer.json │ ├── cache │ ├── Adapter │ │ ├── AbstractAdapter.php │ │ ├── AbstractTagAwareAdapter.php │ │ ├── AdapterInterface.php │ │ ├── ApcuAdapter.php │ │ ├── ArrayAdapter.php │ │ ├── ChainAdapter.php │ │ ├── CouchbaseBucketAdapter.php │ │ ├── DoctrineAdapter.php │ │ ├── FilesystemAdapter.php │ │ ├── FilesystemTagAwareAdapter.php │ │ ├── MemcachedAdapter.php │ │ ├── NullAdapter.php │ │ ├── ParameterNormalizer.php │ │ ├── PdoAdapter.php │ │ ├── PhpArrayAdapter.php │ │ ├── PhpFilesAdapter.php │ │ ├── ProxyAdapter.php │ │ ├── Psr16Adapter.php │ │ ├── RedisAdapter.php │ │ ├── RedisTagAwareAdapter.php │ │ ├── TagAwareAdapter.php │ │ ├── TagAwareAdapterInterface.php │ │ ├── TraceableAdapter.php │ │ └── TraceableTagAwareAdapter.php │ ├── CHANGELOG.md │ ├── CacheItem.php │ ├── DataCollector │ │ └── CacheDataCollector.php │ ├── DependencyInjection │ │ ├── CacheCollectorPass.php │ │ ├── CachePoolClearerPass.php │ │ ├── CachePoolPass.php │ │ └── CachePoolPrunerPass.php │ ├── DoctrineProvider.php │ ├── Exception │ │ ├── CacheException.php │ │ ├── InvalidArgumentException.php │ │ └── LogicException.php │ ├── LICENSE │ ├── LockRegistry.php │ ├── Marshaller │ │ ├── DefaultMarshaller.php │ │ ├── DeflateMarshaller.php │ │ ├── MarshallerInterface.php │ │ ├── SodiumMarshaller.php │ │ └── TagAwareMarshaller.php │ ├── Messenger │ │ ├── EarlyExpirationDispatcher.php │ │ ├── EarlyExpirationHandler.php │ │ └── EarlyExpirationMessage.php │ ├── PruneableInterface.php │ ├── Psr16Cache.php │ ├── README.md │ ├── ResettableInterface.php │ ├── Traits │ │ ├── AbstractAdapterTrait.php │ │ ├── ContractsTrait.php │ │ ├── FilesystemCommonTrait.php │ │ ├── FilesystemTrait.php │ │ ├── ProxyTrait.php │ │ ├── RedisClusterNodeProxy.php │ │ ├── RedisClusterProxy.php │ │ ├── RedisProxy.php │ │ └── RedisTrait.php │ └── composer.json │ ├── console │ ├── Application.php │ ├── Attribute │ │ └── AsCommand.php │ ├── CHANGELOG.md │ ├── CI │ │ └── GithubActionReporter.php │ ├── Color.php │ ├── Command │ │ ├── Command.php │ │ ├── HelpCommand.php │ │ ├── LazyCommand.php │ │ ├── ListCommand.php │ │ ├── LockableTrait.php │ │ └── SignalableCommandInterface.php │ ├── CommandLoader │ │ ├── CommandLoaderInterface.php │ │ ├── ContainerCommandLoader.php │ │ └── FactoryCommandLoader.php │ ├── ConsoleEvents.php │ ├── Cursor.php │ ├── DependencyInjection │ │ └── AddConsoleCommandPass.php │ ├── Descriptor │ │ ├── ApplicationDescription.php │ │ ├── Descriptor.php │ │ ├── DescriptorInterface.php │ │ ├── JsonDescriptor.php │ │ ├── MarkdownDescriptor.php │ │ ├── TextDescriptor.php │ │ └── XmlDescriptor.php │ ├── Event │ │ ├── ConsoleCommandEvent.php │ │ ├── ConsoleErrorEvent.php │ │ ├── ConsoleEvent.php │ │ ├── ConsoleSignalEvent.php │ │ └── ConsoleTerminateEvent.php │ ├── EventListener │ │ └── ErrorListener.php │ ├── Exception │ │ ├── CommandNotFoundException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionException.php │ │ ├── LogicException.php │ │ ├── MissingInputException.php │ │ ├── NamespaceNotFoundException.php │ │ └── RuntimeException.php │ ├── Formatter │ │ ├── NullOutputFormatter.php │ │ ├── NullOutputFormatterStyle.php │ │ ├── OutputFormatter.php │ │ ├── OutputFormatterInterface.php │ │ ├── OutputFormatterStyle.php │ │ ├── OutputFormatterStyleInterface.php │ │ ├── OutputFormatterStyleStack.php │ │ └── WrappableOutputFormatterInterface.php │ ├── Helper │ │ ├── DebugFormatterHelper.php │ │ ├── DescriptorHelper.php │ │ ├── Dumper.php │ │ ├── FormatterHelper.php │ │ ├── Helper.php │ │ ├── HelperInterface.php │ │ ├── HelperSet.php │ │ ├── InputAwareHelper.php │ │ ├── ProcessHelper.php │ │ ├── ProgressBar.php │ │ ├── ProgressIndicator.php │ │ ├── QuestionHelper.php │ │ ├── SymfonyQuestionHelper.php │ │ ├── Table.php │ │ ├── TableCell.php │ │ ├── TableCellStyle.php │ │ ├── TableRows.php │ │ ├── TableSeparator.php │ │ └── TableStyle.php │ ├── Input │ │ ├── ArgvInput.php │ │ ├── ArrayInput.php │ │ ├── Input.php │ │ ├── InputArgument.php │ │ ├── InputAwareInterface.php │ │ ├── InputDefinition.php │ │ ├── InputInterface.php │ │ ├── InputOption.php │ │ ├── StreamableInputInterface.php │ │ └── StringInput.php │ ├── LICENSE │ ├── Logger │ │ └── ConsoleLogger.php │ ├── Output │ │ ├── BufferedOutput.php │ │ ├── ConsoleOutput.php │ │ ├── ConsoleOutputInterface.php │ │ ├── ConsoleSectionOutput.php │ │ ├── NullOutput.php │ │ ├── Output.php │ │ ├── OutputInterface.php │ │ ├── StreamOutput.php │ │ └── TrimmedBufferOutput.php │ ├── Question │ │ ├── ChoiceQuestion.php │ │ ├── ConfirmationQuestion.php │ │ └── Question.php │ ├── README.md │ ├── Resources │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── SignalRegistry │ │ └── SignalRegistry.php │ ├── SingleCommandApplication.php │ ├── Style │ │ ├── OutputStyle.php │ │ ├── StyleInterface.php │ │ └── SymfonyStyle.php │ ├── Terminal.php │ ├── Tester │ │ ├── ApplicationTester.php │ │ ├── CommandTester.php │ │ └── TesterTrait.php │ └── composer.json │ ├── deprecation-contracts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── function.php │ ├── polyfill-ctype │ ├── Ctype.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json │ ├── polyfill-intl-grapheme │ ├── Grapheme.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json │ ├── polyfill-intl-normalizer │ ├── LICENSE │ ├── Normalizer.php │ ├── README.md │ ├── Resources │ │ ├── stubs │ │ │ └── Normalizer.php │ │ └── unidata │ │ │ ├── canonicalComposition.php │ │ │ ├── canonicalDecomposition.php │ │ │ ├── combiningClass.php │ │ │ └── compatibilityDecomposition.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json │ ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json │ ├── polyfill-php72 │ ├── LICENSE │ ├── Php72.php │ ├── README.md │ ├── bootstrap.php │ └── composer.json │ ├── polyfill-php73 │ ├── LICENSE │ ├── Php73.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ └── JsonException.php │ ├── bootstrap.php │ └── composer.json │ ├── polyfill-php80 │ ├── LICENSE │ ├── Php80.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ ├── Attribute.php │ │ │ ├── Stringable.php │ │ │ ├── UnhandledMatchError.php │ │ │ └── ValueError.php │ ├── bootstrap.php │ └── composer.json │ ├── service-contracts │ ├── .gitignore │ ├── Attribute │ │ └── Required.php │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ResetInterface.php │ ├── ServiceLocatorTrait.php │ ├── ServiceProviderInterface.php │ ├── ServiceSubscriberInterface.php │ ├── ServiceSubscriberTrait.php │ ├── Test │ │ └── ServiceLocatorTest.php │ └── composer.json │ ├── string │ ├── AbstractString.php │ ├── AbstractUnicodeString.php │ ├── ByteString.php │ ├── CHANGELOG.md │ ├── CodePointString.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ ├── Inflector │ │ ├── EnglishInflector.php │ │ ├── FrenchInflector.php │ │ └── InflectorInterface.php │ ├── LICENSE │ ├── LazyString.php │ ├── README.md │ ├── Resources │ │ ├── data │ │ │ ├── wcswidth_table_wide.php │ │ │ └── wcswidth_table_zero.php │ │ └── functions.php │ ├── Slugger │ │ ├── AsciiSlugger.php │ │ └── SluggerInterface.php │ ├── UnicodeString.php │ └── composer.json │ └── var-exporter │ ├── CHANGELOG.md │ ├── Exception │ ├── ClassNotFoundException.php │ ├── ExceptionInterface.php │ └── NotInstantiableTypeException.php │ ├── Instantiator.php │ ├── Internal │ ├── Exporter.php │ ├── Hydrator.php │ ├── Reference.php │ ├── Registry.php │ └── Values.php │ ├── LICENSE │ ├── README.md │ ├── VarExporter.php │ └── composer.json └── web ├── assets ├── admin_logo.svg ├── class │ ├── 1.webp │ ├── 11.webp │ ├── 2.webp │ ├── 3.webp │ ├── 4.webp │ ├── 5.webp │ ├── 6.webp │ ├── 7.webp │ ├── 8.webp │ └── 9.webp ├── css │ └── main.css ├── logo.png ├── logo.svg ├── race │ ├── 10f.webp │ ├── 10m.webp │ ├── 11f.webp │ ├── 11m.webp │ ├── 1f.webp │ ├── 1m.webp │ ├── 2f.webp │ ├── 2m.webp │ ├── 3f.webp │ ├── 3m.webp │ ├── 4f.webp │ ├── 4m.webp │ ├── 5f.webp │ ├── 5m.webp │ ├── 6f.webp │ ├── 6m.webp │ ├── 7f.webp │ ├── 7m.webp │ ├── 8f.webp │ └── 8m.webp └── unstuck │ ├── hearthstone.jpg │ └── unstuck.js └── libraries └── wow-model-viewer ├── character_modeling.js ├── index.js ├── setup.js └── wow_model_viewer.js /.env.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/.env.docker -------------------------------------------------------------------------------- /.github/workflows/acore-ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/.github/workflows/acore-ci-cd.yml -------------------------------------------------------------------------------- /.github/workflows/sync-plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/.github/workflows/sync-plugins.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/.gitmodules -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/.htaccess -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /acore-cms.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/acore-cms.code-workspace -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/.gitignore -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/README -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/bin/dump-parser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/bin/dump-parser -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/bin/mysql.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/bin/mysql.exe -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/bin/mysqldump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/bin/mysqldump.exe -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/bin/mysqlimport.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/bin/mysqlimport.exe -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/build-dump-parser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/build-dump-parser.sh -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/dump-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/dump-parser.c -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/mysql-config.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/mysql-config.dist -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/mysql-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/mysql-dump -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/mysql-import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/mysql-import -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/mysql-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/mysql-tools -------------------------------------------------------------------------------- /apps/azerothcore/mysql-tools/shared-def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/azerothcore/mysql-tools/shared-def -------------------------------------------------------------------------------- /apps/ci/test-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/ci/test-setup.sh -------------------------------------------------------------------------------- /apps/db_exporter/.gitignore: -------------------------------------------------------------------------------- 1 | config.sh 2 | -------------------------------------------------------------------------------- /apps/db_exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/db_exporter/README.md -------------------------------------------------------------------------------- /apps/db_exporter/db_export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/db_exporter/db_export.sh -------------------------------------------------------------------------------- /apps/db_exporter/db_import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/db_exporter/db_import.sh -------------------------------------------------------------------------------- /apps/db_exporter/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/db_exporter/shared.sh -------------------------------------------------------------------------------- /apps/import-srv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/import-srv.sh -------------------------------------------------------------------------------- /apps/init/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/init/healthcheck.sh -------------------------------------------------------------------------------- /apps/init/init.lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/init/init.lib.sh -------------------------------------------------------------------------------- /apps/init/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/apps/init/init.sh -------------------------------------------------------------------------------- /conf/dist/certs/cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/conf/dist/certs/cert.crt -------------------------------------------------------------------------------- /conf/dist/certs/cert.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/conf/dist/certs/cert.key -------------------------------------------------------------------------------- /conf/dist/conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/conf/dist/conf.sh -------------------------------------------------------------------------------- /conf/dist/maintenance/conf/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/conf/dist/maintenance/conf/default.conf -------------------------------------------------------------------------------- /conf/dist/maintenance/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/conf/dist/maintenance/html/index.html -------------------------------------------------------------------------------- /conf/dist/nginx-conf/wordpress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/conf/dist/nginx-conf/wordpress.conf -------------------------------------------------------------------------------- /conf/dist/php-conf/upload.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/conf/dist/php-conf/upload.ini -------------------------------------------------------------------------------- /conf/init/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/conf/init/.gitkeep -------------------------------------------------------------------------------- /data/docker/Wordpress.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/data/docker/Wordpress.Dockerfile -------------------------------------------------------------------------------- /data/docker/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/data/docker/docker-compose.override.yml -------------------------------------------------------------------------------- /data/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.env-files/Gemfile.gitlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/.env-files/Gemfile.gitlab -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/_includes/sidebar.html -------------------------------------------------------------------------------- /docs/configure-acore-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/configure-acore-docker.md -------------------------------------------------------------------------------- /docs/configure-cms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/configure-cms.md -------------------------------------------------------------------------------- /docs/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/dashboard.png -------------------------------------------------------------------------------- /docs/images/3d-viewer-example-mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/images/3d-viewer-example-mount.png -------------------------------------------------------------------------------- /docs/images/3d-viewer-example-pet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/images/3d-viewer-example-pet.png -------------------------------------------------------------------------------- /docs/images/3d-viewer-example-transmog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/images/3d-viewer-example-transmog.png -------------------------------------------------------------------------------- /docs/images/3d-viewer-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/images/3d-viewer-option.png -------------------------------------------------------------------------------- /docs/images/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/images/shop.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/nginx-for-multisite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/nginx-for-multisite.md -------------------------------------------------------------------------------- /docs/themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/docs/themes.md -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/init.sh -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/package.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/acore-wp-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/acore-wp-plugin.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/app.sh -------------------------------------------------------------------------------- /src/acore-wp-plugin/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/composer.lock -------------------------------------------------------------------------------- /src/acore-wp-plugin/data/languages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/AdminPanel/AdminPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/AdminPanel/AdminPanel.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/AdminPanel/Pages/ElunaSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/AdminPanel/Pages/ElunaSettings.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/AdminPanel/Pages/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/AdminPanel/Pages/Home.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/AdminPanel/Pages/PVPRewards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/AdminPanel/Pages/PVPRewards.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/AdminPanel/Pages/RealmSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/AdminPanel/Pages/RealmSettings.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/AdminPanel/Pages/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/AdminPanel/Pages/Tools.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/AdminPanel/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/AdminPanel/SettingsController.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/AdminPanel/SettingsView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/AdminPanel/SettingsView.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/CharactersMenu/CharactersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/CharactersMenu/CharactersController.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/CharactersMenu/CharactersMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/CharactersMenu/CharactersMenu.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/CharactersMenu/CharactersView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/CharactersMenu/CharactersView.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/ServerInfo/ServerInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/ServerInfo/ServerInfo.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/ServerInfo/ServerInfoApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/ServerInfo/ServerInfoApi.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/ServerInfo/ServerInfoWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/ServerInfo/ServerInfoWidget.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/Tools/ToolsApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/Tools/ToolsApi.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/Tools/ToolsInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/Tools/ToolsInfo.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/UnstuckMenu/UnstuckApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/UnstuckMenu/UnstuckApi.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/UnstuckMenu/UnstuckController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/UnstuckMenu/UnstuckController.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/UnstuckMenu/UnstuckMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/UnstuckMenu/UnstuckMenu.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/UnstuckMenu/UnstuckView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/UnstuckMenu/UnstuckView.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/UserPanel/Pages/ItemRestorationPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/UserPanel/Pages/ItemRestorationPage.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/UserPanel/Pages/RafProgressPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/UserPanel/Pages/RafProgressPage.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/UserPanel/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/UserPanel/UserController.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/UserPanel/UserMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/UserPanel/UserMenu.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Components/UserPanel/UserView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Components/UserPanel/UserView.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Deps/class-tgm-plugin-activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Deps/class-tgm-plugin-activation.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/Head/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/Head/head.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/Subscriptions/sync_subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/Subscriptions/sync_subscription.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/User/Include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/User/Include.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/User/User.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/Various/ItemSku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/Various/ItemSku.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/Various/tgmplugin_activator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/Various/tgmplugin_activator.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/CarbonCopy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/CarbonCopy.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/CartValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/CartValidation.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/CharChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/CharChange.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/CharTransfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/CharTransfer.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/FieldElements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/FieldElements.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/GuildChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/GuildChange.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/ItemRestoration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/ItemRestoration.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/ItemSend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/ItemSend.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/NameUnlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/NameUnlock.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/Products.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/Smartstone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/Smartstone.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/TransmogItemSend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/TransmogItemSend.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/TransmogItemsetSend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/TransmogItemsetSend.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Hooks/WooCommerce/WooCommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Hooks/WooCommerce/WooCommerce.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Lib/WpClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Lib/WpClass.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/ACoreServices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/ACoreServices.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/AcoreConnector/AcoreManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/AcoreConnector/AcoreManager.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/AcoreConnector/AcoreManagerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/AcoreConnector/AcoreManagerTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/AcoreConnector/AcoreRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/AcoreConnector/AcoreRepository.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Auth/AuthManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Auth/AuthManager.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Auth/Entity/AccountAccessEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Auth/Entity/AccountAccessEntity.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Auth/Entity/AccountBannedEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Auth/Entity/AccountBannedEntity.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Auth/Entity/AccountEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Auth/Entity/AccountEntity.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Auth/Repository/AccountAccessRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Auth/Repository/AccountAccessRepository.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Auth/Repository/AccountBannedRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Auth/Repository/AccountBannedRepository.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Auth/Repository/AccountRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Auth/Repository/AccountRepository.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Character/CharacterManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Character/CharacterManager.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Character/Entity/CharacterBannedEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Character/Entity/CharacterBannedEntity.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Character/Entity/CharacterEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Character/Entity/CharacterEntity.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Character/Repository/CharacterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Character/Repository/CharacterRepository.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Common.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Opts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Opts.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Soap/AccountService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Soap/AccountService.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Soap/AcoreSoap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Soap/AcoreSoap.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Soap/AcoreSoapTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Soap/AcoreSoapTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Soap/CharacterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Soap/CharacterService.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Soap/GuildService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Soap/GuildService.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Soap/MailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Soap/MailService.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Soap/ServerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Soap/ServerService.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Soap/SmartstoneService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Soap/SmartstoneService.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Soap/TransmogService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Soap/TransmogService.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/Soap/UnstuckService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/Soap/UnstuckService.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/UserValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/UserValidator.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Manager/World/WorldManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Manager/World/WorldManager.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/Utils/AcoreUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/Utils/AcoreUtils.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/src/boot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/src/boot.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/autoload.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/bin/doctrine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/bin/doctrine -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/bin/doctrine-dbal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/bin/doctrine-dbal -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/bin/doctrine-dbal.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/bin/doctrine-dbal.bat -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/bin/doctrine.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/bin/doctrine.bat -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/installed.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/installed.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/package-versions-deprecated/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/package-versions-deprecated/CHANGELOG.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/package-versions-deprecated/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/package-versions-deprecated/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/package-versions-deprecated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/package-versions-deprecated/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/package-versions-deprecated/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/package-versions-deprecated/SECURITY.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/package-versions-deprecated/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/package-versions-deprecated/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/package-versions-deprecated/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/package-versions-deprecated/composer.lock -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/annotations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/annotations/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/annotations/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/annotations/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/annotations/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/cache/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/cache/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/cache/UPGRADE-1.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/cache/UPGRADE-1.11.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/cache/UPGRADE-1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/cache/UPGRADE-1.4.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/cache/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/cache/lib/Doctrine/Common/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/cache/lib/Doctrine/Common/Cache/Cache.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/collections/.doctrine-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/collections/.doctrine-project.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/collections/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/collections/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/collections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/collections/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/collections/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/collections/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/collections/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/collections/phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/collections/phpstan.neon.dist -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/collections/psalm.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/collections/psalm.xml.dist -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/.doctrine-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/.doctrine-project.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/UPGRADE_TO_2_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/UPGRADE_TO_2_1 -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/UPGRADE_TO_2_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/UPGRADE_TO_2_2 -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/humbug.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/humbug.json.dist -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/lib/Doctrine/Common/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/lib/Doctrine/Common/ClassLoader.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/lib/Doctrine/Common/Comparable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/lib/Doctrine/Common/Comparable.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/lib/Doctrine/Common/Proxy/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/lib/Doctrine/Common/Proxy/Proxy.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/lib/Doctrine/Common/Util/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/lib/Doctrine/Common/Util/Debug.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/phpstan.neon.dist -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/common/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/common/psalm.xml -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/bin/doctrine-dbal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/bin/doctrine-dbal -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/bin/doctrine-dbal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/bin/doctrine-dbal.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/ArrayParameters/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/ArrayParameters/Exception.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Cache/ArrayResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Cache/ArrayResult.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Cache/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Cache/CacheException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Cache/CachingResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Cache/CachingResult.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Cache/QueryCacheProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Cache/QueryCacheProfile.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/ColumnCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/ColumnCase.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Configuration.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Connection.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/ConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/ConnectionException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/API/ExceptionConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/API/ExceptionConverter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/AbstractDB2Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/AbstractDB2Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/AbstractException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/AbstractException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/AbstractMySQLDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/AbstractMySQLDriver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/AbstractOracleDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/AbstractOracleDriver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/AbstractSQLiteDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/AbstractSQLiteDriver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Connection.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Exception.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/FetchUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/FetchUtils.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/IBMDB2/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/IBMDB2/Connection.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/IBMDB2/DataSourceName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/IBMDB2/DataSourceName.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/IBMDB2/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/IBMDB2/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/IBMDB2/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/IBMDB2/Result.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/IBMDB2/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/IBMDB2/Statement.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Middleware.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Mysqli/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Mysqli/Connection.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Mysqli/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Mysqli/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Mysqli/Initializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Mysqli/Initializer.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Mysqli/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Mysqli/Result.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Mysqli/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Mysqli/Statement.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/Connection.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/Exception/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/Exception/Error.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/ExecutionMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/ExecutionMode.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/Result.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/OCI8/Statement.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/Connection.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/Exception.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/OCI/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/OCI/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/PgSQL/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/PgSQL/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/Result.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/SQLSrv/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/SQLSrv/Connection.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/SQLSrv/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/SQLSrv/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/SQLSrv/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/SQLSrv/Statement.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/SQLite/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/SQLite/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/PDO/Statement.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Result.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/SQLSrv/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/SQLSrv/Connection.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/SQLSrv/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/SQLSrv/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/SQLSrv/Exception/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/SQLSrv/Exception/Error.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/SQLSrv/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/SQLSrv/Result.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/SQLSrv/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/SQLSrv/Statement.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Driver/Statement.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/DriverManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/DriverManager.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Event/ConnectionEventArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Event/ConnectionEventArgs.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Event/SchemaEventArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Event/SchemaEventArgs.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Events.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/ConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/ConnectionException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/ConnectionLost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/ConnectionLost.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/DeadlockException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/DeadlockException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/DriverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/DriverException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/InvalidLockMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/InvalidLockMode.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/NoKeyValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/NoKeyValue.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/ServerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Exception/ServerException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/ExpandArrayParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/ExpandArrayParameters.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/FetchMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/FetchMode.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Id/TableGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Id/TableGenerator.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/LockMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/LockMode.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Logging/DebugStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Logging/DebugStack.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Logging/LoggerChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Logging/LoggerChain.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Logging/SQLLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Logging/SQLLogger.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/ParameterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/ParameterType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/AbstractPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/AbstractPlatform.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/DB2Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/DB2Platform.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/DateIntervalUnit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/DateIntervalUnit.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/MySQL57Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/MySQL57Platform.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/MySQL80Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/MySQL80Platform.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/MySQLPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/MySQLPlatform.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/OraclePlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/OraclePlatform.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/SqlitePlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/SqlitePlatform.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/TrimMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Platforms/TrimMode.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Connection.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Converter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Driver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Middleware.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/OptimizeFlags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/OptimizeFlags.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Result.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Portability/Statement.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Query.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Query/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Query/QueryBuilder.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Query/QueryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Query/QueryException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Result.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/SQL/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/SQL/Parser.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/SQL/Parser/Visitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/SQL/Parser/Visitor.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/AbstractAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/AbstractAsset.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Column.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/ColumnDiff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/ColumnDiff.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Comparator.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Constraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Constraint.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/DB2SchemaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/DB2SchemaManager.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Identifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Identifier.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Index.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/MySQLSchemaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/MySQLSchemaManager.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/OracleSchemaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/OracleSchemaManager.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Schema.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/SchemaConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/SchemaConfig.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/SchemaDiff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/SchemaDiff.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/SchemaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/SchemaException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Sequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Sequence.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/SqliteSchemaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/SqliteSchemaManager.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Table.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/TableDiff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/TableDiff.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/UniqueConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/UniqueConstraint.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/View.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Visitor/Graphviz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Visitor/Graphviz.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Visitor/Visitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Schema/Visitor/Visitor.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Statement.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Tools/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Tools/Dumper.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/TransactionIsolationLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/TransactionIsolationLevel.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/ArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/ArrayType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/AsciiStringType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/AsciiStringType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/BigIntType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/BigIntType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/BinaryType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/BinaryType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/BlobType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/BlobType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/BooleanType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/BooleanType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/ConversionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/ConversionException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DateImmutableType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DateImmutableType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DateIntervalType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DateIntervalType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DateTimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DateTimeType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DateTimeTzType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DateTimeTzType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DateType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DateType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DecimalType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/DecimalType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/FloatType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/FloatType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/GuidType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/GuidType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/IntegerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/IntegerType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/JsonType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/JsonType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/ObjectType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/ObjectType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/SimpleArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/SimpleArrayType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/SmallIntType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/SmallIntType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/StringType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/StringType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/TextType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/TextType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/TimeImmutableType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/TimeImmutableType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/TimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/TimeType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/Type.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/TypeRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/TypeRegistry.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/Types.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/VarDateTimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/Types/VarDateTimeType.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/dbal/src/VersionAwarePlatformDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/dbal/src/VersionAwarePlatformDriver.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/deprecations/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/deprecations/.github/workflows/ci.yml -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/deprecations/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .phpcs-cache 3 | composer.lock 4 | -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/deprecations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/deprecations/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/deprecations/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/deprecations/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/deprecations/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/deprecations/phpcs.xml -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/deprecations/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/deprecations/phpunit.xml.dist -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/deprecations/test_fixtures/src/Foo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/deprecations/test_fixtures/src/Foo.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/event-manager/.doctrine-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/event-manager/.doctrine-project.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/event-manager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/event-manager/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/event-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/event-manager/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/event-manager/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/event-manager/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/inflector/phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/inflector/phpstan.neon.dist -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/inflector/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/inflector/psalm.xml -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/instantiator/.doctrine-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/instantiator/.doctrine-project.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/instantiator/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/instantiator/.github/FUNDING.yml -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/instantiator/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/instantiator/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/instantiator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/instantiator/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/instantiator/phpbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/instantiator/phpbench.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/instantiator/phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/instantiator/phpcs.xml.dist -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/instantiator/phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/instantiator/phpstan.neon.dist -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/lexer/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/.gitmodules -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/SECURITY.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/UPGRADE.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/bin/doctrine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/bin/doctrine -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/bin/doctrine-pear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/bin/doctrine-pear.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/bin/doctrine.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/bin/doctrine.bat -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/bin/doctrine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/bin/doctrine.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/ci/github/phpunit/mysqli.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/ci/github/phpunit/mysqli.xml -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/ci/github/phpunit/pdo_mysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/ci/github/phpunit/pdo_mysql.xml -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/ci/github/phpunit/pdo_pgsql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/ci/github/phpunit/pdo_pgsql.xml -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/ci/github/phpunit/sqlite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/ci/github/phpunit/sqlite.xml -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/doctrine-mapping.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/doctrine-mapping.xsd -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Cache.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/CacheKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/CacheKey.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/Lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/Lock.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/Region.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/Region.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Configuration.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Events.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Cache.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Column.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Entity.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Id.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Index.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Table.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/NativeQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/NativeQuery.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/ORMException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/ORMException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Proxy/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Proxy/Proxy.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/Join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/Join.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/Node.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Orx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Orx.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Lexer.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Printer.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/QueryBuilder.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Tools/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Tools/Setup.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/lib/Doctrine/ORM/Version.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/phpstan-dbal2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/phpstan-dbal2.neon -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/orm/phpstan-params.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/orm/phpstan-params.neon -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/persistence/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/persistence/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/persistence/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/persistence/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/persistence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/persistence/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/persistence/UPGRADE-1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/persistence/UPGRADE-1.2.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/persistence/UPGRADE-2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/persistence/UPGRADE-2.2.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/doctrine/persistence/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/doctrine/persistence/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/cache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/cache/CHANGELOG.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/cache/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/cache/LICENSE.txt -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/cache/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/cache/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/cache/src/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/cache/src/CacheException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/cache/src/CacheItemInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/cache/src/CacheItemInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/cache/src/CacheItemPoolInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/cache/src/CacheItemPoolInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/cache/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/cache/src/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/container/.gitignore -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/container/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/container/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/container/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/container/src/ContainerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/container/src/ContainerInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/container/src/NotFoundExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/container/src/NotFoundExceptionInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/AbstractLogger.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/LoggerAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/LoggerAwareInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/LoggerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/LoggerAwareTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/LoggerInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/Test/DummyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/Test/DummyTest.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/Psr/Log/Test/TestLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/Psr/Log/Test/TestLogger.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache-contracts/CHANGELOG.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache-contracts/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache-contracts/CacheInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache-contracts/CacheTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache-contracts/CacheTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache-contracts/CallbackInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache-contracts/CallbackInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache-contracts/ItemInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache-contracts/ItemInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache-contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache-contracts/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache-contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache-contracts/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache-contracts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache-contracts/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/AbstractAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/AbstractAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/AdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/AdapterInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/ApcuAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/ApcuAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/ArrayAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/ArrayAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/ChainAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/ChainAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/CouchbaseBucketAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/CouchbaseBucketAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/DoctrineAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/DoctrineAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/FilesystemAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/FilesystemAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/MemcachedAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/MemcachedAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/NullAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/NullAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/ParameterNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/ParameterNormalizer.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/PdoAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/PdoAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/PhpArrayAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/PhpArrayAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/PhpFilesAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/PhpFilesAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/ProxyAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/ProxyAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/Psr16Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/Psr16Adapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/RedisAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/RedisAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/RedisTagAwareAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/RedisTagAwareAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/TagAwareAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/TagAwareAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Adapter/TraceableAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Adapter/TraceableAdapter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/CHANGELOG.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/CacheItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/CacheItem.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/DoctrineProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/DoctrineProvider.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Exception/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Exception/CacheException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Exception/LogicException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/LockRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/LockRegistry.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Marshaller/DefaultMarshaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Marshaller/DefaultMarshaller.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Marshaller/DeflateMarshaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Marshaller/DeflateMarshaller.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Marshaller/MarshallerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Marshaller/MarshallerInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Marshaller/SodiumMarshaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Marshaller/SodiumMarshaller.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Marshaller/TagAwareMarshaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Marshaller/TagAwareMarshaller.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/PruneableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/PruneableInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Psr16Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Psr16Cache.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/ResettableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/ResettableInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Traits/AbstractAdapterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Traits/AbstractAdapterTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Traits/ContractsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Traits/ContractsTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Traits/FilesystemCommonTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Traits/FilesystemCommonTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Traits/FilesystemTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Traits/FilesystemTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Traits/ProxyTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Traits/ProxyTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Traits/RedisClusterNodeProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Traits/RedisClusterNodeProxy.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Traits/RedisClusterProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Traits/RedisClusterProxy.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Traits/RedisProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Traits/RedisProxy.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/Traits/RedisTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/Traits/RedisTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/cache/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Application.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Attribute/AsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Attribute/AsCommand.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/CHANGELOG.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/CI/GithubActionReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/CI/GithubActionReporter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Color.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Command/Command.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Command/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Command/HelpCommand.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Command/LazyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Command/LazyCommand.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Command/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Command/ListCommand.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Command/LockableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Command/LockableTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Cursor.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Descriptor/Descriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Descriptor/Descriptor.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Descriptor/JsonDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Descriptor/JsonDescriptor.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Descriptor/TextDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Descriptor/TextDescriptor.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Descriptor/XmlDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Descriptor/XmlDescriptor.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Event/ConsoleCommandEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Event/ConsoleCommandEvent.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Event/ConsoleErrorEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Event/ConsoleErrorEvent.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Event/ConsoleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Event/ConsoleEvent.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Event/ConsoleSignalEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Event/ConsoleSignalEvent.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Event/ConsoleTerminateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Event/ConsoleTerminateEvent.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/EventListener/ErrorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/EventListener/ErrorListener.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Exception/LogicException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Formatter/OutputFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Formatter/OutputFormatter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/DebugFormatterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/DebugFormatterHelper.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/DescriptorHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/DescriptorHelper.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/Dumper.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/FormatterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/FormatterHelper.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/Helper.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/HelperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/HelperInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/HelperSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/HelperSet.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/InputAwareHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/InputAwareHelper.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/ProcessHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/ProcessHelper.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/ProgressBar.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/ProgressIndicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/ProgressIndicator.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/QuestionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/QuestionHelper.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/SymfonyQuestionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/SymfonyQuestionHelper.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/TableCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/TableCell.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/TableCellStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/TableCellStyle.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/TableRows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/TableRows.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/TableSeparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/TableSeparator.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Helper/TableStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Helper/TableStyle.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Input/ArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Input/ArgvInput.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Input/ArrayInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Input/ArrayInput.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Input/InputArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Input/InputArgument.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Input/InputAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Input/InputAwareInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Input/InputDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Input/InputDefinition.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Input/InputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Input/InputInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Input/InputOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Input/InputOption.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Input/StringInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Input/StringInput.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Logger/ConsoleLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Logger/ConsoleLogger.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Output/BufferedOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Output/BufferedOutput.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Output/ConsoleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Output/ConsoleOutput.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Output/ConsoleSectionOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Output/ConsoleSectionOutput.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Output/NullOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Output/NullOutput.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Output/Output.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Output/OutputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Output/OutputInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Output/StreamOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Output/StreamOutput.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Output/TrimmedBufferOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Output/TrimmedBufferOutput.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Question/ChoiceQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Question/ChoiceQuestion.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Question/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Question/Question.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Resources/bin/hiddeninput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Resources/bin/hiddeninput.exe -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/SingleCommandApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/SingleCommandApplication.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Style/OutputStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Style/OutputStyle.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Style/StyleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Style/StyleInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Style/SymfonyStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Style/SymfonyStyle.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Terminal.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Tester/ApplicationTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Tester/ApplicationTester.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Tester/CommandTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Tester/CommandTester.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/Tester/TesterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/Tester/TesterTrait.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/console/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/deprecation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/deprecation-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/deprecation-contracts/CHANGELOG.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/deprecation-contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/deprecation-contracts/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/deprecation-contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/deprecation-contracts/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/deprecation-contracts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/deprecation-contracts/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/deprecation-contracts/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/deprecation-contracts/function.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-ctype/Ctype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-ctype/Ctype.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-ctype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-ctype/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-ctype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-ctype/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-ctype/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-ctype/bootstrap.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-ctype/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-ctype/bootstrap80.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-ctype/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-ctype/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/Grapheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/Grapheme.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/bootstrap.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/bootstrap80.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-grapheme/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/Normalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/Normalizer.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/bootstrap.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-intl-normalizer/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/Mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/Mbstring.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/bootstrap.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/bootstrap80.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-mbstring/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php72/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php72/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php72/Php72.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php72/Php72.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php72/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php72/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php72/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php72/bootstrap.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php72/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php72/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php73/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php73/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php73/Php73.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php73/Php73.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php73/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php73/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php73/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php73/bootstrap.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php73/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php73/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php80/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php80/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php80/Php80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php80/Php80.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php80/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php80/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php80/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php80/bootstrap.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/polyfill-php80/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/polyfill-php80/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/service-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/service-contracts/Attribute/Required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/service-contracts/Attribute/Required.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/service-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/service-contracts/CHANGELOG.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/service-contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/service-contracts/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/service-contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/service-contracts/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/service-contracts/ResetInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/service-contracts/ResetInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/service-contracts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/service-contracts/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/AbstractString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/AbstractString.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/AbstractUnicodeString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/AbstractUnicodeString.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/ByteString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/ByteString.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/CHANGELOG.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/CodePointString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/CodePointString.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/Inflector/EnglishInflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/Inflector/EnglishInflector.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/Inflector/FrenchInflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/Inflector/FrenchInflector.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/Inflector/InflectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/Inflector/InflectorInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/LazyString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/LazyString.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/Resources/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/Resources/functions.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/Slugger/AsciiSlugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/Slugger/AsciiSlugger.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/Slugger/SluggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/Slugger/SluggerInterface.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/UnicodeString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/UnicodeString.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/string/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/string/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/CHANGELOG.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/Instantiator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/Instantiator.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/Internal/Exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/Internal/Exporter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/Internal/Hydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/Internal/Hydrator.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/Internal/Reference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/Internal/Reference.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/Internal/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/Internal/Registry.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/Internal/Values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/Internal/Values.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/LICENSE -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/README.md -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/VarExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/VarExporter.php -------------------------------------------------------------------------------- /src/acore-wp-plugin/vendor/symfony/var-exporter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/vendor/symfony/var-exporter/composer.json -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/admin_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/admin_logo.svg -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/class/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/class/1.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/class/11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/class/11.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/class/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/class/2.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/class/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/class/3.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/class/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/class/4.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/class/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/class/5.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/class/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/class/6.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/class/7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/class/7.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/class/8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/class/8.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/class/9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/class/9.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/css/main.css -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/logo.png -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/logo.svg -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/10f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/10f.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/10m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/10m.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/11f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/11f.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/11m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/11m.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/1f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/1f.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/1m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/1m.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/2f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/2f.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/2m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/2m.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/3f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/3f.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/3m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/3m.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/4f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/4f.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/4m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/4m.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/5f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/5f.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/5m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/5m.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/6f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/6f.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/6m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/6m.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/7f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/7f.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/7m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/7m.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/8f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/8f.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/race/8m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/race/8m.webp -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/unstuck/hearthstone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/unstuck/hearthstone.jpg -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/assets/unstuck/unstuck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/assets/unstuck/unstuck.js -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/libraries/wow-model-viewer/character_modeling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/libraries/wow-model-viewer/character_modeling.js -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/libraries/wow-model-viewer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/libraries/wow-model-viewer/index.js -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/libraries/wow-model-viewer/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/libraries/wow-model-viewer/setup.js -------------------------------------------------------------------------------- /src/acore-wp-plugin/web/libraries/wow-model-viewer/wow_model_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/acore-cms/HEAD/src/acore-wp-plugin/web/libraries/wow-model-viewer/wow_model_viewer.js --------------------------------------------------------------------------------