-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.02 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
{
"name": "mittwald/api-client",
"description": "Client library for the mittwald mStudio v2 API",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Mittwald\\ApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mittwald\\ApiClient\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Martin Helmich",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.8",
"justinrainbow/json-schema": "^5.2",
"caseyamcl/guzzle_retry_middleware": "^2.9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.68",
"rector/rector": "^2.0.7",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^2.1.1"
},
"scripts": {
"check": "phpstan analyze src --memory-limit=512M",
"format-rector": "rector --no-diffs",
"format-csfixer": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --allow-risky=yes",
"format": [
"@format-rector",
"@format-csfixer"
],
"test": "phpunit --testdox"
}
}