├── .editorconfig ├── .github ├── oxid-esales │ └── graphql-base.yaml ├── pull_request_template.md └── workflows │ ├── dispatch_module.yaml │ ├── schedule_module.yaml │ ├── schema_trigger.yaml │ └── trigger.yaml ├── .gitignore ├── .gitmodules ├── .infection └── phpunit.xml ├── CHANGELOG-v10.md ├── CHANGELOG-v11.md ├── CHANGELOG-v12.md ├── CHANGELOG-v7.md ├── CHANGELOG-v8.md ├── CHANGELOG-v9.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── logo.png ├── composer.json ├── metadata.php ├── migration ├── data │ ├── .gitkeep │ ├── Version20211124083003.php │ └── Version20240115132144.php └── migrations.yml ├── recipes └── setup-development.sh ├── services.yaml ├── sonar-project.properties ├── src ├── Command │ └── CacheClearCommand.php ├── Component │ └── Widget │ │ └── GraphQL.php ├── Controller │ ├── Login.php │ └── Token.php ├── DataType │ ├── DateTimeImmutableFactory.php │ ├── Filter │ │ ├── AbstractNumberFilter.php │ │ ├── BoolFilter.php │ │ ├── DateFilter.php │ │ ├── FilterInterface.php │ │ ├── FilterListInterface.php │ │ ├── FloatFilter.php │ │ ├── IDFilter.php │ │ ├── IntegerFilter.php │ │ └── StringFilter.php │ ├── Login.php │ ├── LoginInterface.php │ ├── Pagination │ │ └── Pagination.php │ ├── RefreshToken.php │ ├── RefreshTokenInterface.php │ ├── ShopModelAwareInterface.php │ ├── Sorting │ │ ├── Sorting.php │ │ └── TokenSorting.php │ ├── Token.php │ ├── TokenFilterList.php │ ├── User.php │ └── UserInterface.php ├── Event │ ├── BeforeAuthorization.php │ ├── BeforeTokenCreation.php │ └── Subscriber │ │ ├── BeforeTokenCreationSubscriber.php │ │ ├── ModuleChangeSubscriber.php │ │ ├── PasswordChangeSubscriber.php │ │ └── UserDeleteSubscriber.php ├── Exception │ ├── Error.php │ ├── ErrorCategories.php │ ├── Exists.php │ ├── FileUploadException.php │ ├── FingerprintMissingException.php │ ├── FingerprintValidationException.php │ ├── InvalidArgumentMultiplePossible.php │ ├── InvalidLogin.php │ ├── InvalidRefreshToken.php │ ├── InvalidRequest.php │ ├── InvalidToken.php │ ├── MissingSignatureKey.php │ ├── NotFound.php │ ├── OutOfBounds.php │ ├── TokenQuota.php │ ├── TokenUserBlocked.php │ ├── UnableToParseToken.php │ ├── UnknownToken.php │ └── UserNotFound.php ├── Framework │ ├── AggregatedFinder.php │ ├── Constraint │ │ └── BelongsToShop.php │ ├── FilesystemAdapterFactory.php │ ├── GraphQLQueryHandler.php │ ├── NamespaceMapperInterface.php │ ├── PermissionProviderInterface.php │ ├── RequestReader.php │ ├── ResponseWriter.php │ ├── SchemaFactory.php │ ├── Timer.php │ └── TimerHandler.php ├── Infrastructure │ ├── Legacy.php │ ├── Model │ │ ├── RefreshToken.php │ │ ├── RefreshTokenModelFactory.php │ │ ├── RefreshTokenModelFactoryInterface.php │ │ └── Token.php │ ├── ModuleSetup.php │ ├── RefreshTokenRepository.php │ ├── RefreshTokenRepositoryInterface.php │ ├── Repository.php │ ├── Token.php │ └── services.yaml └── Service │ ├── Authentication.php │ ├── Authorization.php │ ├── CookieService.php │ ├── CookieServiceInterface.php │ ├── FingerprintService.php │ ├── FingerprintServiceInterface.php │ ├── HeaderService.php │ ├── HeaderServiceInterface.php │ ├── JwtConfigurationBuilder.php │ ├── LoginService.php │ ├── LoginServiceInterface.php │ ├── ModuleConfiguration.php │ ├── NamespaceMapper.php │ ├── PermissionProvider.php │ ├── RefreshTokenService.php │ ├── RefreshTokenServiceInterface.php │ ├── Token.php │ ├── TokenAdministration.php │ ├── TokenValidator.php │ └── UserModelService.php ├── tests ├── Codeception │ ├── Acceptance.suite.yml │ ├── Acceptance │ │ ├── GraphQLCest.php │ │ ├── LoginCest.php │ │ ├── RefreshTokenCest.php │ │ ├── TokenCest.php │ │ └── _bootstrap.php │ ├── Config │ │ ├── CodeceptionParametersProvider.php │ │ └── params.php │ ├── Module │ │ └── AcceptanceHelper.php │ ├── Support │ │ ├── AcceptanceTester.php │ │ ├── Data │ │ │ ├── dump.sql │ │ │ └── fixtures.sql │ │ ├── Helper │ │ │ └── Acceptance.php │ │ └── _generated │ │ │ └── .gitignore │ └── _output │ │ └── .gitignore ├── Fixtures │ ├── dump.sql │ └── upload_file.txt ├── Integration │ ├── EnterpriseTestCase.php │ ├── Framework │ │ ├── Controller │ │ │ └── TestController.php │ │ ├── DataType │ │ │ ├── TestFilter.php │ │ │ ├── TestFilterFactory.php │ │ │ └── TestSorting.php │ │ ├── GraphQLQueryHandlerFileUploadTest.php │ │ ├── GraphQLQueryHandlerTest.php │ │ ├── Service │ │ │ ├── NamespaceMapper.php │ │ │ └── PermissionProvider.php │ │ └── services.yaml │ ├── Infrastructure │ │ ├── LegacyTest.php │ │ ├── Model │ │ │ └── RefreshTokenModelFactoryTest.php │ │ ├── RefreshTokenRepositoryTest.php │ │ ├── RepositoryTest.php │ │ └── TokenTest.php │ ├── MultishopTestCase.php │ ├── TestCase.php │ └── TokenTestCase.php ├── PhpMd │ ├── phpmd.baseline.xml │ └── standard.xml ├── PhpStan │ ├── phpstan-bootstrap.php │ └── phpstan.neon ├── Unit │ ├── BaseTestCase.php │ ├── Controller │ │ ├── LoginTest.php │ │ └── TokenTest.php │ ├── DataType │ │ ├── DataTypeTestCase.php │ │ ├── DateTimeImmutableFactoryTest.php │ │ ├── Filter │ │ │ ├── BoolFilterTest.php │ │ │ ├── DateFilterTest.php │ │ │ ├── FloatFilterTest.php │ │ │ ├── IDFilterTest.php │ │ │ ├── IntegerFilterTest.php │ │ │ └── StringFilterTest.php │ │ ├── LoginTest.php │ │ ├── Pagination │ │ │ └── PaginationTest.php │ │ ├── RefreshTokenTest.php │ │ ├── Sorting │ │ │ └── SortingTest.php │ │ └── TokenFilterListTest.php │ ├── Event │ │ ├── BeforeAuthorizationTest.php │ │ ├── BeforeTokenCreationTest.php │ │ └── Subscriber │ │ │ ├── BeforeTokenCreationSubscriberTest.php │ │ │ └── PasswordChangeSubscriberTest.php │ ├── Exception │ │ ├── FileUploadExceptionTest.php │ │ ├── FingerprintMissingExceptionTest.php │ │ ├── FingerprintValidationExceptionTest.php │ │ ├── InvalidArgumentTest.php │ │ ├── InvalidRefreshTokenTest.php │ │ ├── InvalidTokenTest.php │ │ ├── NotFoundTest.php │ │ ├── TokenUserBlockedTest.php │ │ ├── UnableToParseTokenTest.php │ │ └── UnknownTokenTest.php │ ├── Framework │ │ ├── AggregatedFinderTest.php │ │ ├── Constraint │ │ │ └── BelongsToShopTest.php │ │ ├── RequestReaderTest.php │ │ ├── TimerHandlerTest.php │ │ ├── TimerTest.php │ │ └── fixtures │ │ │ ├── example.txt │ │ │ └── simpleRequest.json │ └── Service │ │ ├── AuthenticationTest.php │ │ ├── AuthorizationTest.php │ │ ├── CookieServiceTest.php │ │ ├── FingerprintServiceTest.php │ │ ├── HeaderServiceTest.php │ │ ├── InvalidSignatureTest.php │ │ ├── LoginServiceTest.php │ │ ├── ModuleConfigurationTest.php │ │ ├── RefreshTokenServiceTest.php │ │ ├── TokenAdministrationTest.php │ │ ├── TokenTest.php │ │ ├── TokenValidatorTest.php │ │ └── UserModelServiceTest.php ├── codeception.yml ├── phpcs.xml └── phpunit.xml └── views └── admin_twig ├── de └── module_options.php └── en └── module_options.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/oxid-esales/graphql-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/.github/oxid-esales/graphql-base.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/dispatch_module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/.github/workflows/dispatch_module.yaml -------------------------------------------------------------------------------- /.github/workflows/schedule_module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/.github/workflows/schedule_module.yaml -------------------------------------------------------------------------------- /.github/workflows/schema_trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/.github/workflows/schema_trigger.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/.github/workflows/trigger.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/.gitmodules -------------------------------------------------------------------------------- /.infection/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/.infection/phpunit.xml -------------------------------------------------------------------------------- /CHANGELOG-v10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/CHANGELOG-v10.md -------------------------------------------------------------------------------- /CHANGELOG-v11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/CHANGELOG-v11.md -------------------------------------------------------------------------------- /CHANGELOG-v12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/CHANGELOG-v12.md -------------------------------------------------------------------------------- /CHANGELOG-v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/CHANGELOG-v7.md -------------------------------------------------------------------------------- /CHANGELOG-v8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/CHANGELOG-v8.md -------------------------------------------------------------------------------- /CHANGELOG-v9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/CHANGELOG-v9.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/assets/logo.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/composer.json -------------------------------------------------------------------------------- /metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/metadata.php -------------------------------------------------------------------------------- /migration/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migration/data/Version20211124083003.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/migration/data/Version20211124083003.php -------------------------------------------------------------------------------- /migration/data/Version20240115132144.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/migration/data/Version20240115132144.php -------------------------------------------------------------------------------- /migration/migrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/migration/migrations.yml -------------------------------------------------------------------------------- /recipes/setup-development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/recipes/setup-development.sh -------------------------------------------------------------------------------- /services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/services.yaml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/Command/CacheClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Command/CacheClearCommand.php -------------------------------------------------------------------------------- /src/Component/Widget/GraphQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Component/Widget/GraphQL.php -------------------------------------------------------------------------------- /src/Controller/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Controller/Login.php -------------------------------------------------------------------------------- /src/Controller/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Controller/Token.php -------------------------------------------------------------------------------- /src/DataType/DateTimeImmutableFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/DateTimeImmutableFactory.php -------------------------------------------------------------------------------- /src/DataType/Filter/AbstractNumberFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Filter/AbstractNumberFilter.php -------------------------------------------------------------------------------- /src/DataType/Filter/BoolFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Filter/BoolFilter.php -------------------------------------------------------------------------------- /src/DataType/Filter/DateFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Filter/DateFilter.php -------------------------------------------------------------------------------- /src/DataType/Filter/FilterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Filter/FilterInterface.php -------------------------------------------------------------------------------- /src/DataType/Filter/FilterListInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Filter/FilterListInterface.php -------------------------------------------------------------------------------- /src/DataType/Filter/FloatFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Filter/FloatFilter.php -------------------------------------------------------------------------------- /src/DataType/Filter/IDFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Filter/IDFilter.php -------------------------------------------------------------------------------- /src/DataType/Filter/IntegerFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Filter/IntegerFilter.php -------------------------------------------------------------------------------- /src/DataType/Filter/StringFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Filter/StringFilter.php -------------------------------------------------------------------------------- /src/DataType/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Login.php -------------------------------------------------------------------------------- /src/DataType/LoginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/LoginInterface.php -------------------------------------------------------------------------------- /src/DataType/Pagination/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Pagination/Pagination.php -------------------------------------------------------------------------------- /src/DataType/RefreshToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/RefreshToken.php -------------------------------------------------------------------------------- /src/DataType/RefreshTokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/RefreshTokenInterface.php -------------------------------------------------------------------------------- /src/DataType/ShopModelAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/ShopModelAwareInterface.php -------------------------------------------------------------------------------- /src/DataType/Sorting/Sorting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Sorting/Sorting.php -------------------------------------------------------------------------------- /src/DataType/Sorting/TokenSorting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Sorting/TokenSorting.php -------------------------------------------------------------------------------- /src/DataType/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/Token.php -------------------------------------------------------------------------------- /src/DataType/TokenFilterList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/TokenFilterList.php -------------------------------------------------------------------------------- /src/DataType/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/User.php -------------------------------------------------------------------------------- /src/DataType/UserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/DataType/UserInterface.php -------------------------------------------------------------------------------- /src/Event/BeforeAuthorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Event/BeforeAuthorization.php -------------------------------------------------------------------------------- /src/Event/BeforeTokenCreation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Event/BeforeTokenCreation.php -------------------------------------------------------------------------------- /src/Event/Subscriber/BeforeTokenCreationSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Event/Subscriber/BeforeTokenCreationSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/ModuleChangeSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Event/Subscriber/ModuleChangeSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/PasswordChangeSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Event/Subscriber/PasswordChangeSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/UserDeleteSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Event/Subscriber/UserDeleteSubscriber.php -------------------------------------------------------------------------------- /src/Exception/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/Error.php -------------------------------------------------------------------------------- /src/Exception/ErrorCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/ErrorCategories.php -------------------------------------------------------------------------------- /src/Exception/Exists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/Exists.php -------------------------------------------------------------------------------- /src/Exception/FileUploadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/FileUploadException.php -------------------------------------------------------------------------------- /src/Exception/FingerprintMissingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/FingerprintMissingException.php -------------------------------------------------------------------------------- /src/Exception/FingerprintValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/FingerprintValidationException.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentMultiplePossible.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/InvalidArgumentMultiplePossible.php -------------------------------------------------------------------------------- /src/Exception/InvalidLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/InvalidLogin.php -------------------------------------------------------------------------------- /src/Exception/InvalidRefreshToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/InvalidRefreshToken.php -------------------------------------------------------------------------------- /src/Exception/InvalidRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/InvalidRequest.php -------------------------------------------------------------------------------- /src/Exception/InvalidToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/InvalidToken.php -------------------------------------------------------------------------------- /src/Exception/MissingSignatureKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/MissingSignatureKey.php -------------------------------------------------------------------------------- /src/Exception/NotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/NotFound.php -------------------------------------------------------------------------------- /src/Exception/OutOfBounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/OutOfBounds.php -------------------------------------------------------------------------------- /src/Exception/TokenQuota.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/TokenQuota.php -------------------------------------------------------------------------------- /src/Exception/TokenUserBlocked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/TokenUserBlocked.php -------------------------------------------------------------------------------- /src/Exception/UnableToParseToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/UnableToParseToken.php -------------------------------------------------------------------------------- /src/Exception/UnknownToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/UnknownToken.php -------------------------------------------------------------------------------- /src/Exception/UserNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Exception/UserNotFound.php -------------------------------------------------------------------------------- /src/Framework/AggregatedFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/AggregatedFinder.php -------------------------------------------------------------------------------- /src/Framework/Constraint/BelongsToShop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/Constraint/BelongsToShop.php -------------------------------------------------------------------------------- /src/Framework/FilesystemAdapterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/FilesystemAdapterFactory.php -------------------------------------------------------------------------------- /src/Framework/GraphQLQueryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/GraphQLQueryHandler.php -------------------------------------------------------------------------------- /src/Framework/NamespaceMapperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/NamespaceMapperInterface.php -------------------------------------------------------------------------------- /src/Framework/PermissionProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/PermissionProviderInterface.php -------------------------------------------------------------------------------- /src/Framework/RequestReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/RequestReader.php -------------------------------------------------------------------------------- /src/Framework/ResponseWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/ResponseWriter.php -------------------------------------------------------------------------------- /src/Framework/SchemaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/SchemaFactory.php -------------------------------------------------------------------------------- /src/Framework/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/Timer.php -------------------------------------------------------------------------------- /src/Framework/TimerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Framework/TimerHandler.php -------------------------------------------------------------------------------- /src/Infrastructure/Legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/Legacy.php -------------------------------------------------------------------------------- /src/Infrastructure/Model/RefreshToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/Model/RefreshToken.php -------------------------------------------------------------------------------- /src/Infrastructure/Model/RefreshTokenModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/Model/RefreshTokenModelFactory.php -------------------------------------------------------------------------------- /src/Infrastructure/Model/RefreshTokenModelFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/Model/RefreshTokenModelFactoryInterface.php -------------------------------------------------------------------------------- /src/Infrastructure/Model/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/Model/Token.php -------------------------------------------------------------------------------- /src/Infrastructure/ModuleSetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/ModuleSetup.php -------------------------------------------------------------------------------- /src/Infrastructure/RefreshTokenRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/RefreshTokenRepository.php -------------------------------------------------------------------------------- /src/Infrastructure/RefreshTokenRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/RefreshTokenRepositoryInterface.php -------------------------------------------------------------------------------- /src/Infrastructure/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/Repository.php -------------------------------------------------------------------------------- /src/Infrastructure/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/Token.php -------------------------------------------------------------------------------- /src/Infrastructure/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Infrastructure/services.yaml -------------------------------------------------------------------------------- /src/Service/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/Authentication.php -------------------------------------------------------------------------------- /src/Service/Authorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/Authorization.php -------------------------------------------------------------------------------- /src/Service/CookieService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/CookieService.php -------------------------------------------------------------------------------- /src/Service/CookieServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/CookieServiceInterface.php -------------------------------------------------------------------------------- /src/Service/FingerprintService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/FingerprintService.php -------------------------------------------------------------------------------- /src/Service/FingerprintServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/FingerprintServiceInterface.php -------------------------------------------------------------------------------- /src/Service/HeaderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/HeaderService.php -------------------------------------------------------------------------------- /src/Service/HeaderServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/HeaderServiceInterface.php -------------------------------------------------------------------------------- /src/Service/JwtConfigurationBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/JwtConfigurationBuilder.php -------------------------------------------------------------------------------- /src/Service/LoginService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/LoginService.php -------------------------------------------------------------------------------- /src/Service/LoginServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/LoginServiceInterface.php -------------------------------------------------------------------------------- /src/Service/ModuleConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/ModuleConfiguration.php -------------------------------------------------------------------------------- /src/Service/NamespaceMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/NamespaceMapper.php -------------------------------------------------------------------------------- /src/Service/PermissionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/PermissionProvider.php -------------------------------------------------------------------------------- /src/Service/RefreshTokenService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/RefreshTokenService.php -------------------------------------------------------------------------------- /src/Service/RefreshTokenServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/RefreshTokenServiceInterface.php -------------------------------------------------------------------------------- /src/Service/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/Token.php -------------------------------------------------------------------------------- /src/Service/TokenAdministration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/TokenAdministration.php -------------------------------------------------------------------------------- /src/Service/TokenValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/TokenValidator.php -------------------------------------------------------------------------------- /src/Service/UserModelService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/src/Service/UserModelService.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Acceptance.suite.yml -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/GraphQLCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Acceptance/GraphQLCest.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/LoginCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Acceptance/LoginCest.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/RefreshTokenCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Acceptance/RefreshTokenCest.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/TokenCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Acceptance/TokenCest.php -------------------------------------------------------------------------------- /tests/Codeception/Acceptance/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Acceptance/_bootstrap.php -------------------------------------------------------------------------------- /tests/Codeception/Config/CodeceptionParametersProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Config/CodeceptionParametersProvider.php -------------------------------------------------------------------------------- /tests/Codeception/Config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Config/params.php -------------------------------------------------------------------------------- /tests/Codeception/Module/AcceptanceHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Module/AcceptanceHelper.php -------------------------------------------------------------------------------- /tests/Codeception/Support/AcceptanceTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Support/AcceptanceTester.php -------------------------------------------------------------------------------- /tests/Codeception/Support/Data/dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Support/Data/dump.sql -------------------------------------------------------------------------------- /tests/Codeception/Support/Data/fixtures.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Codeception/Support/Helper/Acceptance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Codeception/Support/Helper/Acceptance.php -------------------------------------------------------------------------------- /tests/Codeception/Support/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/Codeception/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/Fixtures/dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Fixtures/dump.sql -------------------------------------------------------------------------------- /tests/Fixtures/upload_file.txt: -------------------------------------------------------------------------------- 1 | I am üploaded file content :) 2 | -------------------------------------------------------------------------------- /tests/Integration/EnterpriseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/EnterpriseTestCase.php -------------------------------------------------------------------------------- /tests/Integration/Framework/Controller/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Framework/Controller/TestController.php -------------------------------------------------------------------------------- /tests/Integration/Framework/DataType/TestFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Framework/DataType/TestFilter.php -------------------------------------------------------------------------------- /tests/Integration/Framework/DataType/TestFilterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Framework/DataType/TestFilterFactory.php -------------------------------------------------------------------------------- /tests/Integration/Framework/DataType/TestSorting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Framework/DataType/TestSorting.php -------------------------------------------------------------------------------- /tests/Integration/Framework/GraphQLQueryHandlerFileUploadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Framework/GraphQLQueryHandlerFileUploadTest.php -------------------------------------------------------------------------------- /tests/Integration/Framework/GraphQLQueryHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Framework/GraphQLQueryHandlerTest.php -------------------------------------------------------------------------------- /tests/Integration/Framework/Service/NamespaceMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Framework/Service/NamespaceMapper.php -------------------------------------------------------------------------------- /tests/Integration/Framework/Service/PermissionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Framework/Service/PermissionProvider.php -------------------------------------------------------------------------------- /tests/Integration/Framework/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Framework/services.yaml -------------------------------------------------------------------------------- /tests/Integration/Infrastructure/LegacyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Infrastructure/LegacyTest.php -------------------------------------------------------------------------------- /tests/Integration/Infrastructure/Model/RefreshTokenModelFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Infrastructure/Model/RefreshTokenModelFactoryTest.php -------------------------------------------------------------------------------- /tests/Integration/Infrastructure/RefreshTokenRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Infrastructure/RefreshTokenRepositoryTest.php -------------------------------------------------------------------------------- /tests/Integration/Infrastructure/RepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Infrastructure/RepositoryTest.php -------------------------------------------------------------------------------- /tests/Integration/Infrastructure/TokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/Infrastructure/TokenTest.php -------------------------------------------------------------------------------- /tests/Integration/MultishopTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/MultishopTestCase.php -------------------------------------------------------------------------------- /tests/Integration/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/TestCase.php -------------------------------------------------------------------------------- /tests/Integration/TokenTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Integration/TokenTestCase.php -------------------------------------------------------------------------------- /tests/PhpMd/phpmd.baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/PhpMd/phpmd.baseline.xml -------------------------------------------------------------------------------- /tests/PhpMd/standard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/PhpMd/standard.xml -------------------------------------------------------------------------------- /tests/PhpStan/phpstan-bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/PhpStan/phpstan-bootstrap.php -------------------------------------------------------------------------------- /tests/PhpStan/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/PhpStan/phpstan.neon -------------------------------------------------------------------------------- /tests/Unit/BaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/BaseTestCase.php -------------------------------------------------------------------------------- /tests/Unit/Controller/LoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Controller/LoginTest.php -------------------------------------------------------------------------------- /tests/Unit/Controller/TokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Controller/TokenTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/DataTypeTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/DataTypeTestCase.php -------------------------------------------------------------------------------- /tests/Unit/DataType/DateTimeImmutableFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/DateTimeImmutableFactoryTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/Filter/BoolFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/Filter/BoolFilterTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/Filter/DateFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/Filter/DateFilterTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/Filter/FloatFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/Filter/FloatFilterTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/Filter/IDFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/Filter/IDFilterTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/Filter/IntegerFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/Filter/IntegerFilterTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/Filter/StringFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/Filter/StringFilterTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/LoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/LoginTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/Pagination/PaginationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/Pagination/PaginationTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/RefreshTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/RefreshTokenTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/Sorting/SortingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/Sorting/SortingTest.php -------------------------------------------------------------------------------- /tests/Unit/DataType/TokenFilterListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/DataType/TokenFilterListTest.php -------------------------------------------------------------------------------- /tests/Unit/Event/BeforeAuthorizationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Event/BeforeAuthorizationTest.php -------------------------------------------------------------------------------- /tests/Unit/Event/BeforeTokenCreationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Event/BeforeTokenCreationTest.php -------------------------------------------------------------------------------- /tests/Unit/Event/Subscriber/BeforeTokenCreationSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Event/Subscriber/BeforeTokenCreationSubscriberTest.php -------------------------------------------------------------------------------- /tests/Unit/Event/Subscriber/PasswordChangeSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Event/Subscriber/PasswordChangeSubscriberTest.php -------------------------------------------------------------------------------- /tests/Unit/Exception/FileUploadExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Exception/FileUploadExceptionTest.php -------------------------------------------------------------------------------- /tests/Unit/Exception/FingerprintMissingExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Exception/FingerprintMissingExceptionTest.php -------------------------------------------------------------------------------- /tests/Unit/Exception/FingerprintValidationExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Exception/FingerprintValidationExceptionTest.php -------------------------------------------------------------------------------- /tests/Unit/Exception/InvalidArgumentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Exception/InvalidArgumentTest.php -------------------------------------------------------------------------------- /tests/Unit/Exception/InvalidRefreshTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Exception/InvalidRefreshTokenTest.php -------------------------------------------------------------------------------- /tests/Unit/Exception/InvalidTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Exception/InvalidTokenTest.php -------------------------------------------------------------------------------- /tests/Unit/Exception/NotFoundTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Exception/NotFoundTest.php -------------------------------------------------------------------------------- /tests/Unit/Exception/TokenUserBlockedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Exception/TokenUserBlockedTest.php -------------------------------------------------------------------------------- /tests/Unit/Exception/UnableToParseTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Exception/UnableToParseTokenTest.php -------------------------------------------------------------------------------- /tests/Unit/Exception/UnknownTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Exception/UnknownTokenTest.php -------------------------------------------------------------------------------- /tests/Unit/Framework/AggregatedFinderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Framework/AggregatedFinderTest.php -------------------------------------------------------------------------------- /tests/Unit/Framework/Constraint/BelongsToShopTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Framework/Constraint/BelongsToShopTest.php -------------------------------------------------------------------------------- /tests/Unit/Framework/RequestReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Framework/RequestReaderTest.php -------------------------------------------------------------------------------- /tests/Unit/Framework/TimerHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Framework/TimerHandlerTest.php -------------------------------------------------------------------------------- /tests/Unit/Framework/TimerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Framework/TimerTest.php -------------------------------------------------------------------------------- /tests/Unit/Framework/fixtures/example.txt: -------------------------------------------------------------------------------- 1 | some text in file 2 | -------------------------------------------------------------------------------- /tests/Unit/Framework/fixtures/simpleRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Framework/fixtures/simpleRequest.json -------------------------------------------------------------------------------- /tests/Unit/Service/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/AuthorizationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/AuthorizationTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/CookieServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/CookieServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/FingerprintServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/FingerprintServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/HeaderServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/HeaderServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/InvalidSignatureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/InvalidSignatureTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/LoginServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/LoginServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/ModuleConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/ModuleConfigurationTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/RefreshTokenServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/RefreshTokenServiceTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/TokenAdministrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/TokenAdministrationTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/TokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/TokenTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/TokenValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/TokenValidatorTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/UserModelServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/Unit/Service/UserModelServiceTest.php -------------------------------------------------------------------------------- /tests/codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/codeception.yml -------------------------------------------------------------------------------- /tests/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/phpcs.xml -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /views/admin_twig/de/module_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/views/admin_twig/de/module_options.php -------------------------------------------------------------------------------- /views/admin_twig/en/module_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OXID-eSales/graphql-base-module/HEAD/views/admin_twig/en/module_options.php --------------------------------------------------------------------------------