chore: l9

This commit is contained in:
Ryan Chandler
2022-02-19 16:31:26 +00:00
parent 0f7286f115
commit ede3bc3242
2 changed files with 9 additions and 5 deletions

View File

@@ -17,14 +17,14 @@
],
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.9.2",
"filament/filament": "^2.0",
"illuminate/contracts": "^8.73"
"spatie/laravel-package-tools": "^1.9.2",
"illuminate/contracts": "^9.0"
},
"require-dev": {
"nunomaduro/collision": "^5.10",
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^6.22",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"phpstan/extension-installer": "^1.1",

View File

@@ -5,6 +5,8 @@ namespace VendorName\Skeleton\Tests;
use Illuminate\Database\Eloquent\Factories\Factory;
use Orchestra\Testbench\TestCase as Orchestra;
use VendorName\Skeleton\SkeletonServiceProvider;
use Filament\FilamentServiceProvider;
use Livewire\LivewireServiceProvider;
class TestCase extends Orchestra
{
@@ -20,6 +22,8 @@ class TestCase extends Orchestra
protected function getPackageProviders($app)
{
return [
LivewireServiceProvider::class,
FilamentServiceProvider::class,
SkeletonServiceProvider::class,
];
}