-
Notifications
You must be signed in to change notification settings - Fork 61
/
composer.json
52 lines (52 loc) · 1.33 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
{
"name": "qcod/laravel-imageup",
"description": "Auto Image upload, resize and crop for Laravel eloquent model using Intervention image",
"homepage": "https://github.com/qcod/laravel-imageup",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"image upload",
"image crop",
"image resize",
"intervention image",
"eloquent",
"model"
],
"authors": [
{
"name": "Mohd Saqueib Ansari",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"intervention/image": "^2.4|^3.4"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^8.0|^9.0|^10.5",
"dms/phpunit-arraysubset-asserts": "^0.2.0|^0.3|^0.4|^0.5"
},
"autoload": {
"psr-4": {
"QCod\\ImageUp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"QCod\\ImageUp\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"QCod\\ImageUp\\ImageUpServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}