forked from Laravel-Backpack/CRUD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.91 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "backpack/crud",
"type": "library",
"description": "Quickly build an admin interfaces using Laravel, CoreUI, Bootstrap and jQuery.",
"keywords": [
"backpack",
"base",
"admin panel for laravel",
"coreui for laravel",
"bootstrap 4 admin panel laravel",
"laravel admin",
"CRUD",
"BREAD",
"create",
"update",
"delete",
"read",
"admin panel",
"admin interface",
"CMS",
"content management system",
"content management framework"
],
"homepage": "https://github.com/laravel-backpack/CRUD",
"license": "MIT",
"authors": [
{
"name": "Cristian Tabacitu",
"email": "cristian.tabacitu@backpackforlaravel.com",
"homepage": "https://backpackforlaravel.com",
"role": "Creator & Maintainer"
}
],
"require": {
"laravel/framework": "^9.0|^8.69",
"prologue/alerts": "^1.0|^0.4",
"digitallyhappy/assets": "^2.0.1",
"creativeorange/gravatar": "~1.0",
"composer/package-versions-deprecated": "^1.8",
"doctrine/dbal": "^2.5|^3.0",
"guzzlehttp/guzzle": "^7.0|^6.3"
},
"require-dev": {
"phpunit/phpunit": "~8.0|~7.0|~9.0",
"scrutinizer/ocular": "~1.7|~1.1",
"orchestra/testbench": "^7.0|^6.0|^5.0|^4.0|^3.0",
"spatie/laravel-translatable": "^4.0|^5.0|^6.0"
},
"autoload": {
"psr-4": {
"Backpack\\CRUD\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Backpack\\CRUD\\Tests\\": "tests",
"Backpack\\CRUD\\Tests81\\": "tests81"
},
"files": ["src/helpers.php"],
"exclude-from-classmap": [
"**/config"
]
},
"scripts": {
"test": "vendor/bin/phpunit --testdox",
"test-failing": "vendor/bin/phpunit --order-by=defects --stop-on-failure",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text"
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
},
"laravel": {
"providers": [
"Backpack\\CRUD\\BackpackServiceProvider"
],
"aliases": {
"CRUD": "Backpack\\CRUD\\app\\Library\\CrudPanel\\CrudPanelFacade",
"Widget": "Backpack\\CRUD\\app\\Library\\Widget"
}
}
},
"suggest": {
"backpack/generators": "Required on localhost to easily generate CRUDs, models, controllers etc.",
"backpack/filemanager": "Required to use the browse and browse_multiple fields.",
"backpack/revise-operation": "Optional operation to remember all entry changes, undo and redo them (aka audit trait).",
"digitallyhappy/toggle-field-for-backpack": "Optional field to toggle a boolean. Prettier alternative to the checkbox field."
}
}