-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
59 lines (59 loc) · 1.46 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
{
"name": "qcod/laravel-app-settings",
"description": "A package with UI to store and manage all the settings for your application",
"homepage": "https://github.com/qcod/laravel-app-settings",
"type": "library",
"license": "MIT",
"keywords": [
"qcod",
"laravel",
"database settings",
"db settings",
"app settings",
"setting ui",
"bootstrap",
"eloquent"
],
"authors": [
{
"name": "Mohd Saqueib Ansari",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"qcod/laravel-settings": "^1.1"
},
"require-dev": {
"orchestra/testbench": "4.*|5.*|6.*|^8.0|^9.0",
"mockery/mockery": "^0.9.4 || ~1.0",
"phpunit/phpunit": "^8.5|^9.5.10|^10.5"
},
"autoload": {
"psr-4": {
"QCod\\AppSettings\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"QCod\\AppSettings\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"QCod\\AppSettings\\AppSettingsServiceProvider"
],
"aliases": {
"AppSettings": "QCod\\AppSettings\\Facade"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}