@wordpress/env 8.9.0 → 8.10.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/lib/init-config.js +2 -2
- package/package.json +2 -2
package/lib/init-config.js
CHANGED
|
@@ -248,8 +248,8 @@ RUN rm /tmp/composer-setup.php`;
|
|
|
248
248
|
// Make sure to do this as the user and ensure the binaries are available in the $PATH.
|
|
249
249
|
dockerFileContent += `
|
|
250
250
|
USER $HOST_UID:$HOST_GID
|
|
251
|
-
ENV PATH="\${PATH}
|
|
252
|
-
RUN composer global require --dev
|
|
251
|
+
ENV PATH="\${PATH}:/home/$HOST_USERNAME/.composer/vendor/bin"
|
|
252
|
+
RUN composer global require --dev phpunit/phpunit:"^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
|
|
253
253
|
USER root`;
|
|
254
254
|
|
|
255
255
|
return dockerFileContent;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/env",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.10.0",
|
|
4
4
|
"description": "A zero-config, self contained local WordPress environment for development and testing.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"scripts": {
|
|
52
52
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "f83bb1a71e8fa416131b81a9f282a72a1dc6c694"
|
|
55
55
|
}
|