-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.55 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
{
"name": "develart-projects/pickup-points-api-client",
"description": "Pickup Points client library for Olza Logistic API",
"type": "library",
"license": "MIT",
"version": "1.4.0",
"keywords": ["Olza", "OlzaLogistic", "API client", "Olza API client", "DevelArt", "Pickup", "Pickup points"],
"authors": [
{
"name": "Marcin Orlowski",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"OlzaLogistic\\PpApi\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OlzaLogistic\\PpApi\\Client\\Tests\\": "tests/tests",
"OlzaLogistic\\PpApi\\Client\\Tests\\Traits\\": "tests/Traits/",
"OlzaLogistic\\PpApi\\Client\\Tests\\Util\\": "tests/Util/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.34",
"guzzlehttp/guzzle": "^7.4",
"symfony/http-client": "^5.4",
"nyholm/psr7": "^1.4",
"marcin-orlowski/phpunit-extra-asserts": "^2.0",
"phpstan/phpstan": "^1.4",
"phpunit/php-code-coverage": "^7.0.15"
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.xml -c phpunit.xml.dist",
"phpstan": "vendor/bin/phpstan analyze -c phpstan.neon.dist",
"lint": "@composer phpstan",
"mdlint": "markdownlint -c .markdownlint.yaml.dist docs *.md --ignore LICENSE.md"
}
}