formwork/composer.json

47 lines
1.4 KiB
JSON
Raw 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": {
2023-07-02 17:38:20 +02:00
"php": ">=8.1",
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",
2023-07-02 17:46:52 +02:00
"symfony/yaml": "^6.2",
2023-05-20 21:12:51 +02:00
"league/commonmark": "^2.4"
},
"require-dev": {
2023-12-26 12:11:20 +01:00
"friendsofphp/php-cs-fixer": "^3.0",
"league/climate": "^3.8",
"symfony/process": "^6.4",
2023-12-28 12:44:58 +01:00
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.18.13"
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",
"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-01-02 15:14:36 +01:00
"serve": [
"Composer\\Config::disableProcessTimeout",
"php bin/serve"
]
2018-06-16 16:41:58 +02:00
}
}