-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
92 lines (92 loc) · 2.45 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"version": "1.1.3",
"name": "zngly/wp-graphql-acf-mutations",
"description": "ACF Mutations for WP GraphQL",
"homepage": "https://github.com/zngly/wp-graphql-acf-mutations",
"keywords": [
"zngly",
"wpgraphql",
"package",
"acf",
"mutations",
"graphql"
],
"license": "GPL-3.0+",
"authors": [
{
"name": "Vlad Medves",
"email": "[email protected]"
}
],
"type": "wordpress-plugin",
"require": {
"php": "^7.0 || ^8.0"
},
"support": {
"source": "https://github.com/zngly/wp-graphql-acf-mutations",
"issues": "https://github.com/zngly/wp-graphql-acf-mutations/issues"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"extra": {
"wordpress-install-dir": "./wordpress",
"installer-paths": {
"wordpress/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"wordpress/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
},
"config": {
"vendor-dir": "./wordpress/vendor"
},
"require-dev": {
"johnpbloch/wordpress": ">=6.0",
"wp-graphql/wp-graphql": "^1.8",
"wp-graphql/wp-graphql-acf": "^0.5.3",
"wordpress-plugin/advanced-custom-fields-pro": "^5.9",
"wp-graphql/wp-graphql-jwt-authentication": "^0.4.1",
"wpackagist-theme/twentytwentytwo": "*",
"spatie/file-system-watcher": "^1.1",
"phpunit/phpunit": "^9",
"vlucas/phpdotenv": "^5.4",
"guzzlehttp/guzzle": "^7.4"
},
"autoload-dev": {
"classmap": [
"src/",
"scripts/",
"dev/",
"tests/"
]
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"install:prod": "composer install --no-dev",
"install:dev": [
"Zngly\\ACFM\\Scripts\\Install::run"
],
"watch": [
"Zngly\\ACFM\\Scripts\\Watcher::run"
],
"test": "./wordpress/vendor/bin/phpunit --bootstrap ./wordpress/vendor/autoload.php tests --verbose"
}
}