Skip to content

Commit 43939e0

Browse files
authored
Merge pull request #17 from php-soap/upgrade-veewee-xml-v4
Upgrade to veewee/xml v4.8
2 parents 202fa58 + 2999bc9 commit 43939e0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/code-style.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
operating-system: [ubuntu-latest]
10-
php-versions: ['8.3', '8.4', '8.5']
10+
php-versions: ['8.4', '8.5']
1111
composer-options: ['--ignore-platform-req=php+']
1212
fail-fast: false
1313
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
}
1616
],
1717
"require": {
18-
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
18+
"php": "~8.4.0 || ~8.5.0",
1919
"ext-dom": "*",
2020
"phpunit/phpunit": "~12.3",
2121
"php-soap/engine": "^2.16",
2222
"php-soap/xml": "^1.9",
2323
"php-vcr/php-vcr": "^1.6.0",
24-
"veewee/xml": "^3.0"
24+
"veewee/xml": "^4.8"
2525
},
2626
"require-dev": {
2727
"php-cs-fixer/shim": "~3.88"

src/AbstractIntegrationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Soap\EngineIntegrationTests;
66

7-
use DOMElement;
7+
use Dom\Element;
88
use PHPUnit\Framework\TestCase;
99
use Soap\Xml\Locator\SoapBodyLocator;
1010
use Soap\Xml\Xpath\EnvelopePreset;
@@ -34,7 +34,7 @@ protected function runXpathOnBody(Document $xml, string $xpath): NodeList
3434
return $results;
3535
}
3636

37-
protected function runSingleElementXpathOnBody(Document $xml, string $xpath): DOMElement
37+
protected function runSingleElementXpathOnBody(Document $xml, string $xpath): Element
3838
{
3939
$body = $xml->locate(new SoapBodyLocator());
4040

0 commit comments

Comments
 (0)