-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.21 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
{
"name": "dframe/filestorage",
"description": "File system storage with cache",
"type": "library",
"keywords": [
"filestorage",
"filesystem",
"images",
"storage",
"dframe",
"stylist",
"S3",
"Storage Service"
],
"minimum-stability": "dev",
"prefer-stable": true,
"homepage": "https://dframeframework.com/en/docs/fileStorage/master/configuration",
"license": "MIT",
"require": {
"league/flysystem": "^1.1.4",
"ext-fileinfo": "*",
"league/flysystem-cached-adapter": "^1.1",
"ext-json": "*"
},
"require-dev": {
"dframe/dframe": "*",
"phpunit/phpunit": "^5.7.10"
},
"suggest": {
"coldume/imagecraft": "^1.0"
},
"authors": [
{
"name": "Sławomir Kaleta",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Dframe\\FileStorage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dframe\\FileStorage\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"@phpunit"
],
"phpunit": "php vendor/bin/phpunit"
}
}