-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
70 lines (70 loc) · 1.93 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
{
"name": "padosoft/laravel-settings",
"description": "Persistent settings with caching in Laravel.",
"license": "MIT",
"keywords": [
"padosoft",
"laravel-settings",
"laravel",
"settings",
"cache"
],
"authors": [
{
"name": "Lorenzo Padovani",
"email": "helpdesk@padosoft.com",
"homepage": "https://www.padosoft.com",
"role": "Developer"
},
{
"name": "Leonardo Padovani",
"email": "helpdesk@padosoft.com",
"homepage": "https://www.padosoft.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"illuminate/contracts": ">=5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/encryption": ">=5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/validation": ">=5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/database": ">=5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"orchestra/testbench": "^3.8.2|^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"mockery/mockery": "^1.5",
"josiasmontag/laravel-redis-mock": "^1.3"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Padosoft\\Laravel\\Settings\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Padosoft\\Laravel\\Settings\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"laravel": {
"aliases": {
"SettingsManager": "Padosoft\\Laravel\\Settings\\Facade"
},
"providers": [
"Padosoft\\Laravel\\Settings\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"cache-dir": "/dev/shm/composer/cache"
}
}