-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
70 lines (70 loc) · 2.04 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
{
"name": "lloc/wp-nowpayments-integration",
"description": "Cryptocurrency Payment integration using the nowpayments.io Gateway",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/lloc/wp-nowpayments-integration",
"require": {
"php": "^8.1",
"ext-json": "*",
"composer/installers": "^2.3",
"monolog/monolog": "^3.8",
"php-di/php-di": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"brain/monkey": "^2.6",
"phpstan/phpstan": "^1.12",
"smeghead/php-class-diagram": "^1.4",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"szepeviktor/phpstan-wordpress": "^1.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.2",
"johnbillion/wp-compat": "^0.3.1",
"swissspidy/phpstan-no-private": "^0.2.1",
"phpstan/phpstan-mockery": "^1.1"
},
"autoload": {
"psr-4": {
"lloc\\Nowpayments\\": "includes/"
}
},
"autoload-dev": {
"psr-4": {
"lloc\\NowpaymentsTests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"coverage": "@php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-html reports/php/coverage",
"phpstan": "vendor/bin/phpstan analyze --memory-limit 2048M",
"diagram": "vendor/bin/php-class-diagram --php7 includes > plantuml_gist.puml",
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml",
"git-release": "bin/git-release.sh",
"build": "@git-release"
},
"authors": [
{
"name": "Dennis Ploetner",
"email": "re@lloc.de",
"homepage": "https://ploetner.io/"
}
],
"keywords": [
"payments",
"nowpayments",
"gateway",
"integration",
"cryptocurrency"
],
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}