-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathcomposer.json
44 lines (44 loc) · 1.11 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": "backpack/backupmanager",
"description": "Admin interface for managing backups in Backpack, on Laravel 5.2+",
"keywords": [
"dick",
"backpack",
"updivision",
"backup",
"backupmanager",
"tabacitu",
"laravel"
],
"homepage": "https://github.com/laravel-backpack/BackupManager",
"license": "proprietary",
"authors": [
{
"name": "Cristian Tabacitu",
"email": "[email protected]",
"homepage": "https://backpackforlaravel.com",
"role": "Chief Architect & Web Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"backpack/crud": "^6.0",
"spatie/laravel-backup": "^8.0"
},
"require-dev": {
"scrutinizer/ocular": "~1.7|~1.1"
},
"autoload": {
"psr-4": {
"Backpack\\BackupManager\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Backpack\\BackupManager\\BackupManagerServiceProvider"
]
}
}
}