forked from pronamic/wp-pronamic-pay-give
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "wp-pay-extensions/give",
"description": "Give driver for the WordPress payment processing library.",
"keywords": ["wordpress", "wp", "pay", "give", "extension", "pronamic"],
"homepage": "http://www.wp-pay.org/extensions/give/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Pronamic",
"email": "[email protected]",
"homepage": "http://www.pronamic.eu/",
"role": "Company"
},
{
"name": "Remco Tolsma",
"email": "[email protected]",
"homepage": "http://www.remcotolsma.nl/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/wp-pay-extensions/give/issues",
"source": "https://github.com/wp-pay-extensions/give"
},
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\Pay\\Extensions\\Give\\": "src/"
}
},
"config": {
"sort-packages": true
},
"repositories": [
{
"type": "package",
"package": {
"name": "impress-org/givewp",
"version": "2.5.10",
"dist": {
"url": "https://github.com/impress-org/givewp/archive/2.5.10.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/impress-org/givewp",
"type": "github",
"reference": "tags/2.5.10"
},
"autoload": {
"classmap": [
"."
]
}
}
}
],
"require": {
"php": ">=5.6.20",
"wp-pay/core": "^2.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5",
"impress-org/givewp": "^2.5",
"php-coveralls/php-coveralls": "^2.1",
"phpcompatibility/php-compatibility": "^9.1",
"phpcompatibility/phpcompatibility-wp": "^2.0",
"phpmd/phpmd": "^2.7",
"phpunit/phpunit": "^5.7 || ^6.0",
"roots/wordpress": "^5.2",
"squizlabs/php_codesniffer": "^3.4",
"wp-coding-standards/wpcs": "^2.1",
"wp-phpunit/wp-phpunit": "^5.2"
},
"scripts": {
"coveralls": "vendor/bin/coveralls -v",
"phpcbf": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs -s -v",
"phplint": "find src tests -name '*.php' | xargs -n 1 -P 4 php -l",
"phpmd": "vendor/bin/phpmd src,tests text phpmd.ruleset.xml --suffixes php",
"phpunit": "vendor/bin/phpunit"
}
}