forked from Romano83/CakePHP3-Media
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.1 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
{
"name" : "romano83/cakephp3-media",
"description" : "Media plugin for CakePHP 3",
"type" : "cakephp-plugin",
"require" : {
"php" : ">=5.4.0"
},
"require-dev" : {
"cakephp/cakephp" : "~3.0",
"phpunit/phpunit" : "*",
"cakephp/cakephp-codesniffer" : "2.*"
},
"suggest" : {
"ezyang/htmlpurifier" : "dev-master"
},
"autoload" : {
"psr-4" : {
"Media\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"Media\\Test\\" : "tests",
"Media\\Test\\Fixture\\" : "tests/Fixture",
"Cake\\Test\\" : "./vendor/cakephp/cakephp/tests",
"App\\" : "tests/tests_app"
}
},
"authors" : [{
"name" : "Romain Guillemin",
"email" : "[email protected]",
"homepage" : "http://www.romain-guillemin.fr",
"role" : "Developper & Maintainer"
}, {
"name" : "Jonathan Boyer",
"email" : "[email protected]",
"homepage" : "http://jonathan-boyer.fr/",
"role" : "Initial Author"
}
],
"keywords" : [
"Plugin",
"Media",
"CakePHP"
],
"support" : {
"source" : "https://github.com/Romano83/CakePHP3-Media",
"issues" : "https://github.com/Romano83/CakePHP3-Media/issues"
}
}