forked from dadish/ProcessGraphQL
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.22 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
{
"name": "dadish/processgraphql",
"type": "processwire-plugin",
"license": "MIT",
"description": "GraphQL for ProcessWire",
"authors": [
{
"name": "Nurguly Ashyrov",
"email": "nurguly.ashyrov@gmail.com"
}
],
"require": {
"php": "^7.1",
"webonyx/graphql-php": "^14.0"
},
"require-dev": {
"processwire/processwire": "3.0.*",
"ryancramerdesign/fieldtypemapmarker": "1.0.0",
"dadish/graphqlfieldtypemapmarker": "2.0.0",
"phpunit/phpunit": "^7.5"
},
"repositories": [
{
"type": "package",
"package": {
"name": "ryancramerdesign/fieldtypemapmarker",
"version": "1.0.0",
"dist": {
"type": "zip",
"url": "https://github.com/ryancramerdesign/fieldtypemapmarker/archive/master.zip"
}
}
},
{
"type": "package",
"package": {
"name": "dadish/graphqlfieldtypemapmarker",
"version": "2.0.0",
"dist": {
"type": "zip",
"url": "https://github.com/dadish/graphqlfieldtypemapmarker/archive/master.zip"
}
}
}
],
"autoload": {
"psr-4": {
"ProcessWire\\GraphQL\\": "src/",
"ProcessWire\\GraphQL\\Test\\": "test/"
}
}
}