fix: remove stray brace in migration stub, add Laravel 13 support
This commit is contained in:
parent
615da8c4c1
commit
64d2b70ce7
|
|
@ -35,10 +35,10 @@
|
|||
"require": {
|
||||
"php": "^8.1",
|
||||
"blax-software/laravel-workkit": "*",
|
||||
"illuminate/container": "^9.0|^10.0|^11.0|^12.0",
|
||||
"illuminate/contracts": "^9.0|^10.0|^11.0|^12.0",
|
||||
"illuminate/database": "^9.0|^10.0|^11.0|^12.0",
|
||||
"illuminate/support": "^9.0|^10.0|^11.0|^12.0"
|
||||
"illuminate/container": "^9.0|^10.0|^11.0|^12.0|^13.0",
|
||||
"illuminate/contracts": "^9.0|^10.0|^11.0|^12.0|^13.0",
|
||||
"illuminate/database": "^9.0|^10.0|^11.0|^12.0|^13.0",
|
||||
"illuminate/support": "^9.0|^10.0|^11.0|^12.0|^13.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"laravel/framework": "*",
|
||||
|
|
|
|||
|
|
@ -153,7 +153,6 @@ return new class extends Migration
|
|||
$table->index('type');
|
||||
$table->index('is_primary');
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
|----------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Reference in New Issue