@lando/symfony 1.10.0 → 1.12.0

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 (97) hide show
  1. package/.lando.yml +1 -1
  2. package/CHANGELOG.md +21 -0
  3. package/LICENSE +21 -0
  4. package/README.md +7 -3
  5. package/builders/symfony-nginx.js +1 -1
  6. package/netlify.toml +9 -0
  7. package/node_modules/@lando/mariadb/.lando.yml +1 -1
  8. package/node_modules/@lando/mariadb/.node-version +1 -1
  9. package/node_modules/@lando/mariadb/CHANGELOG.md +8 -1
  10. package/node_modules/@lando/mariadb/LICENSE +21 -0
  11. package/node_modules/@lando/mariadb/README.md +5 -2
  12. package/node_modules/@lando/mariadb/builders/mariadb.js +25 -22
  13. package/node_modules/@lando/mariadb/netlify.toml +9 -2
  14. package/node_modules/@lando/mariadb/package.json +8 -8
  15. package/node_modules/@lando/memcached/.lando.yml +1 -1
  16. package/node_modules/@lando/memcached/.node-version +1 -1
  17. package/node_modules/@lando/memcached/CHANGELOG.md +17 -1
  18. package/node_modules/@lando/memcached/LICENSE +21 -0
  19. package/node_modules/@lando/memcached/README.md +5 -2
  20. package/node_modules/@lando/memcached/builders/memcached.js +5 -3
  21. package/node_modules/@lando/memcached/netlify.toml +9 -2
  22. package/node_modules/@lando/memcached/package.json +8 -8
  23. package/node_modules/@lando/mysql/.lando.yml +1 -1
  24. package/node_modules/@lando/mysql/CHANGELOG.md +10 -0
  25. package/node_modules/@lando/mysql/LICENSE +21 -0
  26. package/node_modules/@lando/mysql/README.md +5 -2
  27. package/node_modules/@lando/mysql/builders/mysql.js +9 -5
  28. package/node_modules/@lando/mysql/netlify.toml +9 -0
  29. package/node_modules/@lando/mysql/package.json +8 -8
  30. package/node_modules/@lando/php/.lando.yml +1 -1
  31. package/node_modules/@lando/php/AGENTS.md +81 -0
  32. package/node_modules/@lando/php/CHANGELOG.md +31 -0
  33. package/node_modules/@lando/php/LICENSE +21 -0
  34. package/node_modules/@lando/php/README.md +9 -3
  35. package/node_modules/@lando/php/builders/php.js +39 -12
  36. package/node_modules/@lando/php/images/5.6-apache/Dockerfile +9 -4
  37. package/node_modules/@lando/php/images/5.6-fpm/Dockerfile +9 -4
  38. package/node_modules/@lando/php/images/7.0-apache/Dockerfile +9 -4
  39. package/node_modules/@lando/php/images/7.0-fpm/Dockerfile +9 -4
  40. package/node_modules/@lando/php/images/7.1-apache/Dockerfile +1 -1
  41. package/node_modules/@lando/php/images/7.1-fpm/Dockerfile +1 -1
  42. package/node_modules/@lando/php/images/7.2-apache/Dockerfile +1 -1
  43. package/node_modules/@lando/php/images/7.2-fpm/Dockerfile +1 -1
  44. package/node_modules/@lando/php/images/7.3-apache/Dockerfile +1 -1
  45. package/node_modules/@lando/php/images/7.3-fpm/Dockerfile +1 -1
  46. package/node_modules/@lando/php/images/7.4-apache/Dockerfile +2 -2
  47. package/node_modules/@lando/php/images/7.4-fpm/Dockerfile +2 -2
  48. package/node_modules/@lando/php/images/8.0-apache/Dockerfile +2 -2
  49. package/node_modules/@lando/php/images/8.0-fpm/Dockerfile +2 -2
  50. package/node_modules/@lando/php/images/8.1-apache/Dockerfile +1 -1
  51. package/node_modules/@lando/php/images/8.1-fpm/Dockerfile +1 -1
  52. package/node_modules/@lando/php/images/8.2-apache/Dockerfile +1 -1
  53. package/node_modules/@lando/php/images/8.2-fpm/Dockerfile +1 -1
  54. package/node_modules/@lando/php/images/8.3-apache/Dockerfile +23 -22
  55. package/node_modules/@lando/php/images/8.3-fpm/Dockerfile +22 -22
  56. package/node_modules/@lando/php/images/8.4-apache/Dockerfile +21 -22
  57. package/node_modules/@lando/php/images/8.4-fpm/Dockerfile +21 -22
  58. package/node_modules/@lando/php/images/8.5-apache/Dockerfile +77 -0
  59. package/node_modules/@lando/php/images/8.5-fpm/Dockerfile +78 -0
  60. package/node_modules/@lando/php/netlify.toml +10 -1
  61. package/node_modules/@lando/php/node_modules/@lando/nginx/.lando.yml +1 -1
  62. package/node_modules/@lando/php/node_modules/@lando/nginx/.node-version +1 -1
  63. package/node_modules/@lando/php/node_modules/@lando/nginx/CHANGELOG.md +9 -1
  64. package/node_modules/@lando/php/node_modules/@lando/nginx/LICENSE +21 -0
  65. package/node_modules/@lando/php/node_modules/@lando/nginx/README.md +5 -2
  66. package/node_modules/@lando/php/node_modules/@lando/nginx/builders/nginx.js +34 -15
  67. package/node_modules/@lando/php/node_modules/@lando/nginx/netlify.toml +9 -4
  68. package/node_modules/@lando/php/node_modules/@lando/nginx/package.json +8 -8
  69. package/node_modules/@lando/php/package.json +10 -10
  70. package/node_modules/@lando/php/scripts/install-db-client.sh +31 -0
  71. package/node_modules/@lando/php/scripts/mariadb-compat-install.sh +42 -0
  72. package/node_modules/@lando/php/scripts/mysql-client-install.sh +62 -0
  73. package/node_modules/@lando/postgres/.lando.yml +1 -1
  74. package/node_modules/@lando/postgres/CHANGELOG.md +11 -0
  75. package/node_modules/@lando/postgres/LICENSE +21 -0
  76. package/node_modules/@lando/postgres/README.md +5 -2
  77. package/node_modules/@lando/postgres/builders/postgres.js +9 -9
  78. package/node_modules/@lando/postgres/netlify.toml +9 -4
  79. package/node_modules/@lando/postgres/package.json +8 -8
  80. package/package.json +11 -11
  81. package/LICENSE.md +0 -674
  82. package/PRIVACY.md +0 -169
  83. package/node_modules/@lando/mariadb/LICENSE.md +0 -674
  84. package/node_modules/@lando/mariadb/PRIVACY.md +0 -169
  85. package/node_modules/@lando/mariadb/tmpfile +0 -0
  86. package/node_modules/@lando/memcached/LICENSE.md +0 -674
  87. package/node_modules/@lando/memcached/PRIVACY.md +0 -169
  88. package/node_modules/@lando/memcached/tmpfile +0 -0
  89. package/node_modules/@lando/mysql/.tool-versions +0 -1
  90. package/node_modules/@lando/mysql/LICENSE.md +0 -674
  91. package/node_modules/@lando/mysql/PRIVACY.md +0 -169
  92. package/node_modules/@lando/php/LICENSE.md +0 -674
  93. package/node_modules/@lando/php/PRIVACY.md +0 -169
  94. package/node_modules/@lando/php/node_modules/@lando/nginx/LICENSE.md +0 -674
  95. package/node_modules/@lando/php/node_modules/@lando/nginx/PRIVACY.md +0 -169
  96. package/node_modules/@lando/postgres/LICENSE.md +0 -674
  97. package/node_modules/@lando/postgres/PRIVACY.md +0 -169
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@lando/php",
3
3
  "description": "A Lando plugin that provides a tight integration with PHP.",
