-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathcomposer.json
44 lines (44 loc) · 1.04 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
{
"name": "bnbwebexpertise/laravel-attachments",
"description": "Attach files to your models, retrievable by key, group name or using the Eloquent relationship.",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "B&B Web Expertise",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"illuminate/database": ">=5.5",
"illuminate/routing": ">=5.5",
"illuminate/support": ">=5.5",
"illuminate/console": ">=5.5",
"illuminate/encryption": ">=5.5",
"bnbwebexpertise/php-uuid": ">=0.0.2",
"doctrine/dbal": "~2.5|^3.0",
"nesbot/carbon": "^1.20 || ^2.0 || ^3"
},
"require-dev": {
"laravel/framework": ">=5.5"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Bnb\\Laravel\\Attachments\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev",
"dev-L5.4": "0.x-dev"
},
"laravel": {
"providers": [
"Bnb\\Laravel\\Attachments\\AttachmentsServiceProvider"
]
}
}
}