forked from WebDevStudios/wds-headless-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer-public.json
61 lines (61 loc) · 2.28 KB
/
composer-public.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
{
"name": "webdevstudios/nextjs",
"description": "A WordPress backend to power a Next.js frontend.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "WebDevStudios",
"email": "contact@webdevstudios.com"
}
],
"repositories": {
"wppackagist": {
"type": "composer",
"url": "https://wpackagist.org/"
},
"wp-graphql-tax-query": {
"type": "git",
"url": "https://github.com/wp-graphql/wp-graphql-tax-query/"
}
},
"extra": {
"installer-paths": {
"plugins/{$name}/": ["type:wordpress-plugin"],
"mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"themes/{$name}/": ["type:wordpress-theme"]
}
},
"require": {
"dre1080/wp-graphql-upload": "^0.1",
"pristas-peter/wp-graphql-gutenberg": "^0.3",
"wp-graphql/wp-graphql-acf": "^0.4",
"wp-graphql/wp-graphql-jwt-authentication": "^0.4",
"wp-graphql/wp-graphql-tax-query": "^0.1.0",
"wpackagist-plugin/add-wpgraphql-seo": "^4.13",
"wpackagist-plugin/advanced-custom-fields": "^5.9",
"wpackagist-plugin/block-manager": "^1.1",
"wpackagist-plugin/custom-post-type-ui": "^1.9",
"wpackagist-plugin/gutenberg": "^10.4",
"wpackagist-plugin/lazy-blocks": "^2.3",
"wpackagist-plugin/wordpress-seo": "^15.0",
"wpackagist-plugin/wp-graphql": "^1.3",
"wpackagist-plugin/wp-search-with-algolia": "^1.7"
},
"require-dev": {
"webdevstudios/php-coding-standards": "^1.3",
"phpcompatibility/php-compatibility": "^9.3"
},
"scripts": {
"lint": ["@composer run compat", "@composer run lint:php"],
"format": "@php ./vendor/bin/phpcbf -p -v ./themes/wds_headless --standard=.phpcs.xml.dist --extensions=php --report-summary --report-source --ignore='*/node_modules/*,*/vendor/*,*/dist/*'",
"lint:php": "@php ./vendor/bin/phpcs -p -s -n ./themes/wds_headless --standard=.phpcs.xml.dist --extensions=php -n --colors --ignore='*/node_modules/*,*/vendor/*,*/dist/*'",
"compat": "@php ./vendor/bin/phpcs -p ./themes/wds_headless --standard=PHPCompatibility --extensions=php --runtime-set testVersion 7.4 --ignore='.github/*,vendor/*' --warning-severity=8 -d memory_limit=4096M || true || exit",
"debug:phpcs": "which phpcs && phpcs -i"
},
"config": {
"platform": {
"php": "7.4"
}
}
}