formwork/composer.json

51 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2018-06-16 16:41:58 +02:00
{
2019-05-13 13:03:58 +02:00
"name": "getformwork/formwork",
2018-07-06 22:10:00 +02:00
"description": "A file-based Content Management System (CMS) to make and manage simple sites",
"type": "project",
2019-05-13 13:03:58 +02:00
"homepage": "https://github.com/getformwork/formwork",
2018-07-06 22:10:00 +02:00
"license": "MIT",
"authors": [
{
"name": "Giuseppe Criscione"
}
],
2018-06-16 16:41:58 +02:00
"autoload": {
"psr-4": {
"Formwork\\": "formwork/src/"
2018-06-16 16:41:58 +02:00
}
},
"require": {
2024-11-18 22:57:56 +01:00
"php": ">=8.3",
2021-07-22 15:43:36 +02:00
"ext-dom": "*",
2020-02-27 22:53:28 +01:00
"ext-fileinfo": "*",
"ext-gd": "*",
2020-12-16 14:33:13 +01:00
"ext-mbstring": "*",
"ext-openssl": "*",
2020-02-27 22:53:28 +01:00
"ext-zip": "*",
"symfony/polyfill-ctype": "^1.23",
2024-04-27 13:24:35 +02:00
"symfony/yaml": "^7.0.3",
2024-01-20 16:14:01 +01:00
"league/commonmark": "^2.4",
2024-06-08 23:26:22 +02:00
"jaybizzle/crawler-detect": "^1.2",
"masterminds/html5": "^2.9"
},
"require-dev": {
2023-12-26 12:11:20 +01:00
"friendsofphp/php-cs-fixer": "^3.0",
"league/climate": "^3.8",
2024-04-27 13:24:35 +02:00
"symfony/process": "^7.0.4",
2025-01-09 22:12:06 +01:00
"phpstan/phpstan": "^2.0.3",
"rector/rector": "^2.0.3"
2021-05-11 23:02:35 +02:00
},
"scripts": {
"fix": "php-cs-fixer fix --config=formwork/.php-cs-fixer.php --cache-file=formwork/.php-cs-fixer.cache --verbose",
2024-05-19 23:52:57 +02:00
"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",
2023-12-28 12:44:58 +01:00
"rector": "rector --config=formwork/.rector.php",
2024-05-24 23:42:06 +02:00
"rector:check": "rector --dry-run --config=formwork/.rector.php",
2024-01-02 15:14:36 +01:00
"serve": [
"Composer\\Config::disableProcessTimeout",
"php bin/serve"
]
2018-06-16 16:41:58 +02:00
}
}