forked from barryvdh/elfinder-flysystem-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 820 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
29
30
31
32
{
"name": "mazataza/elfinder-flysystem-driver",
"description": "A Flysystem Driver for elFinder",
"license": "MIT",
"keywords": ["elfinder", "flysystem", "filesystem"],
"authors": [
{
"name": "Barry vd. Heuvel",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"studio-42/elfinder": "^2.1.10",
"league/flysystem": "^2.0",
"intervention/image": "^2.0"
},
"suggest": {
"league/glide": "1.x to display images through Glide"
},
"autoload": {
"classmap": ["elFinderVolumeFlysystem.php"],
"psr-4": {
"Barryvdh\\elFinderFlysystemDriver\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}