-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.69 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
{
"name": "goodwp/goodenberg",
"description": "Goodenberg is a library of components, helpers and examples for building modern WordPress sites and applications with\nthe block editor and all other features introduced with Gutenberg.",
"keywords": [
"wordpress",
"gutenberg",
"blocks",
"wp"
],
"homepage": "https://github.com/goodwp/goodenberg",
"authors": [
{
"name": "Fabian Todt",
"homepage": "https://goodwp.io",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/goodwp/goodenberg/issues"
},
"type": "library",
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"GoodWP\\Goodenberg\\": "lib/"
}
},
"require-dev": {
"roots/wordpress-no-content": "^6.4",
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "*",
"squizlabs/php_codesniffer": "^3.0",
"automattic/vipwpcs": "^3.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml",
"phpcs:fix": "phpcbf --standard=phpcs.xml"
},
"archive": {
"exclude": [
".github",
"dist",
"docs",
"examples",
"node_modules",
"src",
".babelrc.js",
".eslintignore",
".eslintrc",
".gitignore",
".nvmrc",
".prettierrc.js",
".wp-env.json",
"package.json",
"package-lock.json",
"phpcs.xml"
]
},
"dist": {
"type": "zip",
"url": "https://github.com/goodwp/goodenberg/releases/download/%prettyVersion%/goodwp-goodenberg-%prettyVersion%.zip"
}
}