-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
58 lines (58 loc) · 1.34 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": "bearname/nowpayments-api-php",
"description": "Nowpayments php api client with types",
"homepage": "https://github.com/bearname/nowpayments-api-php",
"keywords": [
"template",
"composer",
"package",
"skeleton",
"boilerplate",
"composer template",
"package template",
"composer package template"
],
"license": "MIT",
"authors": [
{
"name": "Bearname",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/bearname/nowpayments-api-php",
"docs": "https://github.com/bearname/nowpayments-api-php/blob/master/README.md",
"issues": "https://github.com/bearname/nowpayments-api-php/issues"
},
"type": "project",
"require": {
"php": "^7.4",
"symfony/http-client": "^4.4"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"squizlabs/php_codesniffer": "^3.0",
"phpmd/phpmd" : "^2.6",
"phpdocumentor/phpdocumentor" : "^2.0"
},
"autoload": {
"psr-4": {
"NowPaymentsIO\\": "src/"
}
},
"scripts": {
"test": [
"@php vendor/bin/phpunit"
],
"psr2check": [
"@php vendor/bin/phpcs --standard=PSR2 src/"
],
"psr2autofix": [
"@php vendor/bin/phpcbf --standard=PSR2 src/"
],
"docs": [
"@php vendor/bin/phpdoc -d \"src\" -t \"docs\""
]
}
}