-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
40 lines (40 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
{
"name": "backpack/filemanager",
"description": "Backpack admin interface for files and folder, using elFinder",
"license": "MIT",
"authors": [
{
"name": "Cristian Tabacitu",
"email": "[email protected]",
"homepage": "https://backpackforlaravel.com"
}
],
"homepage": "https://github.com/laravel-backpack/filemanager",
"keywords": ["Laravel", "FileManager"],
"require": {
"backpack/crud": "^6.0",
"barryvdh/laravel-elfinder": "^0.5.2"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^8"
},
"autoload": {
"psr-4": {
"Backpack\\FileManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Backpack\\FileManager\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Backpack\\FileManager\\FileManagerServiceProvider"
]
}
}
}