forked from dadish/ProcessGraphQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.76 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "dadish/processgraphql",
"type": "processwire-plugin",
"license": "MIT",
"description": "GraphQL for ProcessWire",
"authors": [
{
"name": "Nurguly Ashyrov",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4||^8.0",
"webonyx/graphql-php": "^15.6.2"
},
"require-dev": {
"processwire/processwire": "dev-dev",
"processwire/site-default": "1.0.0",
"ryancramerdesign/fieldtypemapmarker": "2.0.9",
"dadish/graphqlfieldtypemapmarker": "2.0.0",
"phpunit/phpunit": "10.1"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/processwire/processwire"
},
{
"type": "package",
"package": {
"name": "processwire/site-default",
"version": "1.0.0",
"dist": {
"type": "zip",
"url": "https://github.com/processwire/site-default/archive/9e2b5e3e38f2392b6c3065680d1f47bad1f46171.zip"
}
}
},
{
"type": "package",
"package": {
"name": "ryancramerdesign/fieldtypemapmarker",
"version": "2.0.9",
"dist": {
"type": "zip",
"url": "https://github.com/ryancramerdesign/fieldtypemapmarker/archive/917edef8efe92bf8bdbdff62b66f6eca581ca57e.zip"
}
}
},
{
"type": "package",
"package": {
"name": "dadish/graphqlfieldtypemapmarker",
"version": "2.0.0",
"dist": {
"type": "zip",
"url": "https://github.com/dadish/GraphQLFieldtypeMapMarker/archive/9bdf8aa9dadddf3aa63bb9982f971cda1d515e22.zip"
}
}
}
],
"autoload": {
"psr-4": {
"ProcessWire\\GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProcessWire\\GraphQL\\Test\\": "test/"
}
}
}