File tree 3 files changed +11
-8
lines changed
3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -34,30 +34,33 @@ matrix:
34
34
fast_finish : true
35
35
include :
36
36
# Minimum supported Symfony version and latest PHP version
37
- - php : 7.2
37
+ - php : 7.3
38
38
env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak"
39
39
- php : 5.6
40
- env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak"
40
+ env : COMPOSER_MEMORY_LIMIT=-1 COMPOSER_FLAGS="--prefer-stable --prefer-lowest" SYMFONY_DEPRECATIONS_HELPER="weak"
41
41
42
42
# Test the latest stable release
43
43
- php : 5.6
44
+ env : COMPOSER_MEMORY_LIMIT=-1
44
45
- php : 7.0
45
46
env : SYMFONY_PHPUNIT_VERSION="6.3"
46
47
- php : 7.1
47
48
env : SYMFONY_PHPUNIT_VERSION="6.3"
49
+ - php : 7.2
50
+ env : COVERAGE=true TEST_COMMAND="composer test-ci"
48
51
- php : 7.2
49
52
env : COVERAGE=true TEST_COMMAND="composer test-ci"
50
53
51
54
# Test LTS versions
52
- - php : 7.2
55
+ - php : 7.3
53
56
env : DEPENDENCIES="dunglas/symfony-lock:^2"
54
- - php : 7.2
57
+ - php : 7.3
55
58
env : DEPENDENCIES="dunglas/symfony-lock:^3"
56
- - php : 7.2
59
+ - php : 7.3
57
60
env : DEPENDENCIES="dunglas/symfony-lock:^4"
58
61
59
62
# Latest commit to master
60
- - php : 7.2
63
+ - php : 7.3
61
64
env : STABILITY="dev"
62
65
63
66
allow_failures :
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ apc.use_request_time=0
4
4
5
5
extension = memcached.so
6
6
7
-
7
+ memory_limit =-1
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ private function parseDsn($dsn)
225
225
226
226
private function parseHosts ($ hostString )
227
227
{
228
- preg_match_all ('/(?P<host>[\w-._]+)(?::(?P<port>\d+))?/mi ' , $ hostString , $ matches );
228
+ preg_match_all ('/(?P<host>[\w\ -._]+)(?::(?P<port>\d+))?/mi ' , $ hostString , $ matches );
229
229
230
230
$ hosts = [];
231
231
foreach ($ matches ['host ' ] as $ index => $ match ) {
You can’t perform that action at this time.
0 commit comments