@lando/php 1.7.0 → 1.8.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.
- package/.lando.yml +1 -1
- package/CHANGELOG.md +10 -0
- package/LICENSE +21 -0
- package/README.md +5 -2
- package/builders/php.js +2 -8
- package/netlify.toml +10 -1
- package/node_modules/@lando/nginx/.lando.yml +1 -1
- package/node_modules/@lando/nginx/.node-version +1 -1
- package/node_modules/@lando/nginx/CHANGELOG.md +9 -1
- package/node_modules/@lando/nginx/LICENSE +21 -0
- package/node_modules/@lando/nginx/README.md +5 -2
- package/node_modules/@lando/nginx/builders/nginx.js +34 -15
- package/node_modules/@lando/nginx/netlify.toml +9 -4
- package/node_modules/@lando/nginx/package.json +8 -8
- package/package.json +10 -10
- package/scripts/install-composer.sh +0 -0
- package/LICENSE.md +0 -674
- package/PRIVACY.md +0 -169
- package/node_modules/@lando/nginx/LICENSE.md +0 -674
- package/node_modules/@lando/nginx/PRIVACY.md +0 -169
package/.lando.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
|
|
2
2
|
|
|
3
|
+
## v1.8.0 - [September 2, 2025](https://github.com/lando/php/releases/tag/v1.8.0)
|
|
4
|
+
|
|
5
|
+
* Removed automatic installation of `hirak/prestissimo` for `composer:1`
|
|
6
|
+
* Switched images to [bitnamilegacy](https://github.com/bitnami/containers/issues/83267) namespace
|
|
7
|
+
* Updated to [@lando/nginx@1.5.0](https://github.com/lando/nginx/releases/tag/v1.5.0)
|
|
8
|
+
|
|
9
|
+
## v1.7.1 - [January 15, 2025](https://github.com/lando/php/releases/tag/v1.7.1)
|
|
10
|
+
|
|
11
|
+
* Improved the `php` service builder to mount a unique scripts directory per service to prevent version conflicts.
|
|
12
|
+
|
|
3
13
|
## v1.7.0 - [January 8, 2025](https://github.com/lando/php/releases/tag/v1.7.0)
|
|
4
14
|
|
|
5
15
|
* Added logic to allow default `composer` version to be set based on PHP version.
|
package/LICENSE
ADDED
|
@@ -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.
|
package/README.md
CHANGED
|
@@ -54,5 +54,8 @@ Made with [contributors-img](https://contrib.rocks).
|
|
|
54
54
|
|
|
55
55
|
## Other Selected Resources
|
|
56
56
|
|
|
57
|
-
* [LICENSE](
|
|
58
|
-
* [
|
|
57
|
+
* [LICENSE](/LICENSE)
|
|
58
|
+
* [TERMS OF USE](https://docs.lando.dev/terms)
|
|
59
|
+
* [PRIVACY POLICY](https://docs.lando.dev/privacy)
|
|
60
|
+
* [CODE OF CONDUCT](https://docs.lando.dev/coc)
|
|
61
|
+
|
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,
|
|
@@ -217,13 +218,6 @@ module.exports = {
|
|
|
217
218
|
} else if (typeof options.composer_version === 'number') {
|
|
218
219
|
options.composer_version = options.composer_version.toString();
|
|
219
220
|
}
|
|
220
|
-
const usingComposer1 = options.composer_version && semver.satisfies(options.composer_version, '1.x');
|
|
221
|
-
|
|
222
|
-
// Add prestissimo as a global package for Composer 1.x performance improvements. Requires PHP >= 5.3
|
|
223
|
-
if (usingComposer1 && phpSemver && semver.gte(phpSemver, '5.3.0')) {
|
|
224
|
-
options.composer = options.composer || {};
|
|
225
|
-
options.composer = {'hirak/prestissimo': '*', ...options.composer};
|
|
226
|
-
}
|
|
227
221
|
|
|
228
222
|
// Add build step to enable xdebug
|
|
229
223
|
if (options.xdebug) {
|
|
@@ -240,7 +234,7 @@ module.exports = {
|
|
|
240
234
|
// Install the desired composer version as the first `build_internal` build step
|
|
241
235
|
if (options.composer_version) {
|
|
242
236
|
debug('Installing composer version %s', options.composer_version);
|
|
243
|
-
const commands = [`/helpers/install-composer.sh ${options.composer_version}`];
|
|
237
|
+
const commands = [`/etc/lando/service/helpers/install-composer.sh ${options.composer_version}`];
|
|
244
238
|
const firstStep = true;
|
|
245
239
|
addBuildStep(commands, options._app, options.name, 'build_internal', firstStep);
|
|
246
240
|
}
|
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
|
|
|
@@ -40,6 +40,15 @@
|
|
|
40
40
|
output_path = "reports/lighthouse.html"
|
|
41
41
|
|
|
42
42
|
# We need this so preview environments and the base site look ok on their own
|
|
43
|
+
[[redirects]]
|
|
44
|
+
from = "https://lando-php.netlify.app"
|
|
45
|
+
to = "https://lando-php.netlify.app/plugins/php/index.html"
|
|
46
|
+
status = 301
|
|
47
|
+
force = true
|
|
48
|
+
[[redirects]]
|
|
49
|
+
from = "https://lando-php.netlify.app/*"
|
|
50
|
+
to = "https://docs.lando.dev/:splat"
|
|
51
|
+
status = 301
|
|
43
52
|
[[redirects]]
|
|
44
53
|
from = "/"
|
|
45
54
|
to = "/plugins/php"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
20
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
|
|
2
2
|
|
|
3
|
+
## v1.5.0 - [August 31, 2025](https://github.com/lando/nginx/releases/tag/v1.5.0)
|
|
4
|
+
|
|
5
|
+
* Switched images to [bitnamilegacy](https://github.com/bitnami/containers/issues/83267) namespace
|
|
6
|
+
* Added `nginx:1.29`
|
|
7
|
+
* Added `nginx:1.28`
|
|
8
|
+
* Updated `nginx:1.27` to `1.27.5`
|
|
9
|
+
|
|
3
10
|
## v1.4.4 - [December 7, 2024](https://github.com/lando/nginx/releases/tag/v1.4.4)
|
|
4
11
|
|
|
5
12
|
* Optimized for `midcore`
|
|
@@ -32,7 +39,8 @@
|
|
|
32
39
|
* Changed default version to `1.26`
|
|
33
40
|
|
|
34
41
|
## v1.1.0 - [March 8, 2024](https://github.com/lando/nginx/releases/tag/v1.1.0)
|
|
35
|
-
|
|
42
|
+
|
|
43
|
+
* Updated to latest database services.
|
|
36
44
|
|
|
37
45
|
## v1.0.0 - [December 7, 2023](https://github.com/lando/ngin/releases/tag/v1.0.0)
|
|
38
46
|
|
|
@@ -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](
|
|
53
|
-
* [
|
|
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
|
+
|
|
@@ -8,21 +8,40 @@ const path = require('path');
|
|
|
8
8
|
module.exports = {
|
|
9
9
|
name: 'nginx',
|
|
10
10
|
config: {
|
|
11
|
-
version: '1.
|
|
12
|
-
supported: [
|
|
11
|
+
version: '1.29',
|
|
12
|
+
supported: [
|
|
13
|
+
'1',
|
|
14
|
+
'1.29',
|
|
15
|
+
'1.28',
|
|
16
|
+
'1.27',
|
|
17
|
+
'1.26',
|
|
18
|
+
'1.25',
|
|
19
|
+
'1.24',
|
|
20
|
+
'1.23',
|
|
21
|
+
'1.22',
|
|
22
|
+
'1.21',
|
|
23
|
+
'1.20',
|
|
24
|
+
'1.19',
|
|
25
|
+
'1.18',
|
|
26
|
+
'1.17',
|
|
27
|
+
'1.16',
|
|
28
|
+
],
|
|
13
29
|
pinPairs: {
|
|
14
|
-
'1
|
|
15
|
-
'1.
|
|
16
|
-
'1.
|
|
17
|
-
'1.
|
|
18
|
-
'1.
|
|
19
|
-
'1.
|
|
20
|
-
'1.
|
|
21
|
-
'1.
|
|
22
|
-
'1.
|
|
23
|
-
'1.
|
|
24
|
-
'1.
|
|
25
|
-
'1.
|
|
30
|
+
'1': 'bitnamilegacy/nginx:1.29.1-debian-12-r0',
|
|
31
|
+
'1.29': 'bitnamilegacy/nginx:1.29.1-debian-12-r0',
|
|
32
|
+
'1.28': 'bitnamilegacy/nginx:1.28.0-debian-12-r4',
|
|
33
|
+
'1.27': 'bitnamilegacy/nginx:1.27.5-debian-12-r1',
|
|
34
|
+
'1.26': 'bitnamilegacy/nginx:1.26.2-debian-12-r10',
|
|
35
|
+
'1.25': 'bitnamilegacy/nginx:1.25.5-debian-12-r7',
|
|
36
|
+
'1.24': 'bitnamilegacy/nginx:1.24.0-debian-12-r25',
|
|
37
|
+
'1.23': 'bitnamilegacy/nginx:1.23.4-debian-11-r24',
|
|
38
|
+
'1.22': 'bitnamilegacy/nginx:1.22.1-debian-11-r66',
|
|
39
|
+
'1.21': 'bitnamilegacy/nginx:1.21.6-debian-11-r21',
|
|
40
|
+
'1.20': 'bitnamilegacy/nginx:1.20.2-debian-11-r9',
|
|
41
|
+
'1.19': 'bitnamilegacy/nginx:1.19.10',
|
|
42
|
+
'1.18': 'bitnamilegacy/nginx:1.18.0',
|
|
43
|
+
'1.17': 'bitnamilegacy/nginx:1.17.10',
|
|
44
|
+
'1.16': 'bitnamilegacy/nginx:1.16.1-r146',
|
|
26
45
|
},
|
|
27
46
|
patchesSupported: true,
|
|
28
47
|
confSrc: path.resolve(__dirname, '..', 'config'),
|
|
@@ -71,7 +90,7 @@ module.exports = {
|
|
|
71
90
|
|
|
72
91
|
// Build the default stuff here
|
|
73
92
|
const nginx = {
|
|
74
|
-
image: `
|
|
93
|
+
image: `bitnamilegacy/nginx:${options.version}`,
|
|
75
94
|
command: `/launch.sh ${vhosts} ${server} ${params}`,
|
|
76
95
|
environment: {
|
|
77
96
|
NGINX_HTTP_PORT_NUMBER: '80',
|
|
@@ -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-nginx.netlify.app"
|
|
45
|
+
to = "https://lando-nginx.netlify.app/plugins/nginx/index.html"
|
|
46
|
+
status = 301
|
|
47
|
+
force = true
|
|
48
|
+
[[redirects]]
|
|
49
|
+
from = "https://lando-nginx.netlify.app/*"
|
|
50
|
+
to = "https://docs.lando.dev/:splat"
|
|
51
|
+
status = 301
|
|
47
52
|
[[redirects]]
|
|
48
53
|
from = "/"
|
|
49
54
|
to = "/plugins/nginx"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lando/nginx",
|
|
3
3
|
"description": "A Lando plugin that provides a tight integration with NGINX.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.5.0",
|
|
5
5
|
"author": "Mike Pirog @pirog",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "MIT",
|
|
7
7
|
"repository": "lando/nginx",
|
|
8
8
|
"bugs": "https://github.com/lando/nginx/issues/new/choose",
|
|
9
9
|
"homepage": "https://github.com/lando/nginx",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"nginx"
|
|
15
15
|
],
|
|
16
16
|
"engines": {
|
|
17
|
-
"node": ">=
|
|
17
|
+
"node": ">=20.0.0"
|
|
18
18
|
},
|
|
19
19
|
"lando": {},
|
|
20
20
|
"main": "index.js",
|
|
@@ -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.
|
|
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",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"lodash"
|
|
63
63
|
],
|
|
64
64
|
"dist": {
|
|
65
|
-
"integrity": "sha512-
|
|
66
|
-
"shasum": "
|
|
67
|
-
"filename": "lando-nginx-1.
|
|
68
|
-
"unpackedSize":
|
|
65
|
+
"integrity": "sha512-5ucFuVSujqYHcrRYfp7h7hJoeB4hDIykCa3jCSrOzXEh9yJA5tOoIHWZ6sA5bVWMZ+fmVjJwN4ECq5bCSL4fXQ==",
|
|
66
|
+
"shasum": "4f17dd1cd473fd82fffc629a87f09b695826bf75",
|
|
67
|
+
"filename": "lando-nginx-1.5.0.tgz",
|
|
68
|
+
"unpackedSize": 1438911
|
|
69
69
|
}
|
|
70
70
|
}
|
package/package.json
CHANGED
|
@@ -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.
|
|
4
|
+
"version": "1.8.0",
|
|
5
5
|
"author": "Mike Pirog @pirog",
|
|
6
|
-
"license": "
|
|
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": ">=
|
|
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.
|
|
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.
|
|
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": "^
|
|
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-
|
|
70
|
-
"shasum": "
|
|
71
|
-
"filename": "lando-php-1.
|
|
72
|
-
"unpackedSize":
|
|
69
|
+
"integrity": "sha512-iacB+ZbgZlcZen5zwnsaHCluP9ZpE2hIKzFwQlzMWooXC39LeR5z1Kw6pt0BoC9a9dmmTVoYAMbf/vGwenuwBw==",
|
|
70
|
+
"shasum": "a63245f0e3fc8a4af8ce2f62cb383af253787ffd",
|
|
71
|
+
"filename": "lando-php-1.8.0.tgz",
|
|
72
|
+
"unpackedSize": 3042655
|
|
73
73
|
}
|
|
74
74
|
}
|
|
File without changes
|