forked from getformwork/formwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 924 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"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": ">=7.4.0",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-zip": "*",
"erusev/parsedown": "^1.7",
"erusev/parsedown-extra": "^0.8.1",
"symfony/polyfill-ctype": "^1.23",
"symfony/yaml": "^5.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0"
},
"scripts": {
"fix": "php-cs-fixer fix --verbose"
}
}