-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.46 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.46 KB
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
52
53
54
55
{
"name": "hi-folks/blokctl",
"description": "An opinionated, unofficial CLI tool for managing Storyblok spaces",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.3",
"storyblok/php-management-api-client": "^1.4.0",
"vlucas/phpdotenv": "^5.6",
"laravel/prompts": "^0.3.7",
"nunomaduro/termwind": "^2.3",
"symfony/console": "^8.0",
"storyblok/php-content-api-client": "^1.16"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"rector/rector": "^2",
"friendsofphp/php-cs-fixer": "^3.65",
"phpunit/phpunit": "^13.0"
},
"autoload": {
"psr-4": {
"Blokctl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": [
"bin/blokctl"
],
"scripts": {
"static-code": "vendor/bin/phpstan analyse",
"style-fix-code": "vendor/bin/php-cs-fixer fix",
"style-check-code": "vendor/bin/php-cs-fixer check",
"test-code": "vendor/bin/phpunit",
"test-code-ci": "vendor/bin/phpunit --cache-directory ./tmp",
"refactor-check-code": "vendor/bin/rector --dry-run",
"test-coverage": "vendor/bin/phpunit --coverage-html .build/html",
"lint-code": "find src tests -type f -name '*.php' -print0 | xargs -0 -P 4 -n1 php -l",
"all-checks": [
"@lint-code",
"@style-check-code",
"@static-code",
"@refactor-check-code",
"@test-code"
]
},
"config": {
"allow-plugins": {}
}
}