-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
132 lines (132 loc) · 3.65 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "wp-pay/core",
"description": "Core components for the WordPress payment processing library.",
"keywords": [
"wordpress",
"wp",
"pay",
"core",
"gateway",
"pronamic"
],
"homepage": "https://www.wp-pay.org/",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "Pronamic",
"email": "[email protected]",
"homepage": "https://www.pronamic.eu/",
"role": "Company"
},
{
"name": "Remco Tolsma",
"email": "[email protected]",
"homepage": "https://www.remcotolsma.nl/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/wp-pay/core/issues",
"source": "https://github.com/wp-pay/core"
},
"autoload": {
"psr-4": {
"Pronamic\\WordPress\\Pay\\": "src/"
},
"files": [
"includes/functions.php"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true,
"composer/installers": true,
"phpstan/extension-installer": true,
"automattic/jetpack-autoloader": true
},
"platform": {
"php": "8.2"
},
"wp-slug": "pronamic-pay-core"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "git",
"url": "https://github.com/wordpress/sqlite-database-integration.git"
}
],
"require": {
"php": ">=7.4",
"ext-dom": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"automattic/jetpack-autoloader": "^3.0",
"pronamic/wp-datetime": "^2.1",
"pronamic/wp-html": "^2.2",
"pronamic/wp-http": "^1.2",
"pronamic/wp-money": "^2.3",
"pronamic/wp-number": "^1.3",
"pronamic/wp-pay-logos": "^2.2",
"viison/address-splitter": "^0.3.4",
"woocommerce/action-scheduler": "^3.8"
},
"require-dev": {
"overtrue/phplint": "^9.4",
"php-coveralls/php-coveralls": "^2.4",
"php-stubs/wordpress-globals": "^0.2.0",
"php-stubs/wp-cli-stubs": "^2.4",
"phpmd/phpmd": "^2.9",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.11",
"pronamic/pronamic-cli": "^1.1",
"pronamic/wp-coding-standards": "^2.0",
"pronamic/wp-documentor": "^1.4",
"roots/wordpress": "^6.0",
"szepeviktor/phpstan-wordpress": "^1.3",
"vimeo/psalm": "^5.24",
"wordpress/sqlite-database-integration": "^2.1",
"wp-cli/wp-cli": "^2.3",
"wp-phpunit/wp-phpunit": "^6.1",
"yoast/phpunit-polyfills": "^2.0"
},
"scripts": {
"build": "vendor/bin/pronamic wp-build",
"ci": [
"@phplint",
"@phpcs",
"@coverage",
"@phpstan"
],
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover build/logs/clover.xml --coverage-text",
"coverage-clover": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
"coverage-html": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html build/coverage-html",
"coverage-text": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text",
"coveralls": "vendor/bin/php-coveralls -v",
"phpcbf": "XDEBUG_MODE=off 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",
"phpstan": "XDEBUG_MODE=off vendor/bin/phpstan analyse --memory-limit=-1",
"phpunit": "vendor/bin/phpunit --colors=always",
"psalm": "vendor/bin/psalm",
"release": [
"@build",
"vendor/bin/pronamic release-to-github"
],
"xmllint-phpcs": "xmllint --noout --schema vendor/squizlabs/php_codesniffer/phpcs.xsd phpcs.xml.dist",
"xmllint": [
"@xmllint-phpcs"
],
"build-docs": [
"XDEBUG_MODE=off vendor/bin/wp-documentor parse src --format=markdown --relative=docs > docs/hooks.md"
]
}
}