Skip to content

Commit cd2659c

Browse files
committed
add migration autoload
1 parent b3d3640 commit cd2659c

File tree

1 file changed

+19
-10
lines changed

1 file changed

+19
-10
lines changed

composer.json

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,30 @@
22
"name": "unisharp/laravel-settings",
33
"description": "Persistent settings manager for laravel, translations are supported.",
44
"type": "library",
5-
"keywords": [ "key-value", "storage", "settings", "persistent", "laravel"],
5+
"keywords": [
6+
"key-value",
7+
"storage",
8+
"settings",
9+
"persistent",
10+
"laravel"
11+
],
612
"license": "MIT",
713
"authors": [
8-
{
9-
"name": "Unisharp Ltd.",
10-
"email": "[email protected]"
11-
}
14+
{
15+
"name": "Unisharp Ltd.",
16+
"email": "[email protected]"
17+
}
1218
],
1319
"require": {
14-
"php": ">=5.5.0",
15-
"illuminate/support": ">=5.0.0"
20+
"php": ">=5.5.0",
21+
"illuminate/support": ">=5.0.0"
1622
},
1723
"autoload": {
18-
"psr-4": {
19-
"Unisharp\\Setting\\": "src/Setting/"
20-
}
24+
"classmap": [
25+
"src/migrations"
26+
],
27+
"psr-4": {
28+
"Unisharp\\Setting\\": "src/Setting/"
29+
}
2130
}
2231
}

0 commit comments

Comments
 (0)