forked from multidimension-al/cakephp-subdomains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 881 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
{
"name": "blink-media-inc/cakephp-subdomains",
"description": "Easily add sub domains to your CakePHP application using route prefixes.",
"type": "cakephp-plugin",
"keywords": ["cakephp", "cakephp3", "subdomains"],
"homepage": "https://github.com/blink-media-inc/cakephp-subdomains",
"license": "MIT",
"authors": [{
"name": "blink-media-inc",
"homepage": "https://blink.la",
"role": "Developer"
}],
"require": {
"php": ">=5.5.9",
"cakephp/cakephp": "^3.3",
"cakephp/cakephp-codesniffer": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.6|^6.0"
},
"autoload": {
"psr-4": {
"Multidimensional\\Subdomains\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Multidimensional\\Subdomains\\Test\\": "tests"
}
}
}