Skip to content

Commit

Permalink
Dependencies fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
LastDragon-ru committed Mar 15, 2024
1 parent a6221b2 commit 98bd58b
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions packages/core/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"require-dev": {
"phpunit/phpunit": "^10.1.0",
"lastdragon-ru/lara-asp-testing": "self.version",
"mockery/mockery": "^1.6.2",
"orchestra/testbench": "^8.0.0"
},
"autoload": {
Expand Down
1 change: 1 addition & 0 deletions packages/documentator/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
},
"require-dev": {
"lastdragon-ru/lara-asp-testing": "self.version",
"mockery/mockery": "^1.6.2",
"orchestra/testbench": "^8.0.0",
"phpunit/phpunit": "^10.1.0"
},
Expand Down
1 change: 1 addition & 0 deletions packages/eloquent/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"require-dev": {
"ext-pdo_sqlite": "*",
"lastdragon-ru/lara-asp-testing": "self.version",
"mockery/mockery": "^1.6.2",
"orchestra/testbench": "^8.0.0",
"phpunit/phpunit": "^10.1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/migrator/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"ext-json": "*",
"laravel/framework": "^10.34.0",
"lastdragon-ru/lara-asp-core": "self.version",
"symfony/filesystem": "^6.3.0",
"symfony/console": "^6.3.0",
"symfony/finder": "^6.3.0",
"symfony/polyfill-php83": "^1.28"
},
Expand Down
1 change: 1 addition & 0 deletions packages/serializer/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
},
"require-dev": {
"lastdragon-ru/lara-asp-testing": "self.version",
"mockery/mockery": "^1.6.2",
"orchestra/testbench": "^8.0.0",
"phpunit/phpunit": "^10.1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/spa/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"require-dev": {
"phpunit/phpunit": "^10.1.0",
"lastdragon-ru/lara-asp-testing": "self.version",
"symfony/filesystem": "^6.3.0",
"mockery/mockery": "^1.6.2",
"orchestra/testbench": "^8.0.0"
},
"autoload": {
Expand Down
4 changes: 3 additions & 1 deletion packages/testing/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@
"require-dev": {
"guzzlehttp/psr7": "^1.9.1|^2.4.5",
"laravel/scout": "^9.8.0|^10.0.0",
"orchestra/testbench": "^8.0.0"
"orchestra/testbench": "^8.0.0",
"symfony/console": "^6.3.0",
"symfony/http-kernel": "^6.3.0"
},
"autoload": {
"files": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@

use Illuminate\Database\Eloquent\Model;
use Laravel\Scout\Builder;
use LastDragon_ru\LaraASP\GraphQL\Testing\Package\Requirements\RequiresLaravelScout;
use LastDragon_ru\LaraASP\Testing\Assertions\ScoutAssertions;
use LastDragon_ru\LaraASP\Testing\Requirements\Requirements\RequiresComposerPackage;
use Orchestra\Testbench\TestCase;
use PHPUnit\Framework\Attributes\CoversNothing;

/**
* @internal
*/
#[CoversNothing]
#[RequiresLaravelScout]
#[RequiresComposerPackage('laravel/scout')]
final class AssertScoutQueryEqualsTest extends TestCase {
/**
* Trait where assertion defined.
Expand Down

0 comments on commit 98bd58b

Please sign in to comment.