-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 987 Bytes
/
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
{
"name": "apicart/php-utils",
"description": "This package provide a small set of useful PHP utilities for simpler development.",
"keywords": ["apicart", "php", "utilities"],
"license": ["MIT"],
"authors": [
{ "name": "Apicart", "email": "[email protected]", "homepage": "https://apicart.net" }
],
"require": {
"php": "^7.1"
},
"require-dev": {
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"phpunit/phpunit": "^7.5|^8.0",
"symplify/easy-coding-standard": "^5.4"
},
"autoload": {
"psr-4": {
"Apicart\\Utils\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Apicart\\Utils\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"complete-check": [
"@phpunit",
"@check-cs",
"@phpstan"
],
"phpunit": "vendor/bin/phpunit --do-not-cache-result",
"check-cs": "vendor/bin/ecs check src tests",
"phpstan": "vendor/bin/phpstan analyse src tests --level max --configuration phpstan.neon"
}
}