Skip to content

Commit

Permalink
Fix composer package names
Browse files Browse the repository at this point in the history
  • Loading branch information
HypeMC committed Oct 13, 2021
1 parent 8b1806d commit e0ffa99
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Maker/MakeCrud.php
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ public function configureDependencies(DependencyBuilder $dependencies)

$dependencies->addClassDependency(
DoctrineBundle::class,
'orm-pack'
'orm'
);

$dependencies->addClassDependency(
Expand Down
2 changes: 1 addition & 1 deletion src/Maker/MakeRegistrationForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ public function configureDependencies(DependencyBuilder $dependencies): void

$dependencies->addClassDependency(
DoctrineBundle::class,
'orm-pack'
'orm'
);

$dependencies->addClassDependency(
Expand Down
4 changes: 2 additions & 2 deletions tests/Maker/MakeEntityLegacyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ public function getTestDetails()
'',
])
->setRequiredPhpVersion(70200)
->addExtraDependencies('ux-turbo-mercure')
->addExtraDependencies('symfony/ux-turbo-mercure')
->configureDatabase()
->addReplacement(
'.env',
Expand Down Expand Up @@ -546,7 +546,7 @@ public function getTestDetails()
])
->setRequiredPhpVersion(70200)
->addExtraDependencies('api')
->addExtraDependencies('ux-turbo-mercure')
->addExtraDependencies('symfony/ux-turbo-mercure')
->setFixtureFilesPath(__DIR__.'/../fixtures/legacy/MakeEntity/MakeEntity')
->configureDatabase()
->updateSchemaAfterCommand()
Expand Down
4 changes: 2 additions & 2 deletions tests/Maker/MakeEntityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ public function getTestDetails()
])
->setRequiredPhpVersion(80000)
->useDoctrineAttributeMapping()
->addExtraDependencies('ux-turbo-mercure')
->addExtraDependencies('symfony/ux-turbo-mercure')
->configureDatabase()
->addReplacement(
'.env',
Expand Down Expand Up @@ -657,7 +657,7 @@ public function getTestDetails()
->setRequiredPhpVersion(80000)
->useDoctrineAttributeMapping()
->addExtraDependencies('api')
->addExtraDependencies('ux-turbo-mercure')
->addExtraDependencies('symfony/ux-turbo-mercure')
->setFixtureFilesPath(__DIR__.'/../fixtures/MakeEntity')
->configureDatabase()
->updateSchemaAfterCommand()
Expand Down

0 comments on commit e0ffa99

Please sign in to comment.