Skip to content
This repository was archived by the owner on Sep 8, 2021. It is now read-only.

Commit ddc2cf0

Browse files
authored
Merge pull request #39 from titomiguelcosta/master
[PHP 7.3] fixed issue with installing remi repo and added missing PHP extensions
2 parents 51051dd + b507b5e commit ddc2cf0

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ bz2.so
4343
calendar.so
4444
ctype.so
4545
curl.so
46+
dom.so
4647
exif.so
4748
fileinfo.so
4849
ftp.so
@@ -52,15 +53,26 @@ json.so
5253
mbstring.so
5354
mysqli.so
5455
mysqlnd.so
55-
pdo.so
5656
pdo_mysql.so
5757
pdo_pgsql.so
58+
pdo.so
5859
pdo_sqlite.so
5960
pgsql.so
6061
phar.so
62+
posix.so
63+
shmop.so
64+
simplexml.so
6165
sockets.so
6266
sqlite3.so
67+
sysvmsg.so
68+
sysvsem.so
69+
sysvshm.so
6370
tokenizer.so
71+
wddx.so
72+
xmlreader.so
73+
xml.so
74+
xmlwriter.so
75+
xsl.so
6476
```
6577

6678
PHP 7.1 Layer:

build-php-remi.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,16 @@ yum install -y wget
88
yum install -y yum-utils
99
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
1010
wget https://rpms.remirepo.net/enterprise/remi-release-6.rpm
11-
rpm -Uvh remi-release-6.rpm
1211
rpm -Uvh epel-release-latest-6.noarch.rpm
13-
12+
rpm -Uvh remi-release-6.rpm
1413

1514
yum-config-manager --enable remi-php7${PHP_MINOR_VERSION}
1615

1716
yum install -y httpd
1817
yum install -y postgresql-devel
1918
yum install -y libargon2-devel
2019

21-
yum install -y --disablerepo="*" --enablerepo="remi,remi-php7${PHP_MINOR_VERSION}" php php-mbstring php-pdo php-mysql php-pgsql
20+
yum install -y --disablerepo="*" --enablerepo="remi,remi-php7${PHP_MINOR_VERSION}" php php-mbstring php-pdo php-mysql php-pgsql php-xml php-process
2221

2322

2423
mkdir /tmp/layer

0 commit comments

Comments
 (0)