@lando/php 1.7.0 → 1.7.1
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/CHANGELOG.md +4 -0
- package/builders/php.js +2 -1
- package/netlify.toml +1 -1
- package/package.json +5 -5
- package/scripts/install-composer.sh +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
|
|
2
2
|
|
|
3
|
+
## v1.7.1 - [January 15, 2025](https://github.com/lando/php/releases/tag/v1.7.1)
|
|
4
|
+
|
|
5
|
+
* Improved the `php` service builder to mount a unique scripts directory per service to prevent version conflicts.
|
|
6
|
+
|
|
3
7
|
## v1.7.0 - [January 8, 2025](https://github.com/lando/php/releases/tag/v1.7.0)
|
|
4
8
|
|
|
5
9
|
* Added logic to allow default `composer` version to be set based on PHP version.
|
package/builders/php.js
CHANGED
|
@@ -161,6 +161,7 @@ module.exports = {
|
|
|
161
161
|
php: '/usr/local/etc/php/conf.d/zzz-lando-my-custom.ini',
|
|
162
162
|
pool: '/usr/local/etc/php-fpm.d/zz-lando.conf',
|
|
163
163
|
},
|
|
164
|
+
scriptsDir: path.resolve(__dirname, '..', 'scripts'),
|
|
164
165
|
sources: [],
|
|
165
166
|
suffix: '5',
|
|
166
167
|
ssl: false,
|
|
@@ -240,7 +241,7 @@ module.exports = {
|
|
|
240
241
|
// Install the desired composer version as the first `build_internal` build step
|
|
241
242
|
if (options.composer_version) {
|
|
242
243
|
debug('Installing composer version %s', options.composer_version);
|
|
243
|
-
const commands = [`/helpers/install-composer.sh ${options.composer_version}`];
|
|
244
|
+
const commands = [`/etc/lando/service/helpers/install-composer.sh ${options.composer_version}`];
|
|
244
245
|
const firstStep = true;
|
|
245
246
|
addBuildStep(commands, options._app, options.name, 'build_internal', firstStep);
|
|
246
247
|
}
|
package/netlify.toml
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[[context.deploy-preview.plugins]]
|
|
11
11
|
package = "netlify-plugin-checklinks"
|
|
12
12
|
[context.deploy-preview.plugins.inputs]
|
|
13
|
-
todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com", "
|
|
13
|
+
todoPatterns = [ "load", "CHANGELOG.html", "/v/", "x.com", "twitter.com", "www.php.net" ]
|
|
14
14
|
skipPatterns = [ ".rss", ".gif", ".jpg" ]
|
|
15
15
|
checkExternal = true
|
|
16
16
|
|
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.7.
|
|
4
|
+
"version": "1.7.1",
|
|
5
5
|
"author": "Mike Pirog @pirog",
|
|
6
6
|
"license": "GPL-3.0",
|
|
7
7
|
"repository": "lando/php",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
"semver"
|
|
67
67
|
],
|
|
68
68
|
"dist": {
|
|
69
|
-
"integrity": "sha512-
|
|
70
|
-
"shasum": "
|
|
71
|
-
"filename": "lando-php-1.7.
|
|
72
|
-
"unpackedSize":
|
|
69
|
+
"integrity": "sha512-GF7bMuFPLQoPPb1ODyJ2aCLbASR6PLmM9TLJy+5v+2xViS6elMJLe20D51SsFB4K8vzo4o6PIO7WboE5PRn8cg==",
|
|
70
|
+
"shasum": "3e52a825d6d81d9117e9ce6243e28a1d16c43fea",
|
|
71
|
+
"filename": "lando-php-1.7.1.tgz",
|
|
72
|
+
"unpackedSize": 3128531
|
|
73
73
|
}
|
|
74
74
|
}
|
|
File without changes
|