-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
51 lines (51 loc) · 1.38 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
{
"name": "lenius/economic-php-client",
"type": "library",
"description": "PHP-SDK to communicate with E-Conomic",
"homepage": "https://github.com/lenius/economic-php-client",
"keywords": ["e-conomic", "economic", "rest"],
"license": "MIT",
"authors": [
{
"name": "Lenius",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Lenius\\Economic\\": "Economic/"
}
},
"autoload-dev": {
"psr-4": {
"Lenius\\Economic\\Tests\\": "Tests/api/"
}
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "^3.4",
"php-coveralls/php-coveralls": "^2.4",
"phpstan/phpstan": "^0.12.65",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"squizlabs/php_codesniffer": "3.*",
"vimeo/psalm": "^4.18"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit",
"stan": "vendor/bin/phpstan analyse",
"psalm": "vendor/bin/psalm --show-info=true",
"fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"minimum-stability": "dev",
"prefer-stable": true
}