-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1021 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
{
"name": "art4/wegliphant",
"description": "PHP client for weg.li API",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Artur Weigandt"
}
],
"autoload": {
"psr-4": {
"Art4\\Wegliphant\\": "src/"
}
},
"require": {
"php": "^8.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.51",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5 || ^11.0"
},
"config": {
"sort-packages": true
},
"scripts": {
"codestyle": "php-cs-fixer fix",
"coverage": "phpunit --coverage-html=\".phpunit.cache/code-coverage\"",
"phpstan": "phpstan analyze --memory-limit 512M --configuration .phpstan.neon",
"phpunit": "phpunit",
"test": [
"@phpstan",
"@phpunit",
"@codestyle --dry-run --diff"
]
}
}