-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.09 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
{
"name": "impress-org/give-convertkit",
"type": "wordpress-plugin",
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpunit/phpunit": "^5.7",
"kjohnson/since-unreleased": "^1.0"
},
"scripts": {
"post-install-cmd": [
"@install-codestandards"
],
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"test": "./vendor/bin/phpunit",
"unreleased": "./vendor/bin/since-unreleased.sh"
},
"autoload": {
"psr-4": {
"GiveConvertKit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GiveConvertKit\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}