-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
28 lines (28 loc) · 902 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
{
"name": "Extrablind/cakephp-media-plugin",
"description": "Media plugin for CakePHP : resize and display gallery and photos easily. Wrapper around Burzum plugins.",
"type": "cakephp-plugin",
"keywords": ["cakephp","media","galleries","image", "fancybox"],
"homepage": "https://github.com/ExtraBlind/cakephp-media-plugin/",
"license": "Beerware",
"require": {
"php": ">=5.4.16",
"cakephp/cakephp": "~3.0",
"burzum/cakephp-imagine-plugin": "2.*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Extrablind\\Media\\": "./plugins/Extrablind/Media/src",
"Extrablind\\Blog\\": "./plugins/Extrablind/Blog/src"
}
},
"autoload-dev": {
"psr-4": {
"Media\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}