-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
42 lines (42 loc) · 1 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
{
"name": "laraeast/laravel-settings",
"description": "Persistent key-value storage for Laravel",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "Ahmed Fathy",
"email": "aliraqi.dev@gmail.com"
}
],
"require": {
"laravel/framework": ">=5.2"
},
"require-dev": {
"orchestra/testbench": ">=3.0",
"mockery/mockery": "^1.4"
},
"autoload": {
"psr-4": {
"Laraeast\\LaravelSettings\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laraeast\\LaravelSettings\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.0.x-dev"
},
"laravel": {
"providers": [
"Laraeast\\LaravelSettings\\Providers\\SettingsServiceProvider"
],
"aliases": {
"Settings": "Laraeast\\LaravelSettings\\Facades\\Settings"
}
}
}
}