File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change
1
+ language : php
2
+ dist : xenial
3
+ php :
4
+ - 7.4
5
+
6
+ before_install :
7
+ - mysql -e "create database IF NOT EXISTS encryption_bundle_test;"
8
+ - export INI=~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini;
9
+ - echo memory_limit = -1 >> $INI
10
+
11
+ install :
12
+ - composer install
13
+
14
+ script :
15
+ - bin/phpunit
16
+
17
+ env :
18
+ - SYMFONY_VERSION=4.4.*
19
+ - SYMFONY_VERSION=5.1.*
20
+
21
+ services :
22
+ - mysql
Original file line number Diff line number Diff line change 20
20
}
21
21
],
22
22
"require" : {
23
- "php" : " >=7.2 " ,
23
+ "php" : " ^7.4 " ,
24
24
"ext-mbstring" : " *" ,
25
- "symfony/framework-bundle" : " >=2.8 "
25
+ "symfony/framework-bundle" : " ^4.4|^5.1 "
26
26
},
27
27
"suggest" : {
28
28
"doctrine/doctrine-bundle" : " Use Doctrine to encrypt and decrypt entities automatically" ,
You can’t perform that action at this time.
0 commit comments