mirror of
https://github.com/filamentphp/plugin-skeleton.git
synced 2025-12-06 13:38:53 +08:00
chore: l9
This commit is contained in:
@@ -17,14 +17,14 @@
|
|||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.0",
|
"php": "^8.0",
|
||||||
"spatie/laravel-package-tools": "^1.9.2",
|
|
||||||
"filament/filament": "^2.0",
|
"filament/filament": "^2.0",
|
||||||
"illuminate/contracts": "^8.73"
|
"spatie/laravel-package-tools": "^1.9.2",
|
||||||
|
"illuminate/contracts": "^9.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"nunomaduro/collision": "^5.10",
|
"nunomaduro/collision": "^6.0",
|
||||||
"nunomaduro/larastan": "^1.0",
|
"nunomaduro/larastan": "^2.0.1",
|
||||||
"orchestra/testbench": "^6.22",
|
"orchestra/testbench": "^7.0",
|
||||||
"pestphp/pest": "^1.21",
|
"pestphp/pest": "^1.21",
|
||||||
"pestphp/pest-plugin-laravel": "^1.1",
|
"pestphp/pest-plugin-laravel": "^1.1",
|
||||||
"phpstan/extension-installer": "^1.1",
|
"phpstan/extension-installer": "^1.1",
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ namespace VendorName\Skeleton\Tests;
|
|||||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||||
use Orchestra\Testbench\TestCase as Orchestra;
|
use Orchestra\Testbench\TestCase as Orchestra;
|
||||||
use VendorName\Skeleton\SkeletonServiceProvider;
|
use VendorName\Skeleton\SkeletonServiceProvider;
|
||||||
|
use Filament\FilamentServiceProvider;
|
||||||
|
use Livewire\LivewireServiceProvider;
|
||||||
|
|
||||||
class TestCase extends Orchestra
|
class TestCase extends Orchestra
|
||||||
{
|
{
|
||||||
@@ -20,6 +22,8 @@ class TestCase extends Orchestra
|
|||||||
protected function getPackageProviders($app)
|
protected function getPackageProviders($app)
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
|
LivewireServiceProvider::class,
|
||||||
|
FilamentServiceProvider::class,
|
||||||
SkeletonServiceProvider::class,
|
SkeletonServiceProvider::class,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user