formwork/composer.json

35 lines
857 B
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": {
2021-07-05 17:33:30 +02:00
"php": ">=7.4.0",
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": "*",
2020-11-30 02:00:02 +01:00
"erusev/parsedown": "^1.7",
"erusev/parsedown-extra": "^0.8.1",
"symfony/yaml": "^5.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0"
2021-05-11 23:02:35 +02:00
},
"scripts": {
"fix": "php-cs-fixer fix --verbose"
2018-06-16 16:41:58 +02:00
}
}