File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 24
24
matrix :
25
25
include :
26
26
- php : 7.1
27
- - php : 7.1
28
- env : deps=high
29
27
- php : 7.2
28
+ env : deps=high
29
+ - php : 7.3
30
30
env : deps=low
31
31
32
32
fast_finish : true
@@ -136,8 +136,9 @@ before_install:
136
136
echo session.gc_probability = 0 >> $INI
137
137
echo opcache.enable_cli = 1 >> $INI
138
138
echo apc.enable_cli = 1 >> $INI
139
- echo extension = redis.so >> $INI
140
- echo extension = memcached.so >> $INI
139
+ if [[ $PHP != 7.3 ]]; then
140
+ echo extension = memcached.so >> $INI
141
+ fi
141
142
done
142
143
143
144
- |
@@ -160,11 +161,13 @@ before_install:
160
161
tfold ext.libsodium tpecl libsodium sodium.so $INI
161
162
fi
162
163
163
- tfold ext.apcu tpecl apcu-5.1.6 apcu.so $INI
164
+ tfold ext.apcu tpecl apcu-5.1.15 apcu.so $INI
164
165
tfold ext.mongodb tpecl mongodb-1.6.0alpha1 mongodb.so $INI
165
- tfold ext.amqp tpecl amqp-1.9.3 amqp.so $INI
166
- tfold ext.igbinary tpecl igbinary-2.0.6 igbinary.so $INI
167
- tfold ext.zookeeper tpecl zookeeper-0.5.0 zookeeper.so $INI
166
+ if [[ $PHP != 7.3 ]]; then
167
+ tfold ext.amqp tpecl amqp-1.9.3 amqp.so $INI
168
+ fi
169
+ tfold ext.igbinary tpecl igbinary-2.0.8 igbinary.so $INI
170
+ tfold ext.zookeeper tpecl zookeeper-0.6.2 zookeeper.so $INI
168
171
done
169
172
170
173
- |
You can’t perform that action at this time.
0 commit comments