4
- "version": "1.7.1",
4
+ "version": "1.11.0",
5
5
  "author": "Mike Pirog @pirog",
6
- "license": "GPL-3.0",
6
+ "license": "MIT",
7
7
  "repository": "lando/php",
8
8
  "bugs": "https://github.com/lando/php/issues/new/choose",
9
9
  "homepage": "https://github.com/lando/php",
@@ -14,7 +14,7 @@
14
14
  "php"
15
15
  ],
16
16
  "engines": {
17
- "node": ">=18.0.0"
17
+ "node": ">=20.0.0"
18
18
  },
19
19
  "lando": {},
20
20
  "main": "index.js",
@@ -43,20 +43,20 @@
43
43
  "test": "npm run lint && npm run test:unit"
44
44
  },
45
45
  "dependencies": {
46
- "@lando/nginx": "^1.4.4",
46
+ "@lando/nginx": "^1.5.0",
47
47
  "lodash": "^4.17.21",
48
48
  "semver": "^7.6.3"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@babel/eslint-parser": "^7.25.9",
52
52
  "@lando/leia": "0.6.7",
53
- "@lando/vitepress-theme-default-plus": "^1.1.0-beta.24",
53
+ "@lando/vitepress-theme-default-plus": "^1.1.1",
54
54
  "chai": "^4.3.4",
55
55
  "command-line-test": "^1.0.10",
56
56
  "eslint": "^7.32.0",
57
57
  "eslint-config-google": "^0.9.1",
58
58
  "eslint-plugin-vue": "^8.0.3",
59
- "mocha": "^9.1.2",
59
+ "mocha": "^11.1.0",
60
60
  "nyc": "^15.1.0",
61
61
  "vitepress": "^1.3.4"
62
62
  },
