This repository has been archived by the owner on Jun 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
88 lines (88 loc) · 2.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "oscarotero/psr7-middlewares",
"type": "library",
"description": "Collection of HTTP middlewares compatible with PSR-7",
"keywords": ["PSR-7", "http", "middlewares", "psr-messages"],
"homepage": "https://github.com/oscarotero/psr7-middlewares",
"license": "MIT",
"authors": [
{
"name": "Oscar Otero",
"email": "[email protected]",
"homepage": "http://oscarotero.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/oscarotero/psr7-middlewares/issues"
},
"require": {
"php": ">=5.5.0"
},
"require-dev": {
"ext-mcrypt": "*",
"zendframework/zend-diactoros": "1.*",
"relay/relay": "1.*",
"nikic/fast-route": "^0.7",
"aura/router": "^3.0",
"aura/session": "2.*",
"phpunit/phpunit": ">=4.8",
"willdurand/negotiation": "~2.0",
"m6web/firewall": "~1.0",
"mrclay/minify": "^2.2",
"matthiasmullie/scrapbook": "^1.0.1",
"ramsey/uuid": "^3.1",
"neomerx/cors-psr7": "^1.0",
"maximebf/debugbar": "~1.11",
"mobiledetect/mobiledetectlib": "^2.8",
"willdurand/geocoder": "^3.2",
"league/route": "^2.0",
"imagecow/imagecow": "^2.0",
"filp/whoops": "2.*",
"monolog/monolog": "^1.17",
"paragonie/csp-builder": "^1.3",
"google/recaptcha": "^1.1",
"piwik/referrer-spam-blacklist": "^1.0",
"micheh/psr7-cache": "^0.5.0",
"justinrainbow/json-schema": ">=3.0",
"mikey179/vfsStream": "^1.6",
"friendsofphp/php-cs-fixer": "^1.12"
},
"suggest": {
"aura/router": "To use AuraRouter",
"aura/session": "To use AuraSession",
"nikic/fast-route": "To use FastRoute",
"willdurand/negotiation": "To use FormatNegotiator, LanguageNegotiator and EncodingNegotiator",
"m6web/firewall": "To use Firewall",
"mrclay/minify": "To use Minify",
"ramsey/uuid": "To use Uuid",
"neomerx/cors-psr7": "To use Cors",
"maximebf/debugbar": "To use DebugBar",
"mobiledetect/mobiledetectlib": "To use DetectDevice",
"willdurand/geocoder": "To use Geolocate",
"league/route": "To use LeagueRoute",
"imagecow/imagecow": "To use ImageTransformer",
"filp/whoops": "To use Whoops",
"psr/log-implementation": "To use AccessLog",
"psr/cache-implementation": "To use Cache",
"paragonie/csp-builder": "To use Csp",
"google/recaptcha": "To use Recaptcha",
"piwik/referrer-spam-blacklist": "To use BlockSpam",
"justinrainbow/json-schema": "To validate JSON with route-matched schemas.",
"micheh/psr7-cache": "To use Cache"
},
"autoload": {
"psr-4": {
"Psr7Middlewares\\": "src/"
}
},
"autoload-dev":{
"psr-4":{
"":"tests/"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix . --fixers=-psr0"
}
}