-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.04 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-double-the-donation",
"description": "Easily integrate with the Double-the-Donation employer matching platform.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^5",
"yoast/phpunit-polyfills": "^1.1.0"
},
"scripts": {
"post-install-cmd": [
"@install-codestandards"
],
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"test": "./vendor/bin/phpunit --colors --stop-on-failure"
},
"autoload": {
"psr-4": {
"GiveDoubleTheDonation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GiveDoubleTheDonation\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.2"
}
}
}