-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
45 lines (45 loc) · 1.24 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
{
"name": "opensoft/storage-bundle",
"description": "An opinionated file based storage system with database level file tracking.",
"keywords": ["storage", "file", "flysystem", "cloud"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Richard Fullmer",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Opensoft\\StorageBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Opensoft\\StorageBundle\\Tests\\": "tests/" }
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.2",
"ext-fileinfo": "^1.0",
"doctrine/orm": "^2.5",
"guzzlehttp/psr7": "^1.4.1",
"knplabs/knp-paginator-bundle": "^2.5",
"league/flysystem": "^1.0",
"league/flysystem-aws-s3-v3": "^1.0",
"lexik/form-filter-bundle": "^5.0",
"psr/http-message": "^1.0",
"symfony/asset": "^3.0|^4.0",
"symfony/form": "^3.0|^4.0",
"symfony/framework-bundle": "^3.0|^4.0",
"symfony/security": "^3.0|^4.0",
"symfony/validator": "^3.0|^4.0",
"symfony/var-dumper": "^3.0|^4.0",
"twig/twig": "^1.25|^2.0"
},
"require-dev": {
"aws/aws-sdk-php": "^3.29",
"phpunit/phpunit": "^7.5",
"zendframework/zenddiagnostics": "^1.0"
}
}