Skip to content

Commit 0b2c329

Browse files
committed
feat: Laravel 9 support added
1 parent fcf3cb9 commit 0b2c329

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
}
1616
],
1717
"require": {
18-
"php": "^7.3|^8.0",
19-
"illuminate/support": "^8.0",
20-
"infyomlabs/laravel-generator-helpers": "^3.0",
18+
"php": "^8.0",
19+
"illuminate/support": "^9.0",
20+
"infyomlabs/laravel-generator-helpers": "4.x-dev",
2121
"laravel/ui": "^3.0"
2222
},
2323
"autoload": {

src/AdminLTEPreset.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,9 @@ public function __construct(Command $command, $isFortify = false)
3333
protected static function updatePackageArray(array $packages)
3434
{
3535
return [
36-
'bootstrap' => '^4.0.0',
37-
'jquery' => '^3.2',
38-
'popper.js' => '^1.12',
39-
'admin-lte' => '^3.0',
40-
'sass' => '^1.15.2',
41-
'sass-loader' => '^8.0.0',
36+
'admin-lte' => '^3.2',
37+
'sass' => '^1.32.11',
38+
'sass-loader' => '^11.0.1',
4239
] + $packages;
4340
}
4441

0 commit comments

Comments
 (0)