Skip to content

Commit a227f4b

Browse files
committed
add composer.json to php-graphql
1 parent 0b90dcd commit a227f4b

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

composer.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)