-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.73 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
{
"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": ">=7.4",
"composer/installers": "~1.9.0",
"ext-json": "*",
"monolog/monolog": "^2.8"
},
"require-dev": {
"phpunit/phpunit": ">=7",
"brain/monkey": "2.*",
"phpstan/phpstan": "^1.8",
"szepeviktor/phpstan-wordpress": "^1.1",
"phpstan/extension-installer": "^1.1",
"smeghead/php-class-diagram": "^0.0.7",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"autoload": {
"psr-4": {
"lloc\\Nowpayments\\": "includes/"
}
},
"autoload-dev": {
"psr-4": {
"lloc\\NowpaymentsTests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-html ./reports/php/coverage",
"analyze": "vendor/bin/phpstan analyze",
"diagram": "vendor/bin/php-class-diagram --php7 includes > plantuml_gist.puml",
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml.dist"
},
"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
}
},
"version": "1.0.0"
}