-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (53 loc) · 1.16 KB
/
composer.json
File metadata and controls
55 lines (53 loc) · 1.16 KB
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
{
"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",
"RevoTale\\NovaPoshta\\Tests\\": "./tests"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon",
"rector:fix": "vendor/bin/rector process",
"rector:test": "vendor/bin/rector process --dry-run",
"phpunit": "vendor/bin/phpunit",
"test": [
"@phpstan",
"@phpmd",
"@phpunit"
],
"fix": [
"@rector:fix"
]
},
"prefer-stable": true,
"minimum-stability": "stable",
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^13.0",
"rector/rector": "^2.0"
},
"require": {
"php": "^8.4",
"ext-curl": "*",
"ext-json": "*",
"grisaia/time": "^0.2.0",
"psr/log":"^3.0"
}
}