-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.45 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
{
"name": "storyblok/php-management-api-client",
"description": "Storyblok PHP Client for Management API",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Storyblok\\ManagementApi\\": "src/"
}
},
"authors": [
{
"name": "Roberto Butti",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.3",
"symfony/http-client": "^7.0"
},
"require-dev": {
"phpstan/phpstan" : "^2.0",
"rector/rector": "^2",
"friendsofphp/php-cs-fixer": "^3.65",
"pestphp/pest": "^3.7"
},
"scripts": {
"static-code": "vendor/bin/phpstan analyse",
"style-fix-code": "export PHP_CS_FIXER_IGNORE_ENV=1; vendor/bin/php-cs-fixer fix",
"style-check-code": "export PHP_CS_FIXER_IGNORE_ENV=1; vendor/bin/php-cs-fixer check",
"test-code": "vendor/bin/pest",
"test-code-ci": "vendor/bin/pest -c . --ci --cache-directory ./tmp",
"refactor-check-code": "vendor/bin/rector --dry-run",
"test-coverage": "vendor/bin/pest --configuration=phpunit.xml.dist --coverage-html .build/html",
"all-checks": [
"@style-check-code",
"@static-code",
"@refactor-check-code",
"@test-code"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}