-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
63 lines (63 loc) · 1.6 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
55
56
57
58
59
60
61
62
63
{
"name": "recca0120/upload",
"description": "Ajax Upload Large File Support jQuery-File-Upload, FileApi, Plupload, For framework Laravel",
"keywords": [
"laravel",
"chunk",
"ajax",
"upload",
"jQuery-File-Upload",
"jquery-fileapi",
"plupload",
"fileapi",
"dropzone"
],
"license": "MIT",
"authors": [
{
"name": "recca0120",
"email": "recca0120@gmail.com"
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
"illuminate/http": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"illuminate/config": "^8.0|^9.0|^10.0|^11.0",
"illuminate/container": "^8.0|^9.0|^10.0|^11.0",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.0",
"nesbot/carbon": "^2.0.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Recca0120\\Upload\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Recca0120\\Upload\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Recca0120\\Upload\\UploadServiceProvider"
]
}
}
}