-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
39 lines (39 loc) · 943 Bytes
/
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
{
"name": "iillexial/php-monobank-api",
"description": "PHP library for Monobank API",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Ivan Klymenchenko",
"email": "developer@iillexial.me"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"symfony/var-dumper": "^5.1",
"phpstan/phpstan": "^0.12",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"analyze": "vendor/bin/phpstan analyse src --level=5",
"fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"test": "vendor/bin/phpunit"
}
}