We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b90dcd commit a227f4bCopy full SHA for a227f4b
composer.json
@@ -0,0 +1,32 @@
1
+{
2
+ "name": "joonlabs/php-graphql",
3
+ "type": "library",
4
+ "description": "A PHP implementation of the GraphQL specifications",
5
+ "homepage": "https://github.com/joonlabs/php-graphql",
6
+ "license": "MIT",
7
+ "authors": [
8
+ {
9
+ "name": "joon",
10
+ "email": "info@joonlabs.com"
11
+ }
12
+ ],
13
+ "keywords": [
14
+ "graphql",
15
+ "API"
16
17
+ "minimum-stability": "stable",
18
+ "require-dev": {
19
+ "phpunit/phpunit": "9.5.4",
20
+ "phpbench/phpbench": "1.0.1"
21
+ },
22
+ "autoload": {
23
+ "psr-4": {
24
+ "GraphQL\\": "src/",
25
+ "GraphQL\\Tests\\": "tests/"
26
27
28
+ "scripts": {
29
+ "bench": "phpbench run",
30
+ "test": "phpunit tests"
31
32
+}
0 commit comments