Skip to content

Commit 73b94de

Browse files
committed
bump routing
1 parent c3c135e commit 73b94de

File tree

2 files changed

+13
-17
lines changed

2 files changed

+13
-17
lines changed

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"require": {
1818
"php": "^8.1",
19-
"symfony-cmf/routing": "^3.0",
19+
"symfony-cmf/routing": "^3.0.3",
2020
"symfony/framework-bundle": "^6.4 || ^7.0"
2121
},
2222
"require-dev": {
@@ -36,7 +36,7 @@
3636
"symfony/translation": "^6.4 || ^7.0",
3737
"symfony/validator": "^6.4 || ^7.0",
3838
"symfony/twig-bundle": "^6.4 || ^7.0",
39-
"symfony-cmf/testing": "dev-sf7 as 4.2.0",
39+
"symfony-cmf/testing": "^5.0.0",
4040
"twig/twig": "^2.4.4 || ^3.0"
4141
},
4242
"suggest": {
@@ -69,6 +69,5 @@
6969
"allow-plugins": {
7070
"composer/package-versions-deprecated": true
7171
}
72-
},
73-
"minimum-stability": "dev"
72+
}
7473
}

phpunit.xml.dist

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,33 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
3-
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
42
<phpunit
53
colors="true"
64
bootstrap="vendor/symfony-cmf/testing/bootstrap/bootstrap.php"
5+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
77
>
8-
98
<testsuites>
109
<testsuite name="unit tests">
1110
<directory>./tests/Unit</directory>
1211
</testsuite>
13-
1412
<testsuite name="functional tests with phpcr">
1513
<directory>./tests/Functional</directory>
1614
<exclude>./tests/Functional/Doctrine/Orm</exclude>
1715
</testsuite>
18-
1916
<testsuite name="functional tests with orm">
2017
<directory>./tests/Functional/Doctrine/Orm</directory>
2118
</testsuite>
2219
</testsuites>
2320

24-
<filter>
25-
<whitelist addUncoveredFilesFromWhitelist="true">
21+
<coverage includeUncoveredFiles="true">
22+
<include>
2623
<directory>src/</directory>
27-
<exclude>
28-
<directory>Resources/</directory>
29-
</exclude>
30-
</whitelist>
31-
</filter>
24+
</include>
25+
<exclude>
26+
<directory>src/Resources/</directory>
27+
</exclude>
28+
</coverage>
3229

3330
<php>
34-
<env name="KERNEL_CLASS" value="\Symfony\Cmf\Bundle\RoutingBundle\Tests\Fixtures\App\Kernel" />
31+
<env name="KERNEL_CLASS" value="\Symfony\Cmf\Bundle\RoutingBundle\Tests\Fixtures\App\Kernel"/>
3532
</php>
3633
</phpunit>

0 commit comments

Comments
 (0)