Skip to content

Commit 12516d7

Browse files
committed
Add Laravel 7 support
1 parent a41c3ed commit 12516d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
],
1818
"require": {
1919
"php": "^7.1",
20-
"illuminate/support": "^6.0",
20+
"illuminate/support": "^5.5|^6.0|^7.0",
2121
"appzcoder/crud-generator": "^3.0",
22-
"laravelcollective/html": "^6.0",
22+
"laravelcollective/html": "^5.5|^6.0|^7.0",
2323
"spatie/laravel-activitylog": "^3.2"
2424
},
2525
"autoload": {

src/LaravelAdminCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function handle()
4646
exit();
4747
}
4848

49-
if (\App::VERSION() >= '5.2') {
49+
if (\App::VERSION() >= '5.2' && \App::VERSION() < '6.0') {
5050
$this->info("Generating the authentication scaffolding");
5151
$this->call('make:auth');
5252
}

0 commit comments

Comments
 (0)