File tree 6 files changed +16
-9
lines changed
src/DeepCopy/Matcher/Doctrine
tests/DeepCopyTest/Matcher/Doctrine
6 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 4
4
- pull_request
5
5
- push
6
6
7
+ env :
8
+ COMPOSER_ROOT_VERSION : 1.99
9
+
7
10
jobs :
8
11
composer-json-lint :
9
12
name : " Lint composer.json"
Original file line number Diff line number Diff line change 3
3
DeepCopy helps you create deep copies (clones) of your objects. It is designed to handle cycles in the association graph.
4
4
5
5
[ ![ Total Downloads] ( https://poser.pugx.org/myclabs/deep-copy/downloads.svg )] ( https://packagist.org/packages/myclabs/deep-copy )
6
+ [ ![ Integrate] ( https://github.com/myclabs/DeepCopy/workflows/ci/badge.svg?branch=1.x )] ( https://github.com/myclabs/DeepCopy/actions )
6
7
7
8
## Table of Contents
8
9
Original file line number Diff line number Diff line change 14
14
"php" : " ^7.1 || ^8.0"
15
15
},
16
16
"require-dev" : {
17
- "doctrine/collections" : " ^1.6" ,
18
- "doctrine/common" : " ^2.13" ,
19
- "phpunit/phpunit" : " ^7.5 || ^8.5 || ^9.5"
17
+ "doctrine/collections" : " ^1.6.8" ,
18
+ "doctrine/common" : " ^2.13.3 || ^3.2.2" ,
19
+ "phpunit/phpunit" : " ^7.5.20 || ^8.5.23 || ^9.5.13"
20
+ },
21
+ "conflict" : {
22
+ "doctrine/collections" : " <1.6.8" ,
23
+ "doctrine/common" : " <2.13.3 || >=3,<3.2.2"
20
24
},
21
25
"autoload" : {
22
26
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
- xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/4.1/phpunit.xsd"
4
- colors =" true"
5
- bootstrap =" vendor/autoload.php" >
3
+ xsi : noNamespaceSchemaLocation =" vendor/phpunit/phpunit/phpunit.xsd"
4
+ colors =" true" >
6
5
7
6
<testsuites >
8
7
<testsuite name =" Test suite" >
9
- <directory >./tests</directory >
8
+ <directory >./tests/DeepCopyTest </directory >
10
9
</testsuite >
11
10
</testsuites >
12
11
Original file line number Diff line number Diff line change 3
3
namespace DeepCopy \Matcher \Doctrine ;
4
4
5
5
use DeepCopy \Matcher \Matcher ;
6
- use Doctrine \Common \ Persistence \Proxy ;
6
+ use Doctrine \Persistence \Proxy ;
7
7
8
8
/**
9
9
* @final
Original file line number Diff line number Diff line change 4
4
5
5
use BadMethodCallException ;
6
6
use DeepCopy \Matcher \Doctrine \DoctrineProxyMatcher ;
7
- use Doctrine \Common \ Persistence \Proxy ;
7
+ use Doctrine \Persistence \Proxy ;
8
8
use PHPUnit \Framework \TestCase ;
9
9
use stdClass ;
10
10
You can’t perform that action at this time.
0 commit comments