mirror of
https://github.com/getformwork/formwork.git
synced 2025-01-16 13:09:08 +01:00
51 lines
1.7 KiB
JSON
51 lines
1.7 KiB
JSON
{
|
|
"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.3",
|
|
"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": "^2.0.3",
|
|
"rector/rector": "^2.0.3"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|