-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.05 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
{
"name": "grisaia/nova-poshta",
"description": "PHP library to communicate with Ukrainian delivery service Nova Poshta via API 2.0",
"type": "library",
"license": "MIT",
"authors": [{
"name": "l-you",
"email": "l-you@revotale.com",
"homepage": "https://revotale.com"
}],
"keywords": [
"Нова Пошта",
"nova poshta",
"2.0",
"poshta",
"nova",
"api"
],
"autoload": {
"psr-4": {
"Grisaia\\NovaPoshta\\": "src"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon",
"phpmd": "vendor/bin/phpmd ./src/ text phpmd.ruleset.xml",
"php-cs": "vendor/bin/php-cs-fixer fix",
"test": [
"@phpstan",
"@phpmd"
],
"fix": [
"@php-cs"
]
},
"prefer-stable": true,
"minimum-stability": "stable",
"require-dev": {
"friendsofphp/php-cs-fixer": ">=3.6",
"phpstan/phpstan": "^1.10",
"phpmd/phpmd" : "@stable"
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"grisaia/time": "^0.2.0"
}
}