-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.15 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
{
"name": "eldarqa/bitaps-wallet-api",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eldar Gazaliev",
"email": "[email protected]",
"homepage": "https://t.me/iMyZik"
}
],
"description": "Bitaps PHP API",
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"symfony/http-client": "^5.2",
"jms/serializer": "^3.11"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.17"
},
"autoload": {
"psr-4": {
"Bitaps\\WalletAPI\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bitaps\\WalletAPI\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"coverage": "vendor/bin/phpunit --coverage-html build/coverage",
"cs-check": "vendor/bin/php-cs-fixer fix --allow-risky=yes --diff --ansi --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes --diff --ansi",
"checks": [
"@cs-check",
"@test"
]
}
}