forked from cosmocode/formserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.04 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "cosmocode/formserver",
"description": "Generate forms from YAML, handle submitted data",
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Anna Dabrowska",
"email": "[email protected]"
},
{
"name": "Carl Aischmann",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"php-di/php-di": "^6.0",
"monolog/monolog": "^1.24",
"slim/psr7": "^1.4",
"slim/slim": "^4.2",
"slim/twig-view": "^2.0",
"michelf/php-markdown": "~1.9.0",
"mustangostang/spyc": "~0.6.2",
"respect/validation": "^1.1",
"swiftmailer/swiftmailer": "^6.2",
"ralouphie/mimey": "^2.1"
},
"config": {
"platform": {
"php": "7.2"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"CosmoCode\\Formserver\\": "src"
}
},
"scripts": {
"start": "php -S localhost:8181 -t public",
"check": "phpcs -p --standard=psr2 src",
"fix": "phpcbf --standard=psr2 src"
}
}