-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (44 loc) · 1.06 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
{
"name": "chrisshick/cakemiddlewares",
"description": "A collection of CakePHP Middlewares.",
"type": "cakephp-plugin",
"keywords": [
"chrisShick",
"cakephp",
"middleware"
],
"homepage": "https://github.com/chrisShick/CakeMiddlewares",
"license": "MIT",
"authors": [
{
"name": "Chris Hickingbottom",
"homepage": "http://github.com/chrisShick",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/chrisShick/CakeMiddlewares/issues",
"source": "https://github.com/chrisShick/CakeMiddlewares"
},
"require": {
"cakephp/cakephp": "~3.4",
"m6web/firewall": "~1.0",
"piwik/referrer-spam-blacklist": "^1.0",
"willdurand/geocoder": "^3.3"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^2.1",
"phpunit/phpunit": "<6.0",
"friendsofcake/cakephp-test-utilities": "dev-master"
},
"autoload": {
"psr-4": {
"chrisShick\\CakeMiddlewares\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"chrisShick\\CakeMiddlewares\\Test\\": "tests"
}
}
}