-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
38 lines (38 loc) · 1.14 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
{
"name": "btcpayserver/btcpayserver-greenfield-php",
"description": "BTCPay Server Greenfield API PHP client library.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Wouter Samaey",
"email": "[email protected]"
},
{
"name": "Andreas Tasch",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-bcmath": "*"
},
"autoload": {
"psr-4": {"BTCPayServer\\": "src/"}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^4.8",
"phpunit/phpunit": "^9.5",
"vlucas/phpdotenv": "^5.5"
},
"scripts": {
"cs-check": [ "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes --using-cache=no --verbose --dry-run" ],
"cs-fix": [ "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes --using-cache=no" ],
"psalm": [ "vendor/bin/psalm" ]
}
}