Skip to content

Commit 9a0e3eb

Browse files
authored
Merge pull request #11 from smtlk/fix_composer_json_for_future_laravel_versions
Fixed composer settings to allow for future Laravel versions within 5.X
2 parents dd6e445 + 582841d commit 9a0e3eb

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
],
1414
"require": {
1515
"php": ">=7.0.0",
16-
"laravel/framework": "5.6.*",
17-
"encore/laravel-admin": "1.5.*"
16+
"laravel/framework": "~5.5",
17+
"encore/laravel-admin": "~1.5"
1818
},
1919
"require-dev": {
2020
"phpunit/phpunit": "~6.0",
21-
"laravel/laravel": "5.*"
21+
"laravel/laravel": "~5.5"
2222
},
2323
"autoload": {
2424
"psr-4": {
@@ -30,7 +30,6 @@
3030
"providers": [
3131
"Encore\\Admin\\Config\\ConfigServiceProvider"
3232
]
33-
3433
}
3534
}
3635
}

0 commit comments

Comments
 (0)