-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
66 lines (64 loc) · 1.53 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "coil/coil-web-monetization",
"description": "Coil offers an effortless way to share WordPress content online, and get paid for it.",
"homepage": "https://coil.com",
"keywords": [
"coil",
"content",
"monetization",
"payment",
"interledger",
"earn-money"
],
"authors": [
{
"name": "Coil",
"homepage": "https://coil.com"
}
],
"support": {
"forum": "https://wordpress.org/support/plugin/coil-web-monetization"
},
"type": "wordpress-plugin",
"license": "Apache-2.0",
"config": {
"preferred-install": "dist",
"sort-packages": true,
"autoloader-suffix": "coil",
"process-timeout": 600,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cghooks": "vendor/bin/cghooks",
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update",
"phpcs": [
"vendor/bin/phpcs -ps --colors --report-width=80 --cache=tests/phpunit/cache/phpcs.json --ignore=assets/,src/,templates/ ."
]
},
"extra": {
"hooks": {
"pre-push": [
"composer run phpcs",
"npx grunt test"
]
}
},
"require": {
"php": ">=7.2",
"composer/installers": "^1.7"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.8",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"fig-r/psr2r-sniffer": "^0.6.2",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^7.0",
"wp-coding-standards/wpcs": "^2.1",
"wp-phpunit/wp-phpunit": "5.2.4",
"yoast/phpunit-polyfills": "^1.0"
}
}