File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2727 tests :
2828 runs-on : ubuntu-20.04
2929 strategy :
30+ fail-fast : false
3031 matrix :
3132 php :
3233 - ' 7.3'
Original file line number Diff line number Diff line change 2424 "require" : {
2525 "php" : " ^7.3 || ^8.0" ,
2626 "symfony/event-dispatcher-contracts" : " ^1.1 || ^2.0" ,
27- "symfony/http-foundation" : " ^4.4 || ^5.3 || ^6.0"
27+ "symfony/http-foundation" : " ^4.4 || ^5.4 || ^6.0"
2828 },
2929 "require-dev" : {
3030 "ext-pdo_sqlite" : " *" ,
3636 "propel/propel1" : " ^1.7" ,
3737 "ruflin/elastica" : " ^7.0" ,
3838 "solarium/solarium" : " ^6.0" ,
39- "symfony/http-kernel" : " ^4.4 || ^5.2 " ,
40- "symfony/property-access" : " ^4.4 || ^5.3 || ^6.0"
39+ "symfony/http-kernel" : " ^4.4 || ^5.4 || ^6.0 " ,
40+ "symfony/property-access" : " ^4.4 || ^5.4 || ^6.0"
4141 },
4242 "suggest" : {
4343 "doctrine/common" : " to allow usage pagination with Doctrine ArrayCollection" ,
Original file line number Diff line number Diff line change 44
55\Doctrine \Common \Annotations \AnnotationRegistry::registerLoader ('class_exists ' );
66$ reader = new \Doctrine \Common \Annotations \AnnotationReader ();
7- $ reader = new \Doctrine \Common \Annotations \CachedReader ($ reader , new \Doctrine \Common \Cache \ArrayCache ());
7+ if (class_exists ('Doctrine\Common\Cache\ArrayCache ' )) {
8+ $ reader = new \Doctrine \Common \Annotations \CachedReader ($ reader , new \Doctrine \Common \Cache \ArrayCache ());
9+ }
810$ _ENV ['annotation_reader ' ] = $ reader ;
9-
You can’t perform that action at this time.
0 commit comments