-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
42 lines (42 loc) · 999 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"description": "Base package to create GraphQL endpoints with Flow",
"type": "neos-package",
"name": "wwwision/graphql",
"license": "MIT",
"authors": [
{
"name": "bwaidelich",
"email": "[email protected]"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/bwaidelich"
},
{
"type": "paypal",
"url": "https://www.paypal.me/bwaidelich"
}
],
"require": {
"php": ">=8.1",
"neos/flow": "^7.3 || ^8.0",
"wwwision/types-graphql": "^1.2",
"webonyx/graphql-php": "^15",
"psr/http-message": "^1 || ^2"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Wwwision\\GraphQL\\": "Classes"
}
},
"extra": {
"neos": {
"package-key": "Wwwision.GraphQL"
}
}
}