-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathcomposer.json
57 lines (57 loc) · 1.41 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
{
"name": "backpack/settings",
"description": "Application settings interface for Laravel 5 using Backpack CRUD.",
"keywords": [
"tabacitu",
"laravel backpack",
"backpack settings",
"updivision",
"dick",
"dick settings",
"backpack",
"manage settings",
"settings admin"
],
"homepage": "https://github.com/laravel-backpack/settings",
"license": "proprietary",
"authors": [
{
"name": "Cristian Tabacitu",
"email": "[email protected]",
"homepage": "https://backpackforlaravel.com",
"role": "Chief Architect & Lead Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"backpack/crud": "^4.0|^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit" : "^9.0||^7.0",
"scrutinizer/ocular": "~1.1"
},
"autoload": {
"psr-4": {
"Backpack\\Settings\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Backpack\\Settings\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testdox"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Backpack\\Settings\\SettingsServiceProvider"
]
}
}
}