-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
55 lines (55 loc) · 1.38 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
{
"name": "janiskelemen/laravel-setting",
"description": "Laravel Settings Manager",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Janis Kelemen",
"email": "[email protected]",
"homepage": "https://helpspace.com"
}
],
"homepage": "https://github.com/janiskelemen/laravel-setting",
"keywords": [
"Laravel",
"Setting",
"Config",
"JanisKelemen"
],
"require": {
"illuminate/support": "^8|^9|^10|^11",
"adbario/php-dot-notation": "^3.1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.5",
"orchestra/testbench": "~7.0",
"orchestra/database": "dev-master",
"sempro/phpunit-pretty-print": "^1.4"
},
"autoload": {
"psr-4": {
"JanisKelemen\\Setting\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JanisKelemen\\Setting\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"JanisKelemen\\Setting\\Providers\\SettingServiceProvider"
],
"aliases": {
"Setting": "JanisKelemen\\Setting\\Facades\\Setting"
}
}
},
"scripts": {
"test": "phpunit --testdox"
}
}