forked from burzum/cakephp-file-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
26 lines (26 loc) · 1.01 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
{
"name": "burzum/cakephp-file-storage",
"type": "cakephp-plugin",
"description": "This plugin is giving you the possibility to store files in virtually and kind of storage backend. This plugin is wrapping the Gaufrette library (https://github.com/KnpLabs/Gaufrette) library in a CakePHP fashion and provides a simple way to use the storage adapters through the StorageManager class.",
"keywords": ["file", "filesystem", "media", "abstraction", "upload", "cakephp", "storage"],
"homepage": "http://github.com/burzum/cakephp-file-storage-plugin",
"license": "MIT",
"authors": [
{
"name": "Florian Krämer",
"homepage": "http://florian-kraemer.net"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.2",
"knplabs/gaufrette": "*"
},
"suggest": {
"burzum/cakephp-imagine-plugin": "Required if you want to use the image processing feature of FileStorage",
"cakedc/migrations": "If you want to use the database migrations that come with FileStorage"
},
"extra": {
"installer-name" : "FileStorage"
}
}