-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
64 lines (64 loc) · 1.35 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "getkirby/cli",
"description": "Kirby command line interface",
"license": "MIT",
"version": "1.6.0",
"keywords": [
"kirby",
"cms",
"cli",
"command"
],
"authors": [
{
"name": "Kirby Team",
"email": "[email protected]",
"homepage": "https://getkirby.com"
}
],
"homepage": "https://getkirby.com",
"support": {
"email": "[email protected]",
"issues": "https://github.com/getkirby/cli/issues",
"forum": "https://forum.getkirby.com",
"source": "https://github.com/getkirby/cli"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-zip": "*",
"composer-runtime-api": "^2.2",
"guzzlehttp/guzzle": "^7.9.2",
"league/climate": "^3.10.0"
},
"autoload": {
"psr-4": {
"Kirby\\": [
"src/",
"tests/"
]
}
},
"bin": [
"bin/kirby"
],
"config": {
"optimize-autoloader": true
},
"scripts": {
"analyze": [
"@analyze:composer",
"@analyze:phpcpd",
"@analyze:phpmd"
],
"analyze:composer": "composer validate --strict --no-check-version --no-check-all",
"analyze:phpcpd": "phpcpd --fuzzy --exclude tests --exclude vendor .",
"analyze:phpmd": "phpmd . ansi phpmd.xml.dist --exclude 'tests/*,vendor/*,_templates/*'",
"analyze:psalm": "psalm",
"ci": [
"@fix",
"@test"
],
"fix": "php-cs-fixer fix",
"test": "phpunit --stderr --coverage-html=tests/coverage"
}
}