-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
54 lines (54 loc) · 1.34 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
{
"name": "greenpeace/planet4-master-theme",
"description": "Master theme for the Planet 4 Wordpress project",
"type":"wordpress-theme",
"authors": [
{
"name": "Greenpeace International",
"email": "planet4-group@greenpeace.org"
}
],
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://packagist.org"
}
],
"support": {
"issues": "https://github.com/greenpeace/planet4-master-theme/issues",
"wiki": "https://github.com/greenpeace/planet4-master-theme/wiki",
"source": "https://github.com/greenpeace/planet4-master-theme"
},
"autoload": {
"psr-4": {
"P4\\MasterTheme\\": "src/"
}
},
"require": {
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^2.3.0",
"slevomat/coding-standard": "~8.8",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"laminas/laminas-dom": "^2.12",
"phpunit/phpunit": "^7.5||^9.5",
"yoast/phpunit-polyfills": "^1.1.0",
"timber/timber": "1.24.0"
},
"scripts": {
"fixes": "vendor/bin/phpcbf",
"sniffs": "vendor/bin/phpcs"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}