@@ -66,9 +66,9 @@
66
66
  "semver"
67
67
  ],
68
68
  "dist": {
69
- "integrity": "sha512-GF7bMuFPLQoPPb1ODyJ2aCLbASR6PLmM9TLJy+5v+2xViS6elMJLe20D51SsFB4K8vzo4o6PIO7WboE5PRn8cg==",
70
- "shasum": "3e52a825d6d81d9117e9ce6243e28a1d16c43fea",
71
- "filename": "lando-php-1.7.1.tgz",
72
- "unpackedSize": 3128531
69
+ "integrity": "sha512-DXgh9l91jzrUk7wGgfTLLdlHzWnILc+VNJzPqtiTLa6sx9APcbUTQO4ns4efDjto64+cyRYqiyMSGAxrEmP/TA==",
70
+ "shasum": "bbaaf72ebdb5eaf2e8f94157cbad92022356e662",
71
+ "filename": "lando-php-1.11.0.tgz",
72
+ "unpackedSize": 3058868
73
73
  }
74
74
  }
@@ -0,0 +1,31 @@
1
+ #!/bin/bash
2
+ # Install database client matching the detected database type/version
3
+ # Usage: install-db-client.sh <type>:<version>
4
+ # Examples:
5
+ # install-db-client.sh mysql:8.4
6
+ # install-db-client.sh mariadb:11.8
7
+
8
+ set -e
9
+
10
+ DB_CLIENT="${1:-}"
11
+ if [[ -z "$DB_CLIENT" ]]; then
12
+ echo "No database client specified, keeping defaults"
13
+ exit 0
14
+ fi
15
+
16
+ DB_TYPE="${DB_CLIENT%%:*}"
17
+ DB_VERSION="${DB_CLIENT##*:}"
18
+ SCRIPTS_DIR="$(dirname "$0")"
19
+
20
+ case "$DB_TYPE" in
21
+ mysql)
22
+ "$SCRIPTS_DIR/mysql-client-install.sh" "$DB_VERSION"
23
+ ;;
24
+ mariadb)
25
+ "$SCRIPTS_DIR/mariadb-compat-install.sh"
26
+ ;;
27
+ *)
28
+ echo "Unknown database type: $DB_TYPE"
29
+ exit 1
30
+ ;;
31
+ esac
@@ -0,0 +1,42 @@
1
+ #!/bin/bash
2
+ # Usage: mariadb-compat-install.sh
3
+ # Creates wrapper scripts to map deprecated mysql commands to mariadb equivalents
4
+ # The mariadb-client package is already installed in the base image
5
+
6
+ set -e
7
+
8
+ echo "Installing MariaDB compatibility wrappers..."
9
+
10
+ # Create wrapper scripts for each mysql* command that maps to mariadb* equivalent
11
+ for cmd in mysql mysqldump mysqladmin mysqlcheck mysqlimport mysqlshow; do
12
+ suffix="${cmd#mysql}"
13
+ mariadb_cmd="mariadb${suffix:+-}${suffix}"
14
+
15
+ if command -v "$mariadb_cmd" &> /dev/null; then
16
+ cat > "/usr/local/bin/$cmd" << EOF
17
+ #!/bin/bash
18
+ exec -a "\$0" $mariadb_cmd "\$@"
19
+ EOF
20
+ chmod +x "/usr/local/bin/$cmd"
21
+ echo " Created wrapper: $cmd -> $mariadb_cmd"
22
+ fi
23
+ done
24
+
25
+ # Create config directory if it doesn't exist
26
+ mkdir -p /etc/mysql/conf.d
27
+
28
+ # Create MySQL client config with compatibility settings
29
+ cat > /etc/mysql/conf.d/lando.cnf << 'MYCNF'
30
+ [client]
31
+ default-character-set=utf8mb4
32
+
33
+ [client-mariadb]
34
+ # Prevent SSL errors when connecting to servers without SSL
35
+ disable-ssl-verify-server-cert
36
+
37
+ [mysqldump]
38
+ # MySQL 8 uses this; MariaDB safely ignores it via loose- prefix
39
+ loose-skip-column-statistics
40
+ MYCNF
41
+
42
+ echo "MariaDB compatibility wrappers installed"
@@ -0,0 +1,62 @@
1
+ #!/bin/bash
2
+ # Install MySQL client from pre-downloaded binaries
3
+ # Usage: mysql-client-install.sh <version>
4
+ # Examples: mysql-client-install.sh 8.4, mysql-client-install.sh 8.0
5
+
6
+ set -e
7
+
8
+ VERSION="${1:-8.4}"
9
+
10
+ echo "Installing MySQL $VERSION client..."
11
+
12
+ # Map version to the closest available pre-downloaded version
13
+ # We have 8.0 and 8.4 available
14
+ case "$VERSION" in
15
+ 8.4*|8.3*)
16
+ CLIENT_VERSION="8.4"
17
+ ;;
18
+ 8.0*|8.1*|8.2*|5.7*)
19
+ CLIENT_VERSION="8.0"
20
+ ;;
21
+ *)
22
+ # Default to 8.4 for unknown versions
23
+ CLIENT_VERSION="8.4"
24
+ echo "Warning: Unknown MySQL version $VERSION, using $CLIENT_VERSION client"
25
+ ;;
26
+ esac
27
+
28
+ CLIENT_DIR="/usr/local/mysql-client/$CLIENT_VERSION"
29
+
30
+ if [ -d "$CLIENT_DIR" ]; then
31
+ # Remove MariaDB client symlinks if they exist in /usr/local/bin
32
+ rm -f /usr/local/bin/mysql /usr/local/bin/mysqldump /usr/local/bin/mysqladmin 2>/dev/null || true
33
+
34
+ # Create symlinks to the pre-downloaded MySQL client
35
+ ln -sf "$CLIENT_DIR/mysql" /usr/local/bin/mysql
36
+ ln -sf "$CLIENT_DIR/mysqldump" /usr/local/bin/mysqldump
37
+ ln -sf "$CLIENT_DIR/mysqladmin" /usr/local/bin/mysqladmin
38
+
39
+ echo "MySQL $CLIENT_VERSION client activated from pre-downloaded binaries"
40
+ else
41
+ echo "Warning: Pre-downloaded MySQL client not found at $CLIENT_DIR"
42
+ echo "Keeping default mariadb-client"
43
+ exit 0
44
+ fi
45
+
46
+ # Create config directory if it doesn't exist
47
+ mkdir -p /etc/mysql/conf.d
48
+
49
+ # Create MySQL client config with compatibility settings
50
+ cat > /etc/mysql/conf.d/lando.cnf << 'MYCNF'
51
+ [client]
52
+ default-character-set=utf8mb4
53
+
54
+ [mysqldump]
55
+ # Prevent column-statistics errors with newer mysqldump
56
+ skip-column-statistics
57
+ MYCNF
58
+
59
+ if ! mysql --version 2>/dev/null; then
60
+ echo "Error: MySQL client not available after activation"
61
+ exit 1
62
+ fi
@@ -5,7 +5,7 @@ proxy:
5
5
  services:
