Skip to content

Commit

Permalink
[TASK] Adapt to php 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludwig Rafelsberger committed Jan 23, 2018
1 parent 4c2ea76 commit c0d5f8d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions archlinux/php.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ main() {
EOF

cat > /etc/php/conf.d/extensions.ini <<-'EOF'
extension=bz2.so
extension=exif.so
extension=gd.so
extension=iconv.so
extension=mysqli.so
extension=pdo_mysql.so
extension=soap.so
extension=tidy.so
extension=bz2
extension=exif
extension=gd
extension=iconv
extension=mysqli
extension=pdo_mysql
extension=soap
extension=tidy
zend_extension=opcache.so
zend_extension=opcache
EOF


Expand Down
2 changes: 1 addition & 1 deletion archlinux/redis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ main() {
fi

cat > /etc/php/conf.d/redis.ini <<-'EOF'
extension=redis.so
extension=redis
EOF


Expand Down
2 changes: 1 addition & 1 deletion archlinux/xdebug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ main() {


cat > /etc/php/conf.d/xdebug.ini <<-EOF
zend_extension=xdebug.so
zend_extension=xdebug
xdebug.idekey = xdebug
xdebug.max_nesting_level = 500
Expand Down

0 comments on commit c0d5f8d

Please sign in to comment.