-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.63 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
57
58
59
60
61
62
63
{
"name": "wecodein/http-middleware",
"description": "Middleware for PHP built on top of PSR-7, PSR-15 and PSR-17",
"type": "library",
"license": "MIT",
"keywords": [
"wecodein",
"http-middleware",
"psr-7",
"psr-15",
"psr-17"
],
"authors": [
{
"name": "Dusan Vejin",
"email": "dutekvejin@gmail.com",
"homepage": "https://github.com/dutekvejin"
}
],
"require": {
"php": "^7.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.7",
"http-interop/http-factory-diactoros": "^1.0",
"http-interop/http-factory-guzzle": "^1.0",
"phpunit/phpunit": "^6.4"
},
"autoload": {
"psr-4": {
"WeCodeIn\\Http\\Server\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WeCodeIn\\Http\\Server\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"cs-fix": "php-cs-fixer fix --config=.php_cs",
"cs-check": "php-cs-fixer fix --config=.php_cs -v --diff --dry-run"
},
"provide": {
"psr/http-middleware": "dev-develop",
"psr/http-middleware-implementation": "^1.0"
},
"suggest": {
"http-interop/http-factory-guzzle": "",
"http-interop/http-factory-diactoros": ""
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}