-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcomposer.json
42 lines (42 loc) · 1.26 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
{
"name": "mattyza/starter-plugin",
"description": "A starter WordPress plugin, ready for your next project.",
"keywords": [
"wordpress"
],
"type": "wordpress-plugin",
"homepage": "https://github.com/mattyza/starter-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Matt Cohen",
"homepage": "https://matty.blog/"
}
],
"support": {
"issues": "https://github.com/mattyza/starter-plugin/issues",
"source": "https://github.com/mattyza/starter-plugin/"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"object-calisthenics/phpcs-calisthenics-rules": "*",
"phpcompatibility/php-compatibility": "*",
"wp-coding-standards/wpcs": "*",
"phpunit/phpunit": "^8",
"yoast/phpunit-polyfills": "^2.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"scripts": {
"install-codestandards": [
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"post-install-cmd": [
"@install-codestandards"
]
}
}