-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (50 loc) · 1.44 KB
/
composer.json
File metadata and controls
51 lines (50 loc) · 1.44 KB
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
48
49
50
51
{
"name" : "depa/middleware-formularhandler",
"description" : "The middleware formularhandler is a PSR-15 middleware that provides handling from formular data in a Zend Expressive application",
"keywords" : [
"framework",
"depa",
"formular"
],
"license" : "MIT",
"homepage" : "https://github.com/depa-berlin/Middleware-FormularHandler",
"config" : {
"platform":{"php": "7.2"}
},
"require": {
"psr/http-server-middleware": "^1.0",
"psr/container": "^1.0",
"zendframework/zend-servicemanager": "^3.4",
"swiftmailer/swiftmailer": "^6.2",
"true/punycode": "^2.1",
"zendframework/zend-problem-details": "^1.0",
"zendframework/zend-json": "^3.1",
"zendframework/zend-diactoros": "^2.1",
"twig/twig": "^2.11"
},
"authors": [
{
"name": "designpark",
"homepage": "https://www.designpark.de"
},
{
"name": "Marcel Maqsood"
},
{
"name": "Mirko Fenrich"
}
],
"autoload" : {
"psr-4" : {
"depa\\FormularHandlerMiddleware\\" : "src/"
}
},
"extra": {
"zf": {
"component": "depa\\FormularHandlerMiddleware",
"config-provider": "depa\\FormularHandlerMiddleware\\ConfigProvider"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}