-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 955 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
{
"name" : "technovistalimited/uppish",
"description": "Reusable component for uploading attachments in Laravel-based web application.",
"keywords" : ["laravel", "file upload", "image upload", "uploads", "uppish"],
"license" : "MIT",
"type" : "package",
"authors" : [
{
"name" : "Mayeenul Islam",
"email" : "islam.mayeenul@gmail.com",
"homepage": "https://nanodesignsbd.com",
"role" : "Lead Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"intervention/image": "^2.5"
},
"require-dev": {
"laravel/framework": ">=5.8"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Technovistalimited\\Uppish\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Technovistalimited\\Uppish\\UppishServiceProvider"
],
"aliases": {
"Uppish": "Technovistalimited\\Uppish\\Facades\\Uppish"
}
}
}
}