-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
59 lines (59 loc) · 1.42 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
50
51
52
53
54
55
56
57
58
59
{
"name": "awd-studio/novaposhta",
"license": "MIT",
"authors": [
{
"name": "Anton Karpov",
"email": "[email protected]",
"role": "Developer"
}
],
"description": "Powerful & Simple NovaPoshta API SDK for PHP",
"keywords": [
"branch-offices",
"delivery",
"delivery-api",
"nova",
"nova-poshta-api",
"novaposhta",
"novaposhta-api",
"php-sdk",
"poshta",
"post",
"postservices",
"sdk",
"ukraine",
"wrapper-api"
],
"homepage": "https://github.com/awd-studio/NovaPoshta",
"support": {
"issues": "https://github.com/awd-studio/NovaPoshta/issues",
"source": "https://github.com/awd-studio/NovaPoshta"
},
"minimum-stability": "dev",
"type": "library",
"require": {
"php": "^7.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^6",
"php-coveralls/php-coveralls": "^2.0@dev"
},
"autoload": {
"psr-4": {
"NP\\": "src/NP"
}
},
"autoload-dev": {
"psr-4": {
"NP\\Test\\": "tests/NP",
"NP\\Mock\\": "tests/Mock"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit -c ./phpunit.xml.dist",
"coveralls": "php vendor/bin/coveralls -v"
}
}