-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.3 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
{
"name": "greenpeace/planet4-gpnl-plugin-gutenberg-blocks",
"description": "This repository contains the WordPress plugin that provides the gutenberg blocks for Planet4 project",
"type": "wordpress-plugin",
"license": "GPL-3.0+",
"authors": [
{
"name": "Greenpeace Netherlands",
"email": "[email protected]"
},
{
"name": "Oscar Keur",
"email": "[email protected]"
},
{
"name": "Dirk Faber",
"email": "[email protected]"
}
],
"require-dev": {
"squizlabs/php_codesniffer": "^3.5.8",
"wp-coding-standards/wpcs": "^2.3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^v0.7.1",
"stevegrunwell/phpunit-markup-assertions": "^1.2",
"phpunit/phpunit": "^9.3.6",
"phpmd/phpmd": "^2.9.1"
},
"require": {},
"scripts": {
"fixes": "vendor/bin/phpcbf --standard=Wordpress-Core --exclude=Generic.Arrays.DisallowShortArraySyntax --ignore=vendor/,node_modules/,.asset.php --extensions=php ./",
"sniffs": "vendor/bin/phpcs --standard=Wordpress-Core --exclude=Generic.Arrays.DisallowShortArraySyntax --ignore=vendor/,node_modules/,.asset.php --extensions=php ./"
},
"autoload": {
"psr-4": {
"GPNL\\Plugin\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}