Skip to content

Commit 4959c20

Browse files
committed
Merge branch 'release/4.1.11'
2 parents d418c3c + 46a4d6f commit 4959c20

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## 4.1.11 - 2023-10-18
4+
- issue #304, pr #305 - Override required PHP version in composer.json
5+
36
## 4.1.10 - 2023-09-11
47
- issue #298, pr #303 - Undefined constant "WsdlToPhp\PackageGenerator\Generator\SOAP_1_1"
58

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ Developers who helped on this project are listed in the [composer.json](composer
163163
- [Arnaud POINTET](https://github.com/Oipnet)
164164
- [dypa](https://github.com/dypa)
165165
- [tbreuss](https://github.com/tbreuss)
166+
- [Paul Melekhov](https://github.com/gugglegum)
166167

167168
## FAQ
168169

composer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,14 @@
8989
"role": "Contributor"
9090
},
9191
{
92-
"name": "tbreuss",
93-
"email": "thomasbreuss@gmx.ch",
92+
"name": "gugglegum",
93+
"email": "gugglegum@gmail.com",
9494
"role": "Contributor"
95+
},
96+
{
97+
"name": "tbreuss",
98+
"email": "thomasbreuss@gmx.ch",
99+
"role": "Contributor"
95100
}
96101
],
97102
"support" : {

src/File/Composer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ protected function addAutoloadToComposerJson(array &$content): Composer
9191

9292
protected function addComposerSettings(array &$content): Composer
9393
{
94-
$content = array_merge_recursive($content, $this->getGenerator()->getOptionComposerSettings());
94+
$content = array_replace_recursive($content, $this->getGenerator()->getOptionComposerSettings());
9595

9696
return $this;
9797
}

0 commit comments

Comments
 (0)