This repository has been archived by the owner on Feb 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.7 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
{
"name": "wp-pay-extensions/membership",
"description": "✗ [DEPRECATED] Membership driver for the WordPress payment processing library.",
"keywords": ["wordpress", "wp", "pay", "membership", "extension", "pronamic", "deprecated"],
"homepage": "http://www.wp-pay.org/extensions/membership/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Pronamic",
"email": "info@pronamic.eu",
"homepage": "http://www.pronamic.eu/",
"role": "Company"
},
{
"name": "Remco Tolsma",
"email": "info@remcotolsma.nl",
"homepage": "http://www.remcotolsma.nl/",
"role": "Developer"
}
],
"support": {
"email": "support@wp-pay.org",
"issues": "https://github.com/wp-pay-extensions/membership/issues",
"source": "https://github.com/wp-pay-extensions/membership"
},
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\Pay\\Extensions\\Membership\\": "src/"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=5.6.20",
"wp-pay/core": "^2.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"php-coveralls/php-coveralls": "^2.1",
"phpcompatibility/php-compatibility": "^9.2",
"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"
}
}