-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
46 lines (46 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
{
"name": "impress-org/addon-id",
"description": "ADDON_DESCRIPTION",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {},
"require-dev": {
"kjohnson/since-unreleased": "^1.0.0",
"phpunit/phpunit": "^5",
"yoast/phpunit-polyfills": "^1.1.0",
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0"
},
"scripts": {
"test": "./vendor/bin/phpunit --colors --stop-on-failure",
"lint:php": "./vendor/bin/phpcs -v -s --colors",
"lint:php:fix": "./vendor/bin/phpcbf -v --colors",
"post-install-cmd": [
"@install-codestandards"
],
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
]
},
"autoload": {
"psr-4": {
"GiveAddon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GiveAddon\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.0"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}