6
6
  cli:
7
7
  api: 4
8
- image: node:18
8
+ image: node:20
9
9
  command: sleep infinity
10
10
  ports:
11
11
  - 5173:5173/http
@@ -1,5 +1,16 @@
1
1
  ## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
2
2
 
3
+ ## v1.5.0 - [September 1, 2025](https://github.com/lando/postgres/releases/tag/v1.5.0)
4
+
5
+ * Switched images to [bitnamilegacy](https://github.com/bitnami/containers/issues/83267) namespace
6
+ * Updated `postgres:16` to `16.6.0`
7
+ * Updated `postgres:15` to `15.10.0`
8
+ * Updated `postgres:14` to `14.18.0`
9
+ * Updated `postgres:13` to `13.18.0`
10
+ * Updated `postgres:12` to `12.20.0`
11
+ * Updated `postgres:11` to `11.22.0`
12
+ * Updated `postgres:10` to `10.23.0`
13
+
3
14
  ## v1.4.4 - [December 7, 2024](https://github.com/lando/postgres/releases/tag/v1.4.4)
4
15
 
5
16
  * Optimized for `midcore`
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Lando Alliance
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -49,5 +49,8 @@ Made with [contributors-img](https://contrib.rocks).
49
49
 
50
50
  ## Other Selected Resources
51
51
 
52
- * [LICENSE](https://github.com/lando/postgres/blob/main/LICENSE.md)
53
- * [The best professional advice ever](https://www.youtube.com/watch?v=tkBVDh7my9Q)
52
+ * [LICENSE](/LICENSE)
53
+ * [TERMS OF USE](https://docs.lando.dev/terms)
54
+ * [PRIVACY POLICY](https://docs.lando.dev/privacy)
55
+ * [CODE OF CONDUCT](https://docs.lando.dev/coc)
56
+
@@ -13,14 +13,14 @@ module.exports = {
13
13
  version: '10',
14
14
  supported: ['16', '15', '14', '13', '12', '11', '11.1', '11.0', '10', '10.6.0', '9.6'],
15
15
  pinPairs: {
16
- '16': 'bitnami/postgresql:16.2.0-debian-12-r8',
17
- '15': 'bitnami/postgresql:15.2.0-debian-11-r26',
18
- '14': 'bitnami/postgresql:14.1.0-debian-10-r9',
19
- '13': 'bitnami/postgresql:13.5.0-debian-10-r9',
20
- '12': 'bitnami/postgresql:12.9.0-debian-10-r9',
21
- '11': 'bitnami/postgresql:11.14.0-debian-10-r9',
22
- '10': 'bitnami/postgresql:10.19.0-debian-10-r9',
23
- '9.6': 'bitnami/postgresql:9.6.24-debian-10-r9',
16
+ '16': 'bitnamilegacy/postgresql:16.6.0-debian-12-r2',
17
+ '15': 'bitnamilegacy/postgresql:15.10.0-debian-12-r2',
18
+ '14': 'bitnamilegacy/postgresql:14.18.0-debian-12-r0',
19
+ '13': 'bitnamilegacy/postgresql:13.18.0-debian-12-r2',
20
+ '12': 'bitnamilegacy/postgresql:12.20.0-debian-12-r26',
21
+ '11': 'bitnamilegacy/postgresql:11.22.0-debian-11-r4',
22
+ '10': 'bitnamilegacy/postgresql:10.23.0-debian-11-r3',
23
+ '9.6': 'bitnamilegacy/postgresql:9.6.24',
24
24
  },
25
25
  patchesSupported: true,
26
26
  confSrc: path.resolve(__dirname, '..', 'config'),
@@ -50,7 +50,7 @@ module.exports = {
50
50
  if (!options.healthcheck) options.healthcheck = require('../utils/get-default-healthcheck')(options);
51
51
 
52
52
  const postgres = {
53
- image: `bitnami/postgresql:${options.version}`,
53
+ image: `bitnamilegacy/postgresql:${options.version}`,
54
54
  command: '/launch.sh',
55
55
  environment: {
56
56
  ALLOW_EMPTY_PASSWORD: 'yes',
@@ -14,8 +14,6 @@
14
14
  skipPatterns = [ ".rss", ".gif", ".jpg" ]
15
15
  checkExternal = true
16
16
 
17
-
18
-
19
17
  # Sets our asset optimization
20
18
  [build.processing.css]
21
19
  bundle = true
@@ -41,9 +39,16 @@
41
39
  [plugins.inputs.audits]
42
40
  output_path = "reports/lighthouse.html"
43
41
 
44
-
45
-
46
42
  # We need this so preview environments and the base site look ok on their own
43
+ [[redirects]]
44
+ from = "https://lando-postgres.netlify.app"
45
+ to = "https://lando-postgres.netlify.app/plugins/postgres/index.html"
46
+ status = 301
47
+ force = true
48
+ [[redirects]]
49
+ from = "https://lando-postgres.netlify.app/*"
50
+ to = "https://docs.lando.dev/:splat"
51
+ status = 301
47
52
  [[redirects]]
48
53
  from = "/"
49
54
  to = "/plugins/postgres"
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@lando/postgres",
3
3
  "description": "A Lando plugin that provides a tight integration with Postgres.",
4
- "version": "1.4.4",
4
+ "version": "1.5.0",
5
5
  "author": "Mike Pirog @pirog",
6
- "license": "GPL-3.0",
6
+ "license": "MIT",
7
7
  "repository": "lando/postgres",
8
8
  "bugs": "https://github.com/lando/postgres/issues/new/choose",
9
9
  "homepage": "https://github.com/lando/postgres",
@@ -48,13 +48,13 @@
48
48
  "devDependencies": {
49
49
  "@babel/eslint-parser": "^7.16.0",
50
50
  "@lando/leia": "^0.6.5",
51
- "@lando/vitepress-theme-default-plus": "^1.1.0-beta.24",
51
+ "@lando/vitepress-theme-default-plus": "^1.1.1",
52
52
  "chai": "^4.3.4",
53
53
  "command-line-test": "^1.0.10",
54
54
  "eslint": "^7.32.0",
55
55
  "eslint-config-google": "^0.9.1",
56
56
  "eslint-plugin-vue": "^8.0.3",
57
- "mocha": "^9.1.2",
57
+ "mocha": "^11.1.0",
58
58
  "nyc": "^15.1.0",
59
59
  "vitepress": "^1.3.4"
60
60
  },
@@ -62,9 +62,9 @@
62
62
  "lodash"
63
63
  ],
64
64
  "dist": {
65
- "integrity": "sha512-5hV1Up+aCCMklMcUr24uKSocuqQ91/GOOywt2Qj9mfq81F85xwa7xFxWSV+OSlrmwBIkcpNeZVZNz+vk7Rjo4g==",
66
- "shasum": "d23920ab8696c91ff271c9abb823b4e23852dd80",
67
- "filename": "lando-postgres-1.4.4.tgz",
68
- "unpackedSize": 1471063
65
+ "integrity": "sha512-BRnUHp7zZgFoqw0SbtsGH1+KAtrrI+iJVjNdAQcEOpqOGykXwk/g4e+35fcc0mMiqZ41n63EEM6zmMqROPApsw==",
66
+ "shasum": "9a76c9e135ac5359d7d4c4aac8f867198738adcc",
67
+ "filename": "lando-postgres-1.5.0.tgz",
68
+ "unpackedSize": 1428384
69
69
  }
70
70
  }
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@lando/symfony",
3
3
  "description": "A Lando plugin that provides a tight integration with Symfony.",
4
- "version": "1.10.0",
4
+ "version": "1.12.0",
5
5
  "author": "Mike Pirog @pirog",
6
- "license": "GPL-3.0",
6
+ "license": "MIT",
7
7
  "repository": "lando/symfony",
8
8
  "bugs": "https://github.com/lando/symfony/issues/new/choose",
9
9
  "homepage": "https://github.com/lando/symfony",
@@ -44,12 +44,12 @@
44
44
  "test": "npm run lint && npm run test:unit"
45
45
  },
46
46
  "dependencies": {
47
- "@lando/mariadb": "^1.6.3",
48
- "@lando/memcached": "^1.3.3",
47
+ "@lando/mariadb": "^1.7.0",
48
+ "@lando/memcached": "^1.4.2",
49
49
  "@lando/mssql": "^1.4.3",
50
- "@lando/mysql": "^1.4.4",
51
- "@lando/php": "^1.7.1",
52
- "@lando/postgres": "^1.4.4",
50
+ "@lando/mysql": "^1.6.0",
51
+ "@lando/php": "^1.11.0",
52
+ "@lando/postgres": "^1.5.0",
53
53
  "@lando/redis": "^1.2.3",
54
54
  "lodash": "^4.17.21"
55
55
  },
@@ -77,9 +77,9 @@
77
77
  "lodash"
78
78
  ],
79
79
  "dist": {
80
- "integrity": "sha512-e0F8GG2kECMo9kpSqOX027srSe5TnzMwcfDqTTx5l9HHppjMyQzdH8Kkv0MxBMLE8worLGT+rItV+lCuo7KGtQ==",
81
- "shasum": "5f6473c57c5b375c7055c03f7091acb993983b79",
82
- "filename": "lando-symfony-1.10.0.tgz",
83
- "unpackedSize": 13479406
80
+ "integrity": "sha512-Ov7OWdcir8gH9A/ZGNBwnaQ4KtkqWzc391LpA9Kkq5k5Kwl4mGBXhHNF+jlVcN6GbqRSZ+UP+uSbxHBm3rkptA==",
81
+ "shasum": "24cffc84b3622c7e72d5855e30075102865a8180",
82
+ "filename": "lando-symfony-1.12.0.tgz",
83
+ "unpackedSize": 13197589
84
84
  }
85
85
  }