@lando/php 1.6.2 → 1.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +16 -3
- package/.node-version +1 -1
- package/CHANGELOG.md +17 -1
- package/builders/php-nginx.js +2 -2
- package/builders/php.js +1 -1
- package/images/7.4-apache/Dockerfile +47 -56
- package/images/7.4-fpm/Dockerfile +60 -69
- package/images/8.0-apache/Dockerfile +47 -57
- package/images/8.0-fpm/Dockerfile +47 -57
- package/images/8.1-apache/Dockerfile +12 -1
- package/images/8.1-fpm/Dockerfile +12 -1
- package/images/8.2-apache/Dockerfile +12 -1
- package/images/8.2-fpm/Dockerfile +12 -1
- package/images/8.3-apache/Dockerfile +20 -1
- package/images/8.3-fpm/Dockerfile +21 -1
- package/images/8.4-apache/Dockerfile +23 -1
- package/images/8.4-fpm/Dockerfile +23 -1
- package/index.js +1 -1
- package/node_modules/@lando/nginx/.eslintrc.json +16 -3
- package/node_modules/@lando/nginx/CHANGELOG.md +12 -0
- package/node_modules/@lando/nginx/builders/nginx.js +1 -1
- package/node_modules/@lando/nginx/index.js +1 -1
- package/node_modules/@lando/nginx/package.json +6 -6
- package/package.json +6 -6
- package/.nyc_output/7308147a-36f4-4e04-a435-ac1413823237.json +0 -1
- package/.nyc_output/ebe19246-80cb-4c40-a645-62326a53591c.json +0 -1
- package/.nyc_output/processinfo/7308147a-36f4-4e04-a435-ac1413823237.json +0 -1
- package/.nyc_output/processinfo/ebe19246-80cb-4c40-a645-62326a53591c.json +0 -1
- package/.nyc_output/processinfo/index.json +0 -1
- package/coverage/base.css +0 -224
- package/coverage/block-navigation.js +0 -87
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +0 -101
- package/coverage/prettify.css +0 -1
- package/coverage/prettify.js +0 -2
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +0 -196
- package/node_modules/@lando/nginx/tmpfile +0 -0
|
@@ -4,6 +4,12 @@ FROM php:8.1-fpm-bookworm
|
|
|
4
4
|
|
|
5
5
|
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
6
6
|
|
|
7
|
+
RUN \
|
|
8
|
+
# MariaDB client compatibility (https://github.com/lando/php/issues/120)
|
|
9
|
+
mkdir -p /etc/apt/keyrings \
|
|
10
|
+
&& curl -o /etc/apt/keyrings/mariadb-keyring.pgp 'https://mariadb.org/mariadb_release_signing_key.pgp' \
|
|
11
|
+
&& echo "deb [signed-by=/etc/apt/keyrings/mariadb-keyring.pgp] https://mirror.mariadb.org/repo/10.11/debian bookworm main" > /etc/apt/sources.list.d/mariadb.list
|
|
12
|
+
|
|
7
13
|
RUN \
|
|
8
14
|
mkdir -p /usr/share/man/man1 /usr/share/man/man7 \
|
|
9
15
|
&& apt -y update && apt-get install -y \
|
|
@@ -11,6 +17,7 @@ RUN \
|
|
|
11
17
|
exiftool \
|
|
12
18
|
git-core \
|
|
13
19
|
gnupg2 \
|
|
20
|
+
mariadb-client \
|
|
14
21
|
openssl \
|
|
15
22
|
postgresql-client-15 \
|
|
16
23
|
pv \
|
|
@@ -43,9 +50,13 @@ RUN \
|
|
|
43
50
|
&& install-php-extensions pdo_pgsql \
|
|
44
51
|
&& install-php-extensions redis \
|
|
45
52
|
&& install-php-extensions soap \
|
|
46
|
-
&& install-php-extensions
|
|
53
|
+
&& install-php-extensions xhprof \
|
|
47
54
|
&& install-php-extensions zip
|
|
48
55
|
|
|
56
|
+
# Install xdebug but disable it by default
|
|
57
|
+
RUN install-php-extensions xdebug \
|
|
58
|
+
&& rm -f /usr/local/etc/php/conf.d/*xdebug.ini
|
|
59
|
+
|
|
49
60
|
RUN install-php-extensions @composer-2
|
|
50
61
|
|
|
51
62
|
RUN \
|
|
@@ -4,6 +4,12 @@ FROM php:8.2-apache-bookworm
|
|
|
4
4
|
|
|
5
5
|
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
6
6
|
|
|
7
|
+
RUN \
|
|
8
|
+
# MariaDB client compatibility (https://github.com/lando/php/issues/120)
|
|
9
|
+
mkdir -p /etc/apt/keyrings \
|
|
10
|
+
&& curl -o /etc/apt/keyrings/mariadb-keyring.pgp 'https://mariadb.org/mariadb_release_signing_key.pgp' \
|
|
11
|
+
&& echo "deb [signed-by=/etc/apt/keyrings/mariadb-keyring.pgp] https://mirror.mariadb.org/repo/10.11/debian bookworm main" > /etc/apt/sources.list.d/mariadb.list
|
|
12
|
+
|
|
7
13
|
RUN \
|
|
8
14
|
mkdir -p /usr/share/man/man1 /usr/share/man/man7 \
|
|
9
15
|
&& apt -y update && apt-get install -y \
|
|
@@ -11,6 +17,7 @@ RUN \
|
|
|
11
17
|
exiftool \
|
|
12
18
|
git-core \
|
|
13
19
|
gnupg2 \
|
|
20
|
+
mariadb-client \
|
|
14
21
|
openssl \
|
|
15
22
|
postgresql-client-15 \
|
|
16
23
|
pv \
|
|
@@ -43,9 +50,13 @@ RUN \
|
|
|
43
50
|
&& install-php-extensions pdo_pgsql \
|
|
44
51
|
&& install-php-extensions redis \
|
|
45
52
|
&& install-php-extensions soap \
|
|
46
|
-
&& install-php-extensions
|
|
53
|
+
&& install-php-extensions xhprof \
|
|
47
54
|
&& install-php-extensions zip
|
|
48
55
|
|
|
56
|
+
# Install xdebug but disable it by default
|
|
57
|
+
RUN install-php-extensions xdebug \
|
|
58
|
+
&& rm -f /usr/local/etc/php/conf.d/*xdebug.ini
|
|
59
|
+
|
|
49
60
|
RUN install-php-extensions @composer-2
|
|
50
61
|
|
|
51
62
|
RUN \
|
|
@@ -4,6 +4,12 @@ FROM php:8.2-fpm-bookworm
|
|
|
4
4
|
|
|
5
5
|
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
6
6
|
|
|
7
|
+
RUN \
|
|
8
|
+
# MariaDB client compatibility (https://github.com/lando/php/issues/120)
|
|
9
|
+
mkdir -p /etc/apt/keyrings \
|
|
10
|
+
&& curl -o /etc/apt/keyrings/mariadb-keyring.pgp 'https://mariadb.org/mariadb_release_signing_key.pgp' \
|
|
11
|
+
&& echo "deb [signed-by=/etc/apt/keyrings/mariadb-keyring.pgp] https://mirror.mariadb.org/repo/10.11/debian bookworm main" > /etc/apt/sources.list.d/mariadb.list
|
|
12
|
+
|
|
7
13
|
RUN \
|
|
8
14
|
mkdir -p /usr/share/man/man1 /usr/share/man/man7 \
|
|
9
15
|
&& apt -y update && apt-get install -y \
|
|
@@ -11,6 +17,7 @@ RUN \
|
|
|
11
17
|
exiftool \
|
|
12
18
|
git-core \
|
|
13
19
|
gnupg2 \
|
|
20
|
+
mariadb-client \
|
|
14
21
|
openssl \
|
|
15
22
|
postgresql-client-15 \
|
|
16
23
|
pv \
|
|
@@ -43,9 +50,13 @@ RUN \
|
|
|
43
50
|
&& install-php-extensions pdo_pgsql \
|
|
44
51
|
&& install-php-extensions redis \
|
|
45
52
|
&& install-php-extensions soap \
|
|
46
|
-
&& install-php-extensions
|
|
53
|
+
&& install-php-extensions xhprof \
|
|
47
54
|
&& install-php-extensions zip
|
|
48
55
|
|
|
56
|
+
# Install xdebug but disable it by default
|
|
57
|
+
RUN install-php-extensions xdebug \
|
|
58
|
+
&& rm -f /usr/local/etc/php/conf.d/*xdebug.ini
|
|
59
|
+
|
|
49
60
|
RUN install-php-extensions @composer-2
|
|
50
61
|
|
|
51
62
|
RUN \
|
|
@@ -2,8 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
FROM php:8.3-apache-bookworm
|
|
4
4
|
|
|
5
|
+
ARG TARGETARCH
|
|
6
|
+
|
|
5
7
|
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
6
8
|
|
|
9
|
+
RUN \
|
|
10
|
+
# MariaDB client compatibility (https://github.com/lando/php/issues/120)
|
|
11
|
+
mkdir -p /etc/apt/keyrings \
|
|
12
|
+
&& curl -o /etc/apt/keyrings/mariadb-keyring.pgp 'https://mariadb.org/mariadb_release_signing_key.pgp' \
|
|
13
|
+
&& echo "deb [signed-by=/etc/apt/keyrings/mariadb-keyring.pgp] https://mirror.mariadb.org/repo/10.11/debian bookworm main" > /etc/apt/sources.list.d/mariadb.list
|
|
14
|
+
|
|
7
15
|
RUN \
|
|
8
16
|
mkdir -p /usr/share/man/man1 /usr/share/man/man7 \
|
|
9
17
|
&& apt -y update && apt-get install -y \
|
|
@@ -43,11 +51,22 @@ RUN \
|
|
|
43
51
|
&& install-php-extensions pdo_pgsql \
|
|
44
52
|
&& install-php-extensions redis \
|
|
45
53
|
&& install-php-extensions soap \
|
|
46
|
-
&& install-php-extensions
|
|
54
|
+
&& install-php-extensions xhprof \
|
|
47
55
|
&& install-php-extensions zip
|
|
48
56
|
|
|
57
|
+
# Install xdebug but disable it by default
|
|
58
|
+
RUN install-php-extensions xdebug \
|
|
59
|
+
&& rm -f /usr/local/etc/php/conf.d/*xdebug.ini
|
|
60
|
+
|
|
49
61
|
RUN install-php-extensions @composer-2
|
|
50
62
|
|
|
63
|
+
# Drupal 11 requires sqlite3 3.45+
|
|
64
|
+
ARG SQLITE_VERSION=3.45.1
|
|
65
|
+
RUN \
|
|
66
|
+
curl -Lo /tmp/sqlite3.deb "https://snapshot.debian.org/archive/debian/20240506T211830Z/pool/main/s/sqlite3/sqlite3_${SQLITE_VERSION}-1_${TARGETARCH}.deb" \
|
|
67
|
+
&& curl -Lo /tmp/libsqlite3-0.deb "https://snapshot.debian.org/archive/debian/20240506T211830Z/pool/main/s/sqlite3/libsqlite3-0_${SQLITE_VERSION}-1_${TARGETARCH}.deb" \
|
|
68
|
+
&& dpkg -i /tmp/sqlite3.deb /tmp/libsqlite3-0.deb
|
|
69
|
+
|
|
51
70
|
RUN \
|
|
52
71
|
chsh -s /bin/bash www-data && mkdir -p /var/www/.composer && chown -R www-data:www-data /var/www \
|
|
53
72
|
&& apt-get -y clean \
|
|
@@ -2,8 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
FROM php:8.3-fpm-bookworm
|
|
4
4
|
|
|
5
|
+
ARG TARGETARCH
|
|
6
|
+
|
|
5
7
|
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
6
8
|
|
|
9
|
+
RUN \
|
|
10
|
+
# MariaDB client compatibility (https://github.com/lando/php/issues/120)
|
|
11
|
+
mkdir -p /etc/apt/keyrings \
|
|
12
|
+
&& curl -o /etc/apt/keyrings/mariadb-keyring.pgp 'https://mariadb.org/mariadb_release_signing_key.pgp' \
|
|
13
|
+
&& echo "deb [signed-by=/etc/apt/keyrings/mariadb-keyring.pgp] https://mirror.mariadb.org/repo/10.11/debian bookworm main" > /etc/apt/sources.list.d/mariadb.list
|
|
14
|
+
|
|
7
15
|
RUN \
|
|
8
16
|
mkdir -p /usr/share/man/man1 /usr/share/man/man7 \
|
|
9
17
|
&& apt -y update && apt-get install -y \
|
|
@@ -11,6 +19,7 @@ RUN \
|
|
|
11
19
|
exiftool \
|
|
12
20
|
git-core \
|
|
13
21
|
gnupg2 \
|
|
22
|
+
mariadb-client \
|
|
14
23
|
openssl \
|
|
15
24
|
postgresql-client-15 \
|
|
16
25
|
pv \
|
|
@@ -43,11 +52,22 @@ RUN \
|
|
|
43
52
|
&& install-php-extensions pdo_pgsql \
|
|
44
53
|
&& install-php-extensions redis \
|
|
45
54
|
&& install-php-extensions soap \
|
|
46
|
-
&& install-php-extensions
|
|
55
|
+
&& install-php-extensions xhprof \
|
|
47
56
|
&& install-php-extensions zip
|
|
48
57
|
|
|
58
|
+
# Install xdebug but disable it by default
|
|
59
|
+
RUN install-php-extensions xdebug \
|
|
60
|
+
&& rm -f /usr/local/etc/php/conf.d/*xdebug.ini
|
|
61
|
+
|
|
49
62
|
RUN install-php-extensions @composer-2
|
|
50
63
|
|
|
64
|
+
# Drupal 11 requires sqlite3 3.45+
|
|
65
|
+
ARG SQLITE_VERSION=3.45.1
|
|
66
|
+
RUN \
|
|
67
|
+
curl -Lo /tmp/sqlite3.deb "https://snapshot.debian.org/archive/debian/20240506T211830Z/pool/main/s/sqlite3/sqlite3_${SQLITE_VERSION}-1_${TARGETARCH}.deb" \
|
|
68
|
+
&& curl -Lo /tmp/libsqlite3-0.deb "https://snapshot.debian.org/archive/debian/20240506T211830Z/pool/main/s/sqlite3/libsqlite3-0_${SQLITE_VERSION}-1_${TARGETARCH}.deb" \
|
|
69
|
+
&& dpkg -i /tmp/sqlite3.deb /tmp/libsqlite3-0.deb
|
|
70
|
+
|
|
51
71
|
RUN \
|
|
52
72
|
chsh -s /bin/bash www-data && mkdir -p /var/www/.composer && chown -R www-data:www-data /var/www \
|
|
53
73
|
&& apt-get -y clean \
|
|
@@ -2,8 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
FROM php:8.4-apache-bookworm
|
|
4
4
|
|
|
5
|
+
ARG TARGETARCH
|
|
6
|
+
|
|
5
7
|
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
6
8
|
|
|
9
|
+
RUN \
|
|
10
|
+
# MariaDB client compatibility (https://github.com/lando/php/issues/120)
|
|
11
|
+
mkdir -p /etc/apt/keyrings \
|
|
12
|
+
&& curl -o /etc/apt/keyrings/mariadb-keyring.pgp 'https://mariadb.org/mariadb_release_signing_key.pgp' \
|
|
13
|
+
&& echo "deb [signed-by=/etc/apt/keyrings/mariadb-keyring.pgp] https://mirror.mariadb.org/repo/11.4/debian bookworm main" > /etc/apt/sources.list.d/mariadb.list
|
|
14
|
+
|
|
7
15
|
RUN \
|
|
8
16
|
mkdir -p /usr/share/man/man1 /usr/share/man/man7 \
|
|
9
17
|
&& apt -y update && apt-get install -y \
|
|
@@ -11,6 +19,8 @@ RUN \
|
|
|
11
19
|
exiftool \
|
|
12
20
|
git-core \
|
|
13
21
|
gnupg2 \
|
|
22
|
+
mariadb-client \
|
|
23
|
+
mariadb-client-compat \
|
|
14
24
|
openssl \
|
|
15
25
|
postgresql-client-15 \
|
|
16
26
|
pv \
|
|
@@ -28,6 +38,7 @@ RUN \
|
|
|
28
38
|
&& install-php-extensions exif \
|
|
29
39
|
&& install-php-extensions gd \
|
|
30
40
|
&& install-php-extensions gettext \
|
|
41
|
+
&& install-php-extensions imagick \
|
|
31
42
|
&& install-php-extensions imap \
|
|
32
43
|
&& install-php-extensions intl \
|
|
33
44
|
&& install-php-extensions ldap \
|
|
@@ -42,11 +53,22 @@ RUN \
|
|
|
42
53
|
&& install-php-extensions pdo_pgsql \
|
|
43
54
|
&& install-php-extensions redis \
|
|
44
55
|
&& install-php-extensions soap \
|
|
45
|
-
|
|
56
|
+
&& install-php-extensions xhprof \
|
|
46
57
|
&& install-php-extensions zip
|
|
47
58
|
|
|
59
|
+
# Install xdebug but disable it by default
|
|
60
|
+
RUN install-php-extensions xdebug \
|
|
61
|
+
&& rm -f /usr/local/etc/php/conf.d/*xdebug.ini
|
|
62
|
+
|
|
48
63
|
RUN install-php-extensions @composer-2
|
|
49
64
|
|
|
65
|
+
# Drupal 11 requires sqlite3 3.45+
|
|
66
|
+
ARG SQLITE_VERSION=3.45.1
|
|
67
|
+
RUN \
|
|
68
|
+
curl -Lo /tmp/sqlite3.deb "https://snapshot.debian.org/archive/debian/20240506T211830Z/pool/main/s/sqlite3/sqlite3_${SQLITE_VERSION}-1_${TARGETARCH}.deb" \
|
|
69
|
+
&& curl -Lo /tmp/libsqlite3-0.deb "https://snapshot.debian.org/archive/debian/20240506T211830Z/pool/main/s/sqlite3/libsqlite3-0_${SQLITE_VERSION}-1_${TARGETARCH}.deb" \
|
|
70
|
+
&& dpkg -i /tmp/sqlite3.deb /tmp/libsqlite3-0.deb
|
|
71
|
+
|
|
50
72
|
RUN \
|
|
51
73
|
chsh -s /bin/bash www-data && mkdir -p /var/www/.composer && chown -R www-data:www-data /var/www \
|
|
52
74
|
&& apt-get -y clean \
|
|
@@ -2,8 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
FROM php:8.4-fpm-bookworm
|
|
4
4
|
|
|
5
|
+
ARG TARGETARCH
|
|
6
|
+
|
|
5
7
|
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
|
|
6
8
|
|
|
9
|
+
RUN \
|
|
10
|
+
# MariaDB client compatibility (https://github.com/lando/php/issues/120)
|
|
11
|
+
mkdir -p /etc/apt/keyrings \
|
|
12
|
+
&& curl -o /etc/apt/keyrings/mariadb-keyring.pgp 'https://mariadb.org/mariadb_release_signing_key.pgp' \
|
|
13
|
+
&& echo "deb [signed-by=/etc/apt/keyrings/mariadb-keyring.pgp] https://mirror.mariadb.org/repo/11.4/debian bookworm main" > /etc/apt/sources.list.d/mariadb.list
|
|
14
|
+
|
|
7
15
|
RUN \
|
|
8
16
|
mkdir -p /usr/share/man/man1 /usr/share/man/man7 \
|
|
9
17
|
&& apt -y update && apt-get install -y \
|
|
@@ -12,6 +20,8 @@ RUN \
|
|
|
12
20
|
exiftool \
|
|
13
21
|
git-core \
|
|
14
22
|
gnupg2 \
|
|
23
|
+
mariadb-client \
|
|
24
|
+
mariadb-client-compat \
|
|
15
25
|
openssl \
|
|
16
26
|
postgresql-client-15 \
|
|
17
27
|
pv \
|
|
@@ -29,6 +39,7 @@ RUN \
|
|
|
29
39
|
&& install-php-extensions exif \
|
|
30
40
|
&& install-php-extensions gd \
|
|
31
41
|
&& install-php-extensions gettext \
|
|
42
|
+
&& install-php-extensions imagick \
|
|
32
43
|
&& install-php-extensions imap \
|
|
33
44
|
&& install-php-extensions intl \
|
|
34
45
|
&& install-php-extensions ldap \
|
|
@@ -43,11 +54,22 @@ RUN \
|
|
|
43
54
|
&& install-php-extensions pdo_pgsql \
|
|
44
55
|
&& install-php-extensions redis \
|
|
45
56
|
&& install-php-extensions soap \
|
|
46
|
-
|
|
57
|
+
&& install-php-extensions xhprof \
|
|
47
58
|
&& install-php-extensions zip
|
|
48
59
|
|
|
60
|
+
# Install xdebug but disable it by default
|
|
61
|
+
RUN install-php-extensions xdebug \
|
|
62
|
+
&& rm -f /usr/local/etc/php/conf.d/*xdebug.ini
|
|
63
|
+
|
|
49
64
|
RUN install-php-extensions @composer-2
|
|
50
65
|
|
|
66
|
+
# Drupal 11 requires sqlite3 3.45+
|
|
67
|
+
ARG SQLITE_VERSION=3.45.1
|
|
68
|
+
RUN \
|
|
69
|
+
curl -Lo /tmp/sqlite3.deb "https://snapshot.debian.org/archive/debian/20240506T211830Z/pool/main/s/sqlite3/sqlite3_${SQLITE_VERSION}-1_${TARGETARCH}.deb" \
|
|
70
|
+
&& curl -Lo /tmp/libsqlite3-0.deb "https://snapshot.debian.org/archive/debian/20240506T211830Z/pool/main/s/sqlite3/libsqlite3-0_${SQLITE_VERSION}-1_${TARGETARCH}.deb" \
|
|
71
|
+
&& dpkg -i /tmp/sqlite3.deb /tmp/libsqlite3-0.deb
|
|
72
|
+
|
|
51
73
|
RUN \
|
|
52
74
|
chsh -s /bin/bash www-data && mkdir -p /var/www/.composer && chown -R www-data:www-data /var/www \
|
|
53
75
|
&& apt-get -y clean \
|
package/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"env": {
|
|
3
3
|
"node": true,
|
|
4
|
-
"mocha": true
|
|
4
|
+
"mocha": true,
|
|
5
|
+
"es2021": true
|
|
5
6
|
},
|
|
6
7
|
"parser": "@babel/eslint-parser",
|
|
7
8
|
"parserOptions": {
|
|
@@ -9,15 +10,27 @@
|
|
|
9
10
|
"ecmaVersion": 8,
|
|
10
11
|
"requireConfigFile": false
|
|
11
12
|
},
|
|
12
|
-
"extends":
|
|
13
|
+
"extends": [
|
|
14
|
+
"eslint:recommended",
|
|
15
|
+
"google"
|
|
16
|
+
],
|
|
13
17
|
"rules": {
|
|
14
18
|
"arrow-parens": ["error",
|
|
15
19
|
"as-needed"
|
|
16
20
|
],
|
|
17
21
|
"max-len": ["error", {
|
|
18
|
-
"code":
|
|
22
|
+
"code": 140,
|
|
19
23
|
"ignoreComments": true
|
|
20
24
|
}],
|
|
25
|
+
"no-empty": ["error", {
|
|
26
|
+
"allowEmptyCatch": true
|
|
27
|
+
}],
|
|
28
|
+
"no-unused-vars": ["error", {
|
|
29
|
+
"vars": "all",
|
|
30
|
+
"args": "after-used",
|
|
31
|
+
"ignoreRestSiblings": false
|
|
32
|
+
}],
|
|
33
|
+
|
|
21
34
|
"require-jsdoc": ["error", {
|
|
22
35
|
"require": {
|
|
23
36
|
"FunctionDeclaration": true,
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
|
|
2
2
|
|
|
3
|
+
## v1.4.4 - [December 7, 2024](https://github.com/lando/nginx/releases/tag/v1.4.4)
|
|
4
|
+
|
|
5
|
+
* Optimized for `midcore`
|
|
6
|
+
|
|
7
|
+
## v1.4.3 - [December 6, 2024](https://github.com/lando/nginx/releases/tag/v1.4.3)
|
|
8
|
+
|
|
9
|
+
* Updated the version index.md to get Docuverse page to build correctly.
|
|
10
|
+
|
|
11
|
+
## v1.4.2 - [December 4, 2024](https://github.com/lando/nginx/releases/tag/v1.4.2)
|
|
12
|
+
|
|
13
|
+
* Updated to [@lando/vitepress-theme-default-plus@v1.1.0-beta.24](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.1.0-beta.24).
|
|
14
|
+
|
|
3
15
|
## v1.4.1 - [November 4, 2024](https://github.com/lando/nginx/releases/tag/v1.4.1)
|
|
4
16
|
|
|
5
17
|
* Updated to [@lando/vitepress-theme-default-plus@v1.1.0-beta.18](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.1.0-beta.18).
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lando/nginx",
|
|
3
3
|
"description": "A Lando plugin that provides a tight integration with NGINX.",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.4",
|
|
5
5
|
"author": "Mike Pirog @pirog",
|
|
6
6
|
"license": "GPL-3.0",
|
|
7
7
|
"repository": "lando/nginx",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@babel/eslint-parser": "^7.16.0",
|
|
50
50
|
"@lando/leia": "^1.0.0-beta.3",
|
|
51
|
-
"@lando/vitepress-theme-default-plus": "^1.1.0-beta.
|
|
51
|
+
"@lando/vitepress-theme-default-plus": "^1.1.0-beta.24",
|
|
52
52
|
"chai": "^4.3.4",
|
|
53
53
|
"command-line-test": "^1.0.10",
|
|
54
54
|
"eslint": "^7.32.0",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"lodash"
|
|
63
63
|
],
|
|
64
64
|
"dist": {
|
|
65
|
-
"integrity": "sha512-
|
|
66
|
-
"shasum": "
|
|
67
|
-
"filename": "lando-nginx-1.4.
|
|
68
|
-
"unpackedSize":
|
|
65
|
+
"integrity": "sha512-mW8wzVbKHLNsQhsWyuxx4pwxgB26hRe6gAe82VzrgBpYCyNqyR2WbkvoTXM1jlllyUQaHB3V8FtZLxNREKWy3g==",
|
|
66
|
+
"shasum": "379bada9fb0b1bddfa323b6f574beed862457236",
|
|
67
|
+
"filename": "lando-nginx-1.4.4.tgz",
|
|
68
|
+
"unpackedSize": 1481520
|
|
69
69
|
}
|
|
70
70
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lando/php",
|
|
3
3
|
"description": "A Lando plugin that provides a tight integration with PHP.",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.4",
|
|
5
5
|
"author": "Mike Pirog @pirog",
|
|
6
6
|
"license": "GPL-3.0",
|
|
7
7
|
"repository": "lando/php",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"test": "npm run lint && npm run test:unit"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@lando/nginx": "^1.4.
|
|
46
|
+
"@lando/nginx": "^1.4.4",
|
|
47
47
|
"lodash": "^4.17.21",
|
|
48
48
|
"semver": "^7.6.3"
|
|
49
49
|
},
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
"semver"
|
|
67
67
|
],
|
|
68
68
|
"dist": {
|
|
69
|
-
"integrity": "sha512-
|
|
70
|
-
"shasum": "
|
|
71
|
-
"filename": "lando-php-1.6.
|
|
72
|
-
"unpackedSize":
|
|
69
|
+
"integrity": "sha512-5WhDKDmSxTN7C2vMR/qzw8c0HpekQDz0Q9+JngTf9DQySz8g4PLuoGdPeBBxKWWvZR++vMOFYHBlO1da6Q7XJA==",
|
|
70
|
+
"shasum": "16cef0ada1a9a4694a08b0c193db05e6d762cdde",
|
|
71
|
+
"filename": "lando-php-1.6.4.tgz",
|
|
72
|
+
"unpackedSize": 3125868
|
|
73
73
|
}
|
|
74
74
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"parent":null,"pid":1995,"argv":["/opt/hostedtoolcache/node/20.18.1/x64/bin/node","/home/runner/work/php/php/node_modules/.bin/nyc","--reporter=html","--reporter=text","mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/php/php","time":1733514128209,"ppid":1994,"coverageFilename":"/home/runner/work/php/php/.nyc_output/7308147a-36f4-4e04-a435-ac1413823237.json","externalId":"","uuid":"7308147a-36f4-4e04-a435-ac1413823237","files":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"parent":null,"pid":2006,"argv":["/opt/hostedtoolcache/node/20.18.1/x64/bin/node","/home/runner/work/php/php/node_modules/.bin/mocha","--timeout","5000","test/**/*.spec.js"],"execArgv":[],"cwd":"/home/runner/work/php/php","time":1733514128372,"ppid":1995,"coverageFilename":"/home/runner/work/php/php/.nyc_output/ebe19246-80cb-4c40-a645-62326a53591c.json","externalId":"","uuid":"ebe19246-80cb-4c40-a645-62326a53591c","files":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"processes":{"7308147a-36f4-4e04-a435-ac1413823237":{"parent":null,"children":[]},"ebe19246-80cb-4c40-a645-62326a53591c":{"parent":null,"children":[]}},"files":{},"externalIds":{}}
|