Skip to content

Commit b9807fb

Browse files
committed
feat: update doctrine bundle version and adjust configuration for compatibility
1 parent b7bdf8a commit b9807fb

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ jobs:
195195
env:
196196
XDEBUG_MODE: coverage
197197
PHP_VERSION: ${{ matrix.php-version }}
198+
CASTOR_GENERATE_STUBS: 0
198199
steps:
199200
- uses: actions/checkout@v5
200201
- name: Install dependencies

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,10 @@
8888
"web-token/jwt-library": "Mandatory for fetching Metadata Statement from distant sources",
8989
"symfony/security-bundle": "Symfony firewall using a JSON API (perfect for script applications)"
9090
},
91+
"minimum-stability": "beta",
9192
"require-dev": {
9293
"doctrine/dbal": "^3.8|^4.0",
93-
"doctrine/doctrine-bundle": "^2.12",
94+
"doctrine/doctrine-bundle": "^2.18.1|^3.0",
9495
"doctrine/orm": "^2.14|^3.0",
9596
"doctrine/persistence": "^3.1|^4.0",
9697
"matthiasnoback/symfony-dependency-injection-test": "^5.1|^6.0",

tests/symfony/config/config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@ doctrine:
101101

102102
url: '%env(resolve:DATABASE_URL)%'
103103
orm:
104-
enable_lazy_ghost_objects: true
105-
auto_generate_proxy_classes: true
106104
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
107105
auto_mapping: true
108106
controller_resolver:

tests/symfony/functional/Assertion/AssertionTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,12 @@
1616
use Webauthn\PublicKeyCredentialDescriptor;
1717
use Webauthn\PublicKeyCredentialRequestOptions;
1818
use Webauthn\Tests\Bundle\Functional\WebauthnTestCase;
19-
use Webauthn\Tests\MockedRequestTrait;
2019

2120
/**
2221
* @internal
2322
*/
2423
final class AssertionTest extends WebauthnTestCase
2524
{
26-
use MockedRequestTrait;
27-
2825
#[Test]
2926
public function anAssertionResponseCanBeLoadedAndVerified(): void
3027
{

0 commit comments

Comments
 (0)