Skip to content

Commit a63dd5c

Browse files
committed
Update Changelog and fix issue with composer dependency downloading.
1 parent dcfc518 commit a63dd5c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.10.0 - [November 21, 2023](https://github.com/lando/php/releases/tag/v0.10.0)
2+
* Removed MultiViews from Apache config. [#66](https://github.com/lando/php/issues/66)
3+
* Isolated PHP to work as a standalone service. [#78](https://github.com/lando/php/pull/78)
4+
15
## v0.9.0 - [July 3, 2023](https://github.com/lando/php/releases/tag/v0.9.0)
26
* Removed bundle-dependencies and version-bump-prompt from plugin.
37
* Updated package to use prepare-release-action.

Diff for: builders/php.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ module.exports = {
170170

171171
// Add our composer things to run step
172172
if (!_.isEmpty(options.composer)) {
173-
const commands = require('../utils/get-install-commands')(['composer', 'global', 'require', '-n'], pkger);
173+
const commands = require('../utils/get-install-commands')(options.composer, pkger, ['composer', 'global', 'require', '-n']);
174174
addBuildStep(commands, options._app, options.name, 'build_internal');
175175
}
176176

0 commit comments

Comments
 (0)