-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.36 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
48
49
50
51
52
53
54
55
56
{
"name": "http-message-strategies-interop/example-middleman-http-message-strategies",
"description": "Middleman Example of HTTP Message Strategies PSR",
"keywords": [
"psr",
"psr-7",
"http",
"http-message",
"request",
"response",
"strategies",
"example"
],
"license": "MIT",
"authors": [
{
"name": "Michael Mayer",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Interop\\Http\\Message\\Strategies\\Examples\\Middleman\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Interop\\Http\\Message\\Strategies\\Examples\\Middleman\\": "tests"
}
},
"config": {
"sort-packages": true
},
"require": {
"http-interop/http-factory": "^0.3",
"http-message-strategies-interop/http-message-strategies": "^0.3",
"mindplay/middleman": "^2.0",
"zendframework/zend-diactoros": "^1.3"
},
"require-dev": {
"schnittstabil/phpunit-starter": "^6.0"
},
"scripts": {
"clean": "rm -rf build/ .php_cs.cache",
"lint": [
"sugared-rim-cs"
],
"test": [
"@travis",
"@lint"
],
"travis": [
"schnittstabil-phpunit-starter"
]
}
}