Skip to content

Commit

Permalink
fix test conflict (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
solverat committed Feb 13, 2024
1 parent 8156c64 commit 23f20f6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/codeception.yml
Expand Up @@ -123,6 +123,7 @@ jobs:
TEST_PIMCORE_VERSION: ${{ matrix.pimcore }}
TEST_SYMFONY_VERSION: ${{ matrix.symfony }}
run: |
sed -i 's,\"require-dev"\: {,\"conflict"\: {\"league/csv"\: \">=9.11.0"\}\, \"require-dev"\: {,g' ${{ github.workspace }}/lib/test-bundle/composer.json
chmod +x ./pimcore-codeception-framework/src/_etc/scripts/composer.sh
./pimcore-codeception-framework/src/_etc/scripts/composer.sh
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecs.yml
Expand Up @@ -103,6 +103,7 @@ jobs:
TEST_PIMCORE_VERSION: ${{ matrix.pimcore }}
TEST_SYMFONY_VERSION: ${{ matrix.symfony }}
run: |
sed -i 's,\"require-dev"\: {,\"conflict"\: {\"league/csv"\: \">=9.11.0"\}\, \"require-dev"\: {,g' ${{ github.workspace }}/lib/test-bundle/composer.json
chmod +x ./pimcore-codeception-framework/src/_etc/scripts/composer.sh
./pimcore-codeception-framework/src/_etc/scripts/composer.sh
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/php-stan.yml
Expand Up @@ -103,6 +103,7 @@ jobs:
TEST_PIMCORE_VERSION: ${{ matrix.pimcore }}
TEST_SYMFONY_VERSION: ${{ matrix.symfony }}
run: |
sed -i 's,\"require-dev"\: {,\"conflict"\: {\"league/csv"\: \">=9.11.0"\}\, \"require-dev"\: {,g' ${{ github.workspace }}/lib/test-bundle/composer.json
chmod +x ./pimcore-codeception-framework/src/_etc/scripts/composer.sh
./pimcore-codeception-framework/src/_etc/scripts/composer.sh
Expand Down
1 change: 1 addition & 0 deletions src/MembersBundle/DependencyInjection/MembersExtension.php
Expand Up @@ -24,6 +24,7 @@ public function prepend(ContainerBuilder $container): void
$configs = $container->getExtensionConfig($this->getAlias());
$config = $this->processConfiguration($this->getConfiguration([], $container), $configs);

/** @phpstan-ignore-next-line */
if (!$container->hasParameter('members.firewall_name')) {
$container->setParameter('members.firewall_name', 'members_fe');
}
Expand Down
Expand Up @@ -8,4 +8,6 @@
interface AccountConnectorInterface
{
public function connectToSsoIdentity(UserInterface $user, OAuthResponseInterface $oAuthResponse): SsoIdentityInterface;

public function refreshSsoIdentityUser(UserInterface $user, OAuthResponseInterface $oAuthResponse): void;
}

0 comments on commit 23f20f6

Please sign in to comment.