{"id":18929648,"url":"https://github.com/thecodingmachine/graphqlite-universal-service-provider","last_synced_at":"2026-02-02T01:03:10.614Z","repository":{"id":52414421,"uuid":"169109880","full_name":"thecodingmachine/graphqlite-universal-service-provider","owner":"thecodingmachine","description":"Cross-framework module for GraphQLite using container-interop/service-provider","archived":false,"fork":false,"pushed_at":"2021-04-29T21:11:55.000Z","size":25,"stargazers_count":2,"open_issues_count":4,"forks_count":1,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-11T18:59:48.077Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thecodingmachine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-02-04T16:31:48.000Z","updated_at":"2020-03-09T08:36:12.000Z","dependencies_parsed_at":"2022-08-24T14:51:14.680Z","dependency_job_id":null,"html_url":"https://github.com/thecodingmachine/graphqlite-universal-service-provider","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodingmachine%2Fgraphqlite-universal-service-provider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodingmachine%2Fgraphqlite-universal-service-provider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodingmachine%2Fgraphqlite-universal-service-provider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodingmachine%2Fgraphqlite-universal-service-provider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thecodingmachine","download_url":"https://codeload.github.com/thecodingmachine/graphqlite-universal-service-provider/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249097878,"owners_count":21212366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T11:34:11.048Z","updated_at":"2026-02-02T01:03:05.581Z","avatar_url":"https://github.com/thecodingmachine.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Latest Stable Version](https://poser.pugx.org/thecodingmachine/graphqlite-universal-service-provider/v/stable)](https://packagist.org/packages/thecodingmachine/graphqlite-universal-service-provider)\n[![Latest Unstable Version](https://poser.pugx.org/thecodingmachine/graphqlite-universal-service-provider/v/unstable)](https://packagist.org/packages/thecodingmachine/graphqlite-universal-service-provider)\n[![License](https://poser.pugx.org/thecodingmachine/graphqlite-universal-service-provider/license)](https://packagist.org/packages/thecodingmachine/graphqlite-universal-service-provider)\n[![Build Status](https://travis-ci.org/thecodingmachine/graphqlite-universal-service-provider.svg?branch=master)](https://travis-ci.org/thecodingmachine/graphqlite-universal-service-provider)\n[![Coverage Status](https://coveralls.io/repos/thecodingmachine/graphqlite-universal-service-provider/badge.svg?branch=master\u0026service=github)](https://coveralls.io/github/thecodingmachine/graphqlite-universal-service-provider?branch=master)\n\n# WORK IN PROGRESS\n\n# GraphQLite universal module\n\nThis package integrates GraphQLite in any [container-interop](https://github.com/container-interop/service-provider) compatible framework/container.\n\n## Installation\n\n```\ncomposer require thecodingmachine/graphqlite-universal-service-provider\n```\n\nOnce installed, you need to register the [`TheCodingMachine\\GraphQLiteServiceProvider`](src/GraphQLiteServiceProvider.php) into your container.\n\nIf your container supports [thecodingmachine/discovery](https://github.com/thecodingmachine/discovery) integration, you have nothing to do. Otherwise, refer to your framework or container's documentation to learn how to register *service providers*.\n\n## Introduction\n\nThis service provider is meant to **[fill purpose here]**.\n\n## Expected values / services\n\nThis *service provider* expects the following configuration / services to be available:\n\n| Name                        | Compulsory | Description                            |\n|-----------------------------|------------|----------------------------------------|\n| `graphqlite.namespace.controllers`       | *yes*       | An array containing the namespaces where GraphQL controllers are stored |\n| `graphqlite.namespace.types`       | *yes*       | An array containing the namespaces where GraphQL types are stored |\n| `Psr\\SimpleCache\\CacheInterface`              | *yes*      | A PSR-16 cache service |\n| `Doctrine\\Common\\Annotations\\Reader`              | *no*      | A Doctrine annotation reader |\n| `TheCodingMachine\\GraphQLite\\Security\\AuthenticationServiceInterface`              | *no*      | A service to plug authentication to GraphQLite. If not passed, the `FailAuthenticationService` is used instead. |\n| `TheCodingMachine\\GraphQLite\\Security\\AuthorizationServiceInterface`              | *no*      | A service to plug authorization to GraphQLite. If not passed, the `FailAuthorizationService` is used instead. |\n\n\n## Provided services\n\nThis *service provider* provides the following services:\n\n| Service name                | Description                          |\n|-----------------------------|--------------------------------------|\n| `service_name`              | Definition                           |\n\n## Extended services\n\nThis *service provider* extends those services:\n\n| Name                        | Compulsory | Description                            |\n|-----------------------------|------------|----------------------------------------|\n| `service_name`              | *yes*      | Definition                             |\n\n\n\u003csmall\u003eProject template courtesy of \u003ca href=\"https://github.com/thecodingmachine/service-provider-template\"\u003ethecodingmachine/service-provider-template\u003c/a\u003e\u003c/small\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecodingmachine%2Fgraphqlite-universal-service-provider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthecodingmachine%2Fgraphqlite-universal-service-provider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecodingmachine%2Fgraphqlite-universal-service-provider/lists"}