-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
43 lines (43 loc) · 1.12 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": "backpack/theme-coreuiv2",
"description": "UI that uses CoreUI v2 and Bootstrap v4, provided as a legacy theme for Backpack v6.",
"license": "MIT",
"authors": [
{
"name": "Cristian Tabacitu",
"email": "hello@backpackforlaravel.com",
"homepage": "https://backpackforlaravel.com"
}
],
"homepage": "https://github.com/backpack/theme-coreuiv2",
"keywords": [
"Laravel", "Backpack", "Backpack for Laravel", "Backpack Addon", "ThemeCoreuiv2"
],
"require": {
"backpack/crud": "^6.2.1"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "~5|~6"
},
"autoload": {
"psr-4": {
"Backpack\\ThemeCoreuiv2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Backpack\\ThemeCoreuiv2\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testdox"
},
"extra": {
"laravel": {
"providers": [
"Backpack\\ThemeCoreuiv2\\AddonServiceProvider"
]
}
}
}