-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1011 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
37
38
39
40
{
"name": "iuravic/duktig-middleman-adapter",
"type": "library",
"description": "Middleman middleware dispatcher adapter for Duktig MVC micro web framework",
"keywords": [
"Duktig",
"framework",
"adapter",
"Middleman",
"middleware",
"dispatcher"
],
"homepage": "https://github.com/iuravic/duktig-middleman-adapter",
"license": [
"MIT"
],
"authors": [
{
"name": "Ivan Uravić",
"email": "iuravic@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php" : "^7.1",
"mindplay/middleman": "3.0.0.x-dev",
"http-interop/http-middleware": "^0.4.1",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Duktig\\Middleware\\Dispatcher\\Adapter\\Middleman\\": "src/"
}
}
}