File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 28
28
29
29
- name : Configure PHP
30
30
run : |
31
- install-php-extensions memcached sysvsem
32
31
rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
33
32
php --version
34
33
37
36
if [ "${{ matrix.type }}" != "Phpunit" ] && [ "${{ matrix.type }}" != "StaticAnalysis" ]; then composer remove --no-interaction --no-update phpunit/phpunit ergebnis/phpunit-slow-test-detector --dev; fi
38
37
if [ "${{ matrix.type }}" != "CodingStyle" ]; then composer remove --no-interaction --no-update friendsofphp/php-cs-fixer ergebnis/composer-normalize --dev; fi
39
38
if [ "${{ matrix.type }}" != "StaticAnalysis" ]; then composer remove --no-interaction --no-update phpstan/\* --dev; fi
39
+ composer remove --no-interaction --no-update ext-lzf ext-memcached ext-sysvsem --dev
40
40
composer update --ansi --prefer-dist --no-interaction --no-progress --optimize-autoloader
41
41
42
42
- name : " Run tests (only for Phpunit)"
Original file line number Diff line number Diff line change 38
38
"symfony/polyfill-php80" : " ^1.28"
39
39
},
40
40
"require-dev" : {
41
+ "ext-igbinary" : " *" ,
42
+ "ext-lzf" : " *" ,
41
43
"ext-memcached" : " *" ,
42
44
"ext-pcntl" : " *" ,
43
45
"ext-pdo" : " *" ,
44
46
"ext-pdo_mysql" : " *" ,
45
47
"ext-pdo_sqlite" : " *" ,
48
+ "ext-redis" : " *" ,
46
49
"ext-sysvsem" : " *" ,
47
50
"eloquent/liberator" : " ^2.0 || ^3.0" ,
48
51
"ergebnis/composer-normalize" : " ^2.13" ,
61
64
"suggest" : {
62
65
"ext-igbinary" : " To use this library with PHP Redis igbinary serializer enabled." ,
63
66
"ext-lzf" : " To use this library with PHP Redis lzf compression enabled." ,
64
- "ext-pnctl " : " Enables locking with flock without busy waiting in CLI scripts." ,
67
+ "ext-pcntl " : " Enables locking with flock without busy waiting in CLI scripts." ,
65
68
"ext-redis" : " To use this library with the PHP Redis extension." ,
66
69
"ext-sysvsem" : " Enables locking using semaphores." ,
67
70
"predis/predis" : " To use this library with predis."
You can’t perform that action at this time.
0 commit comments