forked from sroze/SRIORestUploadBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 1021 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
33
34
35
36
{
"name": "srio/rest-upload-bundle",
"description": "Handle multiple rest upload ways",
"keywords": ["symfony", "file", "upload", "api", "rest", "multipart", "resumable", "form-data"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Samuel ROZE",
"email": "[email protected]",
"homepage": "http://www.sroze.io"
}
],
"require": {
"php": "^7.1",
"incenteev/composer-parameter-handler": "~2.0"
},
"require-dev": {
"sensio/framework-extra-bundle": "^5.0",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.8",
"knplabs/knp-gaufrette-bundle": "^0.5.0",
"oneup/flysystem-bundle": "^3.0"
},
"autoload": {
"psr-0": { "SRIO\\RestUploadBundle": "" }
},
"scripts": {
"test": "./test.sh",
"contrib": [
"php-cs-fixer fix .",
"./test.sh"
]
},
"target-dir": "SRIO/RestUploadBundle"
}