mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
chore: bumps dependencies
This commit is contained in:
@ -19,7 +19,7 @@
|
|||||||
"require": {
|
"require": {
|
||||||
"php": "^8.2.0",
|
"php": "^8.2.0",
|
||||||
"brianium/paratest": "^7.5.0",
|
"brianium/paratest": "^7.5.0",
|
||||||
"nunomaduro/collision": "8.x-dev",
|
"nunomaduro/collision": "^8.3.0",
|
||||||
"nunomaduro/termwind": "^2.0.1",
|
"nunomaduro/termwind": "^2.0.1",
|
||||||
"pestphp/pest-plugin": "^3.0.0",
|
"pestphp/pest-plugin": "^3.0.0",
|
||||||
"pestphp/pest-plugin-arch": "^3.0.0",
|
"pestphp/pest-plugin-arch": "^3.0.0",
|
||||||
|
|||||||
@ -43,11 +43,11 @@ final class Laravel extends AbstractPreset
|
|||||||
->classes()
|
->classes()
|
||||||
->toHaveMethod('handle');
|
->toHaveMethod('handle');
|
||||||
|
|
||||||
$this->expectations[] = expect('App\Models') // @phpstan-ignore-line
|
$this->expectations[] = expect('App\Models')
|
||||||
->classes()
|
->classes()
|
||||||
->toExtend('Illuminate\Database\Eloquent\Model');
|
->toExtend('Illuminate\Database\Eloquent\Model');
|
||||||
|
|
||||||
$this->expectations[] = expect('App\Models') // @phpstan-ignore-line
|
$this->expectations[] = expect('App\Models')
|
||||||
->classes()
|
->classes()
|
||||||
->not->toHaveSuffix('Model');
|
->not->toHaveSuffix('Model');
|
||||||
|
|
||||||
@ -115,16 +115,16 @@ final class Laravel extends AbstractPreset
|
|||||||
->not->toExtend('Illuminate\Notifications\Notification')
|
->not->toExtend('Illuminate\Notifications\Notification')
|
||||||
->ignoring('App\Notifications');
|
->ignoring('App\Notifications');
|
||||||
|
|
||||||
$this->expectations[] = expect('App\Providers') // @phpstan-ignore-line
|
$this->expectations[] = expect('App\Providers')
|
||||||
->toHaveSuffix('ServiceProvider');
|
->toHaveSuffix('ServiceProvider');
|
||||||
|
|
||||||
$this->expectations[] = expect('App\Providers') // @phpstan-ignore-line
|
$this->expectations[] = expect('App\Providers')
|
||||||
->toExtend('Illuminate\Support\ServiceProvider');
|
->toExtend('Illuminate\Support\ServiceProvider');
|
||||||
|
|
||||||
$this->expectations[] = expect('App\Providers') // @phpstan-ignore-line
|
$this->expectations[] = expect('App\Providers')
|
||||||
->not->toBeUsed();
|
->not->toBeUsed();
|
||||||
|
|
||||||
$this->expectations[] = expect('App') // @phpstan-ignore-line
|
$this->expectations[] = expect('App')
|
||||||
->not->toExtend('Illuminate\Support\ServiceProvider')
|
->not->toExtend('Illuminate\Support\ServiceProvider')
|
||||||
->ignoring('App\Providers');
|
->ignoring('App\Providers');
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user