├── .github ├── dependabot.yaml └── workflows │ ├── stale.yml │ └── test.yaml ├── .gitignore ├── README.md ├── composer.json ├── config-template ├── packages │ └── graphqlite.yaml └── routes │ └── graphqlite.yaml ├── phpstan.neon ├── phpunit.xml.dist ├── src ├── Command │ └── DumpSchemaCommand.php ├── Context │ ├── SymfonyGraphQLContext.php │ └── SymfonyRequestContextInterface.php ├── Controller │ ├── GraphQL │ │ ├── InvalidUserPasswordException.php │ │ ├── LoginController.php │ │ └── MeController.php │ └── GraphQLiteController.php ├── DependencyInjection │ ├── Configuration.php │ ├── GraphQLiteCompilerPass.php │ ├── GraphQLiteExtension.php │ └── OverblogGraphiQLEndpointWiringPass.php ├── Exceptions │ └── JsonException.php ├── GraphQLiteBundle.php ├── GraphiQL │ └── EndpointResolver.php ├── Mappers │ ├── RequestParameter.php │ └── RequestParameterMiddleware.php ├── Resources │ └── config │ │ ├── container │ │ └── graphqlite.php │ │ ├── routes.php │ │ └── routes.xml ├── Security │ ├── AuthenticationService.php │ └── AuthorizationService.php ├── Server │ └── ServerConfig.php └── Types │ └── SymfonyUserInterfaceType.php └── tests ├── Command └── DumpSchemaCommandTest.php ├── Fixtures ├── Controller │ ├── MyException.php │ ├── TestGraphqlController.php │ └── TestPhp8GraphqlController.php ├── Entities │ ├── Book.php │ ├── Contact.php │ └── Product.php ├── Types │ ├── ContactType.php │ ├── CustomBookType.php │ ├── ProductFactory.php │ └── ProductType.php └── config │ └── services.yaml ├── FunctionalTest.php ├── GraphQLiteTestingKernel.php ├── NoSecurityBundleFixtures └── Controller │ └── EchoController.php └── NoSecurityBundleTest.php /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /config-template/packages/graphqlite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/config-template/packages/graphqlite.yaml -------------------------------------------------------------------------------- /config-template/routes/graphqlite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/config-template/routes/graphqlite.yaml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Command/DumpSchemaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Command/DumpSchemaCommand.php -------------------------------------------------------------------------------- /src/Context/SymfonyGraphQLContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Context/SymfonyGraphQLContext.php -------------------------------------------------------------------------------- /src/Context/SymfonyRequestContextInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Context/SymfonyRequestContextInterface.php -------------------------------------------------------------------------------- /src/Controller/GraphQL/InvalidUserPasswordException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Controller/GraphQL/InvalidUserPasswordException.php -------------------------------------------------------------------------------- /src/Controller/GraphQL/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Controller/GraphQL/LoginController.php -------------------------------------------------------------------------------- /src/Controller/GraphQL/MeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Controller/GraphQL/MeController.php -------------------------------------------------------------------------------- /src/Controller/GraphQLiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Controller/GraphQLiteController.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/GraphQLiteCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/DependencyInjection/GraphQLiteCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/GraphQLiteExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/DependencyInjection/GraphQLiteExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/OverblogGraphiQLEndpointWiringPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/DependencyInjection/OverblogGraphiQLEndpointWiringPass.php -------------------------------------------------------------------------------- /src/Exceptions/JsonException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Exceptions/JsonException.php -------------------------------------------------------------------------------- /src/GraphQLiteBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/GraphQLiteBundle.php -------------------------------------------------------------------------------- /src/GraphiQL/EndpointResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/GraphiQL/EndpointResolver.php -------------------------------------------------------------------------------- /src/Mappers/RequestParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Mappers/RequestParameter.php -------------------------------------------------------------------------------- /src/Mappers/RequestParameterMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Mappers/RequestParameterMiddleware.php -------------------------------------------------------------------------------- /src/Resources/config/container/graphqlite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Resources/config/container/graphqlite.php -------------------------------------------------------------------------------- /src/Resources/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Resources/config/routes.php -------------------------------------------------------------------------------- /src/Resources/config/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Resources/config/routes.xml -------------------------------------------------------------------------------- /src/Security/AuthenticationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Security/AuthenticationService.php -------------------------------------------------------------------------------- /src/Security/AuthorizationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Security/AuthorizationService.php -------------------------------------------------------------------------------- /src/Server/ServerConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Server/ServerConfig.php -------------------------------------------------------------------------------- /src/Types/SymfonyUserInterfaceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/src/Types/SymfonyUserInterfaceType.php -------------------------------------------------------------------------------- /tests/Command/DumpSchemaCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Command/DumpSchemaCommandTest.php -------------------------------------------------------------------------------- /tests/Fixtures/Controller/MyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/Controller/MyException.php -------------------------------------------------------------------------------- /tests/Fixtures/Controller/TestGraphqlController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/Controller/TestGraphqlController.php -------------------------------------------------------------------------------- /tests/Fixtures/Controller/TestPhp8GraphqlController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/Controller/TestPhp8GraphqlController.php -------------------------------------------------------------------------------- /tests/Fixtures/Entities/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/Entities/Book.php -------------------------------------------------------------------------------- /tests/Fixtures/Entities/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/Entities/Contact.php -------------------------------------------------------------------------------- /tests/Fixtures/Entities/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/Entities/Product.php -------------------------------------------------------------------------------- /tests/Fixtures/Types/ContactType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/Types/ContactType.php -------------------------------------------------------------------------------- /tests/Fixtures/Types/CustomBookType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/Types/CustomBookType.php -------------------------------------------------------------------------------- /tests/Fixtures/Types/ProductFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/Types/ProductFactory.php -------------------------------------------------------------------------------- /tests/Fixtures/Types/ProductType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/Types/ProductType.php -------------------------------------------------------------------------------- /tests/Fixtures/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/Fixtures/config/services.yaml -------------------------------------------------------------------------------- /tests/FunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/FunctionalTest.php -------------------------------------------------------------------------------- /tests/GraphQLiteTestingKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/GraphQLiteTestingKernel.php -------------------------------------------------------------------------------- /tests/NoSecurityBundleFixtures/Controller/EchoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/NoSecurityBundleFixtures/Controller/EchoController.php -------------------------------------------------------------------------------- /tests/NoSecurityBundleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/graphqlite-bundle/HEAD/tests/NoSecurityBundleTest.php --------------------------------------------------------------------------------