forked from burzum/cakephp-file-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.42 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
{
"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.4.19",
"cakephp/cakephp": "~3.0",
"cakephp/plugin-installer": "*",
"cakephp/migrations": "~1.0",
"knplabs/gaufrette": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"burzum/cakephp-imagine-plugin": "3.0.*-dev"
},
"autoload": {
"psr-4": {
"Burzum\\FileStorage\\": "src",
"Burzum\\FileStorage\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "/vendor/cakephp/cakephp/tests",
"Burzum\\FileStorage\\Test\\": "tests"
}
},
"suggest": {
"burzum/cakephp-imagine-plugin": "Required if you want to use the image processing feature of FileStorage"
},
"scripts": {
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
}
}