forked from burzum/cakephp-file-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.85 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
51
52
53
54
55
{
"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"
},
{
"name": "Other contributors",
"homepage": "https://github.com/burzum/cakephp-file-storage/graphs/contributors",
"role": "Contributors"
}
],
"prefer-stable": true,
"minimum-stability": "stable",
"require": {
"php": ">=7.0.0",
"cakephp/cakephp": "^3.6.0",
"cakephp/plugin-installer": "^1.0.0",
"cakephp/migrations": "^2.0.0",
"knplabs/gaufrette": "^0.7.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7.14|^6.0",
"burzum/cakephp-imagine-plugin": "3.x-dev",
"cakephp/cakephp-codesniffer": "^3.0.0",
"league/flysystem": "^1.0.0"
},
"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",
"league/flysystem": "Alternative for Gaufrette, see the docs how to configure it."
},
"scripts": {
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
}
}