-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.76 KB
/
Copy pathcomposer.json
File metadata and controls
69 lines (69 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sympress/cli",
"description": "Standalone Symfony Console CLI for creating configured SymPress projects from starter templates.",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Brian Schaffner",
"email": "brian.schaeffner@sympress.de",
"role": "Developer"
}
],
"require": {
"php": "^8.5",
"ext-json": "*",
"symfony/console": "^8.0",
"symfony/filesystem": "^8.0",
"symfony/process": "^8.0"
},
"require-dev": {
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^3.13"
},
"autoload": {
"psr-4": {
"SymPress\\Cli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SymPress\\Cli\\Tests\\": "tests/"
}
},
"bin": [
"bin/sympress"
],
"scripts": {
"cs": [
"Composer\\Config::disableProcessTimeout",
"phpcs --standard=phpcs.xml.dist"
],
"cs:fix": [
"Composer\\Config::disableProcessTimeout",
"phpcbf --standard=phpcs.xml.dist"
],
"static-analysis": [
"Composer\\Config::disableProcessTimeout",
"phpstan analyse --memory-limit=1G --no-progress"
],
"tests": [
"Composer\\Config::disableProcessTimeout",
"phpunit --configuration phpunit.xml.dist --no-coverage"
],
"test": [
"@tests"
],
"qa": [
"@cs",
"@static-analysis",
"@tests"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true
}