@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.
Files changed (38) hide show
  1. package/.eslintrc.json +16 -3
  2. package/.node-version +1 -1
  3. package/CHANGELOG.md +17 -1
  4. package/builders/php-nginx.js +2 -2
  5. package/builders/php.js +1 -1
  6. package/images/7.4-apache/Dockerfile +47 -56
  7. package/images/7.4-fpm/Dockerfile +60 -69
  8. package/images/8.0-apache/Dockerfile +47 -57
  9. package/images/8.0-fpm/Dockerfile +47 -57
  10. package/images/8.1-apache/Dockerfile +12 -1
  11. package/images/8.1-fpm/Dockerfile +12 -1
  12. package/images/8.2-apache/Dockerfile +12 -1
  13. package/images/8.2-fpm/Dockerfile +12 -1
  14. package/images/8.3-apache/Dockerfile +20 -1
  15. package/images/8.3-fpm/Dockerfile +21 -1
  16. package/images/8.4-apache/Dockerfile +23 -1
  17. package/images/8.4-fpm/Dockerfile +23 -1
  18. package/index.js +1 -1
  19. package/node_modules/@lando/nginx/.eslintrc.json +16 -3
  20. package/node_modules/@lando/nginx/CHANGELOG.md +12 -0
  21. package/node_modules/@lando/nginx/builders/nginx.js +1 -1
  22. package/node_modules/@lando/nginx/index.js +1 -1
  23. package/node_modules/@lando/nginx/package.json +6 -6
  24. package/package.json +6 -6
  25. package/.nyc_output/7308147a-36f4-4e04-a435-ac1413823237.json +0 -1
  26. package/.nyc_output/ebe19246-80cb-4c40-a645-62326a53591c.json +0 -1
  27. package/.nyc_output/processinfo/7308147a-36f4-4e04-a435-ac1413823237.json +0 -1
  28. package/.nyc_output/processinfo/ebe19246-80cb-4c40-a645-62326a53591c.json +0 -1
  29. package/.nyc_output/processinfo/index.json +0 -1
  30. package/coverage/base.css +0 -224
  31. package/coverage/block-navigation.js +0 -87
  32. package/coverage/favicon.png +0 -0
  33. package/coverage/index.html +0 -101
  34. package/coverage/prettify.css +0 -1
  35. package/coverage/prettify.js +0 -2
  36. package/coverage/sort-arrow-sprite.png +0 -0
  37. package/coverage/sorter.js +0 -196
  38. 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 xdebug \
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 xdebug \
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 xdebug \
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 xdebug \
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 xdebug \
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
- # && install-php-extensions xdebug \
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
- # && install-php-extensions xdebug \
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,3 +1,3 @@
1
1
  'use strict';
2
2
 
3
- module.exports = lando => {};
3
+ module.exports = () => {};
@@ -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": "google",
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": 120,
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).
@@ -91,6 +91,6 @@ module.exports = {
91
91
 
92
92
  // Send it downstream
93
93
  super(id, options, {services: _.set({}, options.name, nginx)});
94
- };
94
+ }
95
95
  },
96
96
  };
@@ -1,3 +1,3 @@
1
1
  'use strict';
2
2
 
3
- module.exports = lando => {};
3
+ module.exports = () => {};
@@ -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.1",
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.18",
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-FJG0M9Aypw1obGApQngsAwJnPxk9L9sJFdarKi6gv/bsoxKVu2YLRMV90+u4WVa/8IZyD9y6b+aFqR+Vh5bYdg==",
66
- "shasum": "bea623532a96646e05c9bac7466c78170688d1ff",
67
- "filename": "lando-nginx-1.4.1.tgz",
68
- "unpackedSize": 1480772
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.2",
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.1",
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-nguWONXcIyofnwkd3Q95Oefthu6tB/7GRh3CJZ5Svr/Ja4/QyU/ZjV5kng0kRaIdPkXFYHxm3wFUbP7MnjlA7A==",
70
- "shasum": "90cb575d6fbdb1c353af666f1bb6e7889748f61b",
71
- "filename": "lando-php-1.6.2.tgz",
72
- "unpackedSize": 3156547
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
- {"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":{}}