Skip to content

Commit

Permalink
Merge pull request #28 from Flobbos/laravel9
Browse files Browse the repository at this point in the history
Laravel 10 support
  • Loading branch information
Flobbos authored Apr 14, 2023
2 parents 1dbb20d + 9ac7edb commit a5bf99e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
}
],
"require": {
"php": "^8.0",
"illuminate/support": "9.*",
"php": "^8.0|^8.1",
"illuminate/support": "9.*|10.*",
"flobbos/laravel-translatable-db": "^1.4",
"cocur/slugify": "^4.0",
"livewire/livewire": "^2.4"
Expand Down
4 changes: 2 additions & 2 deletions src/Pagebuilder/Commands/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ public function handle()
Artisan::call('migrate');

$this->comment('Running seeds.');
Artisan::call('db:seed', ['--class' => 'Flobbos\\Pagebuilder\\Database\\Seeds\\ElementTableSeeder']);
Artisan::call('db:seed', ['--class' => 'Flobbos\\Pagebuilder\\Database\\Seeds\\LanguageTableSeeder']);
Artisan::call('db:seed', ['--class' => 'Flobbos\\Pagebuilder\\ElementTableSeeder']);
Artisan::call('db:seed', ['--class' => 'Flobbos\\Pagebuilder\\LanguageTableSeeder']);

$this->comment('Publishing package files');

Expand Down

0 comments on commit a5bf99e

Please sign in to comment.