-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 870 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
37
38
39
40
41
{
"name": "nzo/file-downloader-bundle",
"type": "symfony-bundle",
"description": "The NzoFileDownloaderBundle is a Symfony Bundle used to Download all types of files from servers and Web applications safely and with ease. You can also read/show the file content in the Web Browser.",
"keywords": [
"download",
"upload",
"file",
"symfony",
"bundle",
"downloader",
"browser",
"read",
"show"
],
"license": "MIT",
"authors": [
{
"name": "Ala Eddine Khefifi",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"ext-curl": "*",
"ext-fileinfo": "*",
"symfony/framework-bundle": "^4.4|^5.0|^6.0|^7.0",
"symfony/mime": "^4.4|^5.0|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Nzo\\FileDownloaderBundle\\": ""
}
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"config": {
"sort-packages": true
}
}