File tree 4 files changed +25
-10
lines changed
4 files changed +25
-10
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ matrix:
19
19
env : PACKAGES='symfony/symfony=4.0.*'
20
20
- php : 7.1
21
21
env : PACKAGES='symfony/symfony=4.1.*'
22
+ - php : 7.3
23
+ env : PACKAGES='symfony/symfony=5.* doctrine/dbal=2.10'
22
24
23
25
before_install :
24
26
- travis_retry composer self-update
Original file line number Diff line number Diff line change 13
13
"require" : {
14
14
"php" : " ^7.1" ,
15
15
"paillechat/php-enum" : " ^1.2 || ^2.1" ,
16
- "symfony/http-kernel" : " ^3.4 || ^4.0" ,
17
- "symfony/dependency-injection" : " ^3.4 || ^4.0" ,
18
- "symfony/config" : " ^3.4 || ^4.0" ,
16
+ "symfony/http-kernel" : " ^3.4 || ^4.0 || ^5.0 " ,
17
+ "symfony/dependency-injection" : " ^3.4 || ^4.0 || ^5.0 " ,
18
+ "symfony/config" : " ^3.4 || ^4.0 || ^5.0 " ,
19
19
"doctrine/dbal" : " ^2.4"
20
20
},
21
21
"require-dev" : {
22
22
"phpunit/phpunit" : " ^7.0" ,
23
- "symfony/yaml" : " ^3.4 || ^4.0"
23
+ "symfony/yaml" : " ^3.4 || ^4.0 || ^5.0 "
24
24
},
25
25
"autoload" : {
26
26
"psr-4" : {
Original file line number Diff line number Diff line change @@ -11,9 +11,14 @@ final class Configuration implements ConfigurationInterface
11
11
/** {@inheritdoc} */
12
12
public function getConfigTreeBuilder (): TreeBuilder
13
13
{
14
- $ builder = new TreeBuilder ();
15
-
16
- $ root = $ builder ->root ('lamoda_enum ' );
14
+ $ name = 'lamoda_enum ' ;
15
+ if (method_exists (TreeBuilder::class, 'root ' )) {
16
+ $ builder = new TreeBuilder ();
17
+ $ root = $ builder ->root ($ name );
18
+ } else {
19
+ $ builder = new TreeBuilder ($ name );
20
+ $ root = $ builder ->getRootNode ();
21
+ }
17
22
18
23
$ root ->children ()->booleanNode ('enum_name_type_mapping ' )
19
24
->defaultValue (false );
Original file line number Diff line number Diff line change 4
4
5
5
use Doctrine \DBAL \Platforms \AbstractPlatform ;
6
6
use Doctrine \DBAL \Types \Type ;
7
+ use Doctrine \DBAL \Types \TypeRegistry ;
7
8
use Lamoda \EnumBundle \DBAL \EnumType ;
8
9
use Lamoda \EnumBundle \DBAL \EnumTypeInitializer ;
9
10
use Lamoda \EnumBundle \Naming \IdenticalNamingStrategy ;
@@ -23,9 +24,16 @@ protected function setUp(): void
23
24
{
24
25
$ typeReflectionClass = new \ReflectionClass (Type::class);
25
26
26
- $ typesMapProperty = $ typeReflectionClass ->getProperty ('_typesMap ' );
27
- $ typesMapProperty ->setAccessible (true );
28
- $ typesMapProperty ->setValue ([]);
27
+ if ($ typeReflectionClass ->hasProperty ('_typesMap ' )) {
28
+ $ typesMapProperty = $ typeReflectionClass ->getProperty ('_typesMap ' );
29
+ $ typesMapProperty ->setAccessible (true );
30
+ $ typesMapProperty ->setValue ([]);
31
+ } else {
32
+ $ registry = new TypeRegistry ();
33
+ $ typesMapProperty = $ typeReflectionClass ->getProperty ('typeRegistry ' );
34
+ $ typesMapProperty ->setAccessible (true );
35
+ $ typesMapProperty ->setValue ($ registry );
36
+ }
29
37
}
30
38
31
39
public function testInitializerLoadsType (): void
You can’t perform that action at this time.
0 commit comments