-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
50 lines (50 loc) · 1.72 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
{
"name": "getformwork/formwork",
"description": "A file-based Content Management System (CMS) to make and manage simple sites",
"type": "project",
"homepage": "https://github.com/getformwork/formwork",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Criscione"
}
],
"autoload": {
"psr-4": {
"Formwork\\": "formwork/src/"
}
},
"require": {
"php": ">=8.2",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-zip": "*",
"symfony/polyfill-ctype": "^1.23",
"symfony/yaml": "^7.0.3",
"league/commonmark": "^2.4",
"jaybizzle/crawler-detect": "^1.2",
"masterminds/html5": "^2.9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"league/climate": "^3.8",
"symfony/process": "^7.0.4",
"phpstan/phpstan": "^1.10",
"rector/rector": "^1.0.4"
},
"scripts": {
"fix": "php-cs-fixer fix --config=formwork/.php-cs-fixer.php --cache-file=formwork/.php-cs-fixer.cache --verbose",
"fix:check": "php-cs-fixer check --config=formwork/.php-cs-fixer.php --cache-file=formwork/.php-cs-fixer.cache",
"phpstan": "phpstan analyse --configuration=formwork/phpstan.neon",
"phpstan:baseline": "phpstan analyse --configuration=formwork/phpstan.neon --generate-baseline=formwork/phpstan-baseline.neon",
"rector": "rector --config=formwork/.rector.php",
"rector:check": "rector --dry-run --config=formwork/.rector.php",
"serve": [
"Composer\\Config::disableProcessTimeout",
"php bin/serve"
]
}
}