formwork/composer.json
Giuseppe Criscione dd69328708 Require PHP >= 8.1
2023-07-02 17:38:20 +02:00

37 lines
917 B
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.1",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-zip": "*",
"symfony/polyfill-ctype": "^1.23",
"symfony/yaml": "^5.1",
"league/commonmark": "^2.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"symfony/var-dumper": "^6.0"
},
"scripts": {
"fix": "php-cs-fixer fix --verbose"
}
}