-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.05 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
{
"name": "cinco-de-mauro/laravel-filebase",
"description": "A Filebase driver for Laravel",
"keywords": [
"laravel",
"eloquent",
"database",
"model"
],
"homepage": "https://github.com/cinco-de-mauro/laravel-filebase",
"authors": [
{
"name": "Mauro Velez",
"homepage": "https://github.com/cinco-de-mauro"
}
],
"license": "MIT",
"require": {
"illuminate/support": "^7.0",
"illuminate/container": "^7.0",
"illuminate/database": "^7.0",
"illuminate/events": "^7.0",
"tmarois/filebase": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4|^9.0",
"orchestra/testbench": "^5.0",
"mockery/mockery": "^1.3.1",
"doctrine/dbal": "^2.6"
},
"autoload": {
"psr-0": {
"LaravelFilebase": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelFilebase\\LaravelFilebaseServiceProvider"
]
}
}
}