Skip to content

Commit 47800a7

Browse files
authored
Merge pull request #151 from devilbox/release-0.103
Release v0.103
2 parents 2ae551e + d977d94 commit 47800a7

12 files changed

Lines changed: 169 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
## Unreleased
55

66

7+
## Release 0.103
8+
9+
#### Added
10+
- Add PHP [yaml](https://pecl.php.net/package/yaml) module
11+
12+
713
## Release 0.102
814

915
#### Added

Dockerfiles/mods/Dockerfile-5.3

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ RUN set -eux \
4343
libxml2-dev \
4444
libxpm-dev \
4545
libxslt-dev \
46+
libyaml-dev \
4647
snmp \
4748
zlib1g-dev \
4849
ca-certificates \
@@ -602,6 +603,17 @@ RUN set -eux \
602603
&& true
603604

604605

606+
# -------------------- Installing PHP Extension: yaml --------------------
607+
RUN set -eux \
608+
# Installation: Version specific
609+
# Type: PECL extension
610+
# Default: Pecl command
611+
&& pecl install yaml-1.3.2 \
612+
# Enabling
613+
&& docker-php-ext-enable yaml \
614+
&& true
615+
616+
605617
# -------------------- Installing PHP Extension: zip --------------------
606618
RUN set -eux \
607619
# Installation: Version specific
@@ -691,6 +703,7 @@ RUN set -eux \
691703
libvpx1 \
692704
libxpm4 \
693705
libxslt1.1 \
706+
libyaml-0-2 \
694707
snmp \
695708
ca-certificates \
696709
&& rm -rf /var/lib/apt/lists/* \
@@ -887,6 +900,8 @@ RUN set -eux \
887900
&& php-fpm -m | grep -oiE '^xmlwriter$' \
888901
&& php -m | grep -oiE '^xsl$' \
889902
&& php-fpm -m | grep -oiE '^xsl$' \
903+
&& php -m | grep -oiE '^yaml$' \
904+
&& php-fpm -m | grep -oiE '^yaml$' \
890905
&& php -m | grep -oiE '^zip$' \
891906
&& php-fpm -m | grep -oiE '^zip$' \
892907
&& true

Dockerfiles/mods/Dockerfile-5.4

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ RUN set -eux \
4343
libxml2-dev \
4444
libxpm-dev \
4545
libxslt-dev \
46+
libyaml-dev \
4647
snmp \
4748
zlib1g-dev \
4849
ca-certificates \
@@ -621,6 +622,17 @@ RUN set -eux \
621622
&& true
622623

623624

625+
# -------------------- Installing PHP Extension: yaml --------------------
626+
RUN set -eux \
627+
# Installation: Version specific
628+
# Type: PECL extension
629+
# Default: Pecl command
630+
&& pecl install yaml-1.3.2 \
631+
# Enabling
632+
&& docker-php-ext-enable yaml \
633+
&& true
634+
635+
624636
# -------------------- Installing PHP Extension: zip --------------------
625637
RUN set -eux \
626638
# Installation: Version specific
@@ -710,6 +722,7 @@ RUN set -eux \
710722
libvpx1 \
711723
libxpm4 \
712724
libxslt1.1 \
725+
libyaml-0-2 \
713726
snmp \
714727
ca-certificates \
715728
&& rm -rf /var/lib/apt/lists/* \
@@ -908,6 +921,8 @@ RUN set -eux \
908921
&& php-fpm -m | grep -oiE '^xmlwriter$' \
909922
&& php -m | grep -oiE '^xsl$' \
910923
&& php-fpm -m | grep -oiE '^xsl$' \
924+
&& php -m | grep -oiE '^yaml$' \
925+
&& php-fpm -m | grep -oiE '^yaml$' \
911926
&& php -m | grep -oiE '^zip$' \
912927
&& php-fpm -m | grep -oiE '^zip$' \
913928
&& true

Dockerfiles/mods/Dockerfile-5.5

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ RUN set -eux \
4444
libxml2-dev \
4545
libxpm-dev \
4646
libxslt-dev \
47+
libyaml-dev \
4748
snmp \
4849
zlib1g-dev \
4950
ca-certificates \
@@ -609,6 +610,17 @@ RUN set -eux \
609610
&& true
610611

611612

613+
# -------------------- Installing PHP Extension: yaml --------------------
614+
RUN set -eux \
615+
# Installation: Version specific
616+
# Type: PECL extension
617+
# Default: Pecl command
618+
&& pecl install yaml-1.3.2 \
619+
# Enabling
620+
&& docker-php-ext-enable yaml \
621+
&& true
622+
623+
612624
# -------------------- Installing PHP Extension: zip --------------------
613625
RUN set -eux \
614626
# Installation: Version specific
@@ -698,6 +710,7 @@ RUN set -eux \
698710
libvpx1 \
699711
libxpm4 \
700712
libxslt1.1 \
713+
libyaml-0-2 \
701714
snmp \
702715
ca-certificates \
703716
&& rm -rf /var/lib/apt/lists/* \
@@ -896,6 +909,8 @@ RUN set -eux \
896909
&& php-fpm -m | grep -oiE '^xmlwriter$' \
897910
&& php -m | grep -oiE '^xsl$' \
898911
&& php-fpm -m | grep -oiE '^xsl$' \
912+
&& php -m | grep -oiE '^yaml$' \
913+
&& php-fpm -m | grep -oiE '^yaml$' \
899914
&& php -m | grep -oiE '^zip$' \
900915
&& php-fpm -m | grep -oiE '^zip$' \
901916
&& true

Dockerfiles/mods/Dockerfile-5.6

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ RUN set -eux \
4747
libxml2-dev \
4848
libxpm-dev \
4949
libxslt-dev \
50+
libyaml-dev \
5051
libzip-dev \
5152
snmp \
5253
zlib1g-dev \
@@ -639,6 +640,17 @@ RUN set -eux \
639640
&& true
640641

641642

643+
# -------------------- Installing PHP Extension: yaml --------------------
644+
RUN set -eux \
645+
# Installation: Version specific
646+
# Type: PECL extension
647+
# Default: Pecl command
648+
&& pecl install yaml-1.3.2 \
649+
# Enabling
650+
&& docker-php-ext-enable yaml \
651+
&& true
652+
653+
642654
# -------------------- Installing PHP Extension: zip --------------------
643655
RUN set -eux \
644656
# Installation: Generic
@@ -729,6 +741,7 @@ RUN set -eux \
729741
libwebp6 \
730742
libxpm4 \
731743
libxslt1.1 \
744+
libyaml-0-2 \
732745
libzip4 \
733746
snmp \
734747
ca-certificates \
@@ -930,6 +943,8 @@ RUN set -eux \
930943
&& php-fpm -m | grep -oiE '^xmlwriter$' \
931944
&& php -m | grep -oiE '^xsl$' \
932945
&& php-fpm -m | grep -oiE '^xsl$' \
946+
&& php -m | grep -oiE '^yaml$' \
947+
&& php-fpm -m | grep -oiE '^yaml$' \
933948
&& php -m | grep -oiE '^zip$' \
934949
&& php-fpm -m | grep -oiE '^zip$' \
935950
&& true

Dockerfiles/mods/Dockerfile-7.0

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ RUN set -eux \
4848
libxml2-dev \
4949
libxpm-dev \
5050
libxslt-dev \
51+
libyaml-dev \
5152
libzip-dev \
5253
snmp \
5354
unixodbc-dev \
@@ -685,6 +686,17 @@ RUN set -eux \
685686
&& true
686687

687688

689+
# -------------------- Installing PHP Extension: yaml --------------------
690+
RUN set -eux \
691+
# Installation: Generic
692+
# Type: PECL extension
693+
# Default: Pecl command
694+
&& pecl install yaml \
695+
# Enabling
696+
&& docker-php-ext-enable yaml \
697+
&& true
698+
699+
688700
# -------------------- Installing PHP Extension: zip --------------------
689701
RUN set -eux \
690702
# Installation: Generic
@@ -775,6 +787,7 @@ RUN set -eux \
775787
libwebp6 \
776788
libxpm4 \
777789
libxslt1.1 \
790+
libyaml-0-2 \
778791
libzip4 \
779792
snmp \
780793
unixodbc \
@@ -981,6 +994,8 @@ RUN set -eux \
981994
&& php-fpm -m | grep -oiE '^xmlwriter$' \
982995
&& php -m | grep -oiE '^xsl$' \
983996
&& php-fpm -m | grep -oiE '^xsl$' \
997+
&& php -m | grep -oiE '^yaml$' \
998+
&& php-fpm -m | grep -oiE '^yaml$' \
984999
&& php -m | grep -oiE '^zip$' \
9851000
&& php-fpm -m | grep -oiE '^zip$' \
9861001
&& true

Dockerfiles/mods/Dockerfile-7.1

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ RUN set -eux \
4848
libxml2-dev \
4949
libxpm-dev \
5050
libxslt-dev \
51+
libyaml-dev \
5152
libzip-dev \
5253
snmp \
5354
unixodbc-dev \
@@ -694,6 +695,17 @@ RUN set -eux \
694695
&& true
695696

696697

698+
# -------------------- Installing PHP Extension: yaml --------------------
699+
RUN set -eux \
700+
# Installation: Generic
701+
# Type: PECL extension
702+
# Default: Pecl command
703+
&& pecl install yaml \
704+
# Enabling
705+
&& docker-php-ext-enable yaml \
706+
&& true
707+
708+
697709
# -------------------- Installing PHP Extension: zip --------------------
698710
RUN set -eux \
699711
# Installation: Generic
@@ -785,6 +797,7 @@ RUN set -eux \
785797
libwebp6 \
786798
libxpm4 \
787799
libxslt1.1 \
800+
libyaml-0-2 \
788801
libzip4 \
789802
snmp \
790803
unixodbc \
@@ -993,6 +1006,8 @@ RUN set -eux \
9931006
&& php-fpm -m | grep -oiE '^xmlwriter$' \
9941007
&& php -m | grep -oiE '^xsl$' \
9951008
&& php-fpm -m | grep -oiE '^xsl$' \
1009+
&& php -m | grep -oiE '^yaml$' \
1010+
&& php-fpm -m | grep -oiE '^yaml$' \
9961011
&& php -m | grep -oiE '^zip$' \
9971012
&& php-fpm -m | grep -oiE '^zip$' \
9981013
&& true

Dockerfiles/mods/Dockerfile-7.2

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ RUN set -eux \
4848
libxml2-dev \
4949
libxpm-dev \
5050
libxslt-dev \
51+
libyaml-dev \
5152
libzip-dev \
5253
snmp \
5354
unixodbc-dev \
@@ -698,6 +699,17 @@ RUN set -eux \
698699
&& true
699700

700701

702+
# -------------------- Installing PHP Extension: yaml --------------------
703+
RUN set -eux \
704+
# Installation: Generic
705+
# Type: PECL extension
706+
# Default: Pecl command
707+
&& pecl install yaml \
708+
# Enabling
709+
&& docker-php-ext-enable yaml \
710+
&& true
711+
712+
701713
# -------------------- Installing PHP Extension: zip --------------------
702714
RUN set -eux \
703715
# Installation: Generic
@@ -789,6 +801,7 @@ RUN set -eux \
789801
libwebp6 \
790802
libxpm4 \
791803
libxslt1.1 \
804+
libyaml-0-2 \
792805
libzip4 \
793806
snmp \
794807
unixodbc \
@@ -999,6 +1012,8 @@ RUN set -eux \
9991012
&& php-fpm -m | grep -oiE '^xmlwriter$' \
10001013
&& php -m | grep -oiE '^xsl$' \
10011014
&& php-fpm -m | grep -oiE '^xsl$' \
1015+
&& php -m | grep -oiE '^yaml$' \
1016+
&& php-fpm -m | grep -oiE '^yaml$' \
10021017
&& php -m | grep -oiE '^zip$' \
10031018
&& php-fpm -m | grep -oiE '^zip$' \
10041019
&& true

Dockerfiles/mods/Dockerfile-7.3

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ RUN set -eux \
4848
libxml2-dev \
4949
libxpm-dev \
5050
libxslt-dev \
51+
libyaml-dev \
5152
libzip-dev \
5253
snmp \
5354
unixodbc-dev \
@@ -698,6 +699,17 @@ RUN set -eux \
698699
&& true
699700

700701

702+
# -------------------- Installing PHP Extension: yaml --------------------
703+
RUN set -eux \
704+
# Installation: Generic
705+
# Type: PECL extension
706+
# Default: Pecl command
707+
&& pecl install yaml \
708+
# Enabling
709+
&& docker-php-ext-enable yaml \
710+
&& true
711+
712+
701713
# -------------------- Installing PHP Extension: zip --------------------
702714
RUN set -eux \
703715
# Installation: Generic
@@ -789,6 +801,7 @@ RUN set -eux \
789801
libwebp6 \
790802
libxpm4 \
791803
libxslt1.1 \
804+
libyaml-0-2 \
792805
libzip4 \
793806
snmp \
794807
unixodbc \
@@ -999,6 +1012,8 @@ RUN set -eux \
9991012
&& php-fpm -m | grep -oiE '^xmlwriter$' \
10001013
&& php -m | grep -oiE '^xsl$' \
10011014
&& php-fpm -m | grep -oiE '^xsl$' \
1015+
&& php -m | grep -oiE '^yaml$' \
1016+
&& php-fpm -m | grep -oiE '^yaml$' \
10021017
&& php -m | grep -oiE '^zip$' \
10031018
&& php-fpm -m | grep -oiE '^zip$' \
10041019
&& true

Dockerfiles/mods/Dockerfile-7.4

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ RUN set -eux \
4646
libxml2-dev \
4747
libxpm-dev \
4848
libxslt-dev \
49+
libyaml-dev \
4950
libzip-dev \
5051
snmp \
5152
zlib1g-dev \
@@ -639,6 +640,17 @@ RUN set -eux \
639640
&& true
640641

641642

643+
# -------------------- Installing PHP Extension: yaml --------------------
644+
RUN set -eux \
645+
# Installation: Generic
646+
# Type: PECL extension
647+
# Default: Pecl command
648+
&& pecl install yaml \
649+
# Enabling
650+
&& docker-php-ext-enable yaml \
651+
&& true
652+
653+
642654
# -------------------- Installing PHP Extension: zip --------------------
643655
RUN set -eux \
644656
# Installation: Version specific
@@ -730,6 +742,7 @@ RUN set -eux \
730742
libwebp6 \
731743
libxpm4 \
732744
libxslt1.1 \
745+
libyaml-0-2 \
733746
libzip4 \
734747
snmp \
735748
ca-certificates \
@@ -929,6 +942,8 @@ RUN set -eux \
929942
&& php-fpm -m | grep -oiE '^xmlwriter$' \
930943
&& php -m | grep -oiE '^xsl$' \
931944
&& php-fpm -m | grep -oiE '^xsl$' \
945+
&& php -m | grep -oiE '^yaml$' \
946+
&& php-fpm -m | grep -oiE '^yaml$' \
932947
&& php -m | grep -oiE '^zip$' \
933948
&& php-fpm -m | grep -oiE '^zip$' \
934949
&& true

0 commit comments

Comments
 (0)