formwork/composer.json

37 lines
917 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": {
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-05-20 21:12:51 +02:00
"symfony/yaml": "^5.1",
"league/commonmark": "^2.4"
},
"require-dev": {
2022-03-24 23:52:13 +01:00
"friendsofphp/php-cs-fixer": "^3.0",
"symfony/var-dumper": "^6.0"
2021-05-11 23:02:35 +02:00
},
"scripts": {
"fix": "php-cs-fixer fix --verbose"
2018-06-16 16:41:58 +02:00
}
}