Skip to content

Commit 1d6482c

Browse files
authored
Merge pull request #401 from doctrine/prepare-release
prepare release
2 parents 3f29006 + 9307a2a commit 1d6482c

File tree

3 files changed

+15
-21
lines changed

3 files changed

+15
-21
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
Changelog
22
=========
33

4-
3.0.0 (unreleased)
5-
------------------
4+
Version 3
5+
=========
6+
7+
3.0.0
8+
-----
69

710
* Upgrade to PHPCR-ODM 2.0
811
* Support Jackalope 2.0
912
* Drop support for PHP 7
10-
* Replace doctrine cache with PSR-6 cache with the `symfony/cache` implementation.
13+
* Replace Doctrine cache with PSR-6 cache with the `symfony/cache` implementation.
1114
The configuration of metadata_cache_driver changed. By default, it creates an `array` cache.
1215
To configure a service, specify `type: service` and specify your service in the `id` property.
1316
To use a cache pool, specify the service id of that pool.

composer.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,16 @@
2929
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
3030
},
3131
"conflict": {
32-
"doctrine/annotations": "< 1.7.0",
3332
"doctrine/doctrine-bundle": "< 2.0.3",
3433
"jackalope/jackalope-jackrabbit": "<2",
3534
"jackalope/jackalope": "< 1.3.1",
36-
"phpcr/phpcr-shell": "< 1.0.0-beta1",
3735
"symfony/dependency-injection": "< 3",
3836
"symfony/console": "< 4"
3937
},
4038
"require-dev": {
4139
"ext-libxml": "*",
4240
"doctrine/doctrine-bundle": "^2.0.3",
43-
"doctrine/phpcr-odm": "2.x-dev",
41+
"doctrine/phpcr-odm": "^2.0",
4442
"doctrine/orm": "^2.0 || ^3.0",
4543
"jackalope/jackalope-doctrine-dbal": "^2.0",
4644
"matthiasnoback/symfony-dependency-injection-test": "^4.3.1 || ^5.0",
@@ -89,7 +87,5 @@
8987
"psr-4": {
9088
"Doctrine\\Bundle\\PHPCRBundle\\Tests\\": "tests/"
9189
}
92-
},
93-
"prefer-stable": true,
94-
"minimum-stability": "beta"
90+
}
9591
}

phpunit.xml.dist

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,20 @@
22
<phpunit
33
colors="true"
44
bootstrap="vendor/autoload.php"
5+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
57
>
68

79
<testsuites>
810
<testsuite name="Symfony DoctrinePHPCRBundle Test Suite">
911
<directory>./tests</directory>
1012
</testsuite>
1113
</testsuites>
12-
13-
<filter>
14-
<whitelist addUncoveredFilesFromWhitelist="true">
15-
<directory>.</directory>
16-
<exclude>
17-
<directory>Resources/</directory>
18-
<directory>Tests/</directory>
19-
<directory>vendor/</directory>
20-
</exclude>
21-
</whitelist>
22-
</filter>
23-
14+
<coverage includeUncoveredFiles="true">
15+
<include>
16+
<directory>src/</directory>
17+
</include>
18+
</coverage>
2419
<php>
2520
<server name="KERNEL_CLASS" value="Doctrine\Bundle\PHPCRBundle\Tests\Fixtures\App\Kernel"/>
2621
<env name="SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT" value="1"/>

0 commit comments

Comments
 (0)