Skip to content

Commit 54197b4

Browse files
author
Jeroen de Graaf
committed
Upgrade to gember 0.8
1 parent 2793724 commit 54197b4

File tree

5 files changed

+109
-51
lines changed

5 files changed

+109
-51
lines changed

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@
2727
"doctrine/doctrine-migrations-bundle": "^3.3",
2828
"doctrine/orm": "^3.2",
2929
"fakerphp/faker": "^1.23",
30-
"gember/event-sourcing": "^0.7",
31-
"gember/event-sourcing-symfony-bundle": "^0.7",
30+
"gember/dependency-contracts": "^0.1",
31+
"gember/event-sourcing": "^0.8",
32+
"gember/event-sourcing-symfony-bundle": "^0.8",
3233
"symfony/console": "7.1.*",
3334
"symfony/dotenv": "7.1.*",
3435
"symfony/flex": "^2",

composer.lock

Lines changed: 103 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Infrastructure/Api/Cli/Command/Course/CreateCourseCliCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Gember\ExampleEventSourcingDcb\Infrastructure\Api\Cli\Command\Course;
66

7-
use Gember\EventSourcing\Util\Generator\Identity\IdentityGenerator;
7+
use Gember\DependencyContracts\Util\Generator\Identity\IdentityGenerator;
88
use Gember\ExampleEventSourcingDcb\Application\Command\Course\CreateCourseCommand;
99
use Override;
1010
use Symfony\Component\Console\Attribute\AsCommand;

src/Infrastructure/Api/Cli/Command/DemoRunCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace Gember\ExampleEventSourcingDcb\Infrastructure\Api\Cli\Command;
66

77
use Faker\Factory;
8-
use Gember\EventSourcing\Util\Generator\Identity\IdentityGenerator;
8+
use Gember\DependencyContracts\Util\Generator\Identity\IdentityGenerator;
99
use Gember\ExampleEventSourcingDcb\Domain\ChangeCourseCapacity\ChangeCourseCapacityCommand;
1010
use Gember\ExampleEventSourcingDcb\Application\Command\Course\CreateCourseCommand;
1111
use Gember\ExampleEventSourcingDcb\Application\Command\Course\RenameCourseCommand;

src/Infrastructure/Api/Cli/Command/Student/CreateStudentCliCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Gember\ExampleEventSourcingDcb\Infrastructure\Api\Cli\Command\Student;
66

7-
use Gember\EventSourcing\Util\Generator\Identity\IdentityGenerator;
7+
use Gember\DependencyContracts\Util\Generator\Identity\IdentityGenerator;
88
use Gember\ExampleEventSourcingDcb\Application\Command\Student\CreateStudentCommand;
99
use Override;
1010
use Symfony\Component\Console\Attribute\AsCommand;

0 commit comments

Comments
 (0)