-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.45 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
{
"name": "wp-pay/importer",
"description": "Imporer add-on for the WordPress payment processing library.",
"keywords": ["wordpress", "wp", "pay", "import", "migrate", "addon", "pronamic"],
"homepage": "http://www.wp-pay.org/addons/importer/",
"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/importer/issues",
"source": "https://github.com/wp-pay/importer"
},
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\Pay\\Importer\\": "src/"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=5.6.20"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"overtrue/phplint": "^1.2",
"php-coveralls/php-coveralls": "^2.4",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpmd/phpmd": "^2.8",
"phpunit/phpunit": "^5.7",
"pronamic/wp-money": "^1.2",
"roots/wordpress": "^5.6",
"sirbrillig/phpcs-import-detection": "^1.2",
"sirbrillig/phpcs-variable-analysis": "^2.8",
"squizlabs/php_codesniffer": "^3.5",
"wp-coding-standards/wpcs": "^2.3",
"wp-pay/core": "^2.6",
"wp-phpunit/wp-phpunit": "^5.6"
},
"scripts": {
"coveralls": "vendor/bin/php-coveralls -v",
"make-i18n-json": "wp i18n make-json languages/*.po --no-purge",
"make-pot": "wp pronamic i18n make-pot . languages/pronamic-pay-importer.pot --slug='pronamic-pay-importer'",
"update-po": "find languages/*.po -type f -exec msgmerge --update --backup=off {} languages/pronamic-pay-importer.pot \\;",
"phpcbf": "vendor/bin/phpcbf",
"phpcs": "XDEBUG_MODE=off vendor/bin/phpcs -s -v",
"phplint": "vendor/bin/phplint",
"phpmd": "vendor/bin/phpmd src,tests text phpmd.ruleset.xml --suffixes php",
"phpunit": "vendor/bin/phpunit --colors=always",
"phpstan": "vendor/bin/phpstan analyse",
"post-install-cmd": "echo 'Optionally run: composer bin all install'",
"post-update-cmd": "echo 'Optionally run: composer bin all update'",
"psalm": "vendor/bin/psalm",
"xmllint-phpcs": "xmllint --noout --schema vendor/squizlabs/php_codesniffer/phpcs.xsd phpcs.xml.dist",
"xmllint": [
"@xmllint-phpcs"
]
}
}