diff --git a/.github/workflows/analyzers.yaml b/.github/workflows/analyzers.yaml index e74b031..3af5260 100644 --- a/.github/workflows/analyzers.yaml +++ b/.github/workflows/analyzers.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest] - php-versions: ['8.0', '8.1'] + php-versions: ['8.1', '8.2'] fail-fast: false name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} steps: diff --git a/.github/workflows/code-style.yaml b/.github/workflows/code-style.yaml index c6c3e1d..67f9f6f 100644 --- a/.github/workflows/code-style.yaml +++ b/.github/workflows/code-style.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest] - php-versions: ['8.0', '8.1'] + php-versions: ['8.1', '8.2'] fail-fast: false name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} steps: diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 87c98bf..37f4910 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest] - php-versions: ['8.0', '8.1'] + php-versions: ['8.1', '8.2'] fail-fast: false name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} steps: diff --git a/.phive/phars.xml b/.phive/phars.xml index 980defa..2c4c998 100644 --- a/.phive/phars.xml +++ b/.phive/phars.xml @@ -1,5 +1,5 @@ - - + + diff --git a/composer.json b/composer.json index eea244d..f306576 100644 --- a/composer.json +++ b/composer.json @@ -20,9 +20,9 @@ } ], "require": { - "php": "^8.0", + "php": "~8.1.0 || ~8.2.0", "ext-dom": "*", - "veewee/xml": "^1.0" + "veewee/xml": "^2.2" }, "require-dev": { "phpunit/phpunit": "^9.5" diff --git a/psalm.xml b/psalm.xml index 539e13c..41ca9f8 100644 --- a/psalm.xml +++ b/psalm.xml @@ -2,7 +2,6 @@ namespace, $this->name, - ...$this->configurators + ...$this->configurators, ) )($node); } diff --git a/src/Builder/SoapHeaders.php b/src/Builder/SoapHeaders.php index 0bce2c7..17b9f0a 100644 --- a/src/Builder/SoapHeaders.php +++ b/src/Builder/SoapHeaders.php @@ -35,7 +35,7 @@ public function __invoke(DOMNode $node): DOMNode return namespaced_element( root_namespace_uri()($document) ?? '', 'soap:Header', - ...$this->configurators + ...$this->configurators, )($node); } } diff --git a/tools/php-cs-fixer.phar b/tools/php-cs-fixer.phar index 55d1ba0..7912db6 100755 Binary files a/tools/php-cs-fixer.phar and b/tools/php-cs-fixer.phar differ diff --git a/tools/psalm.phar b/tools/psalm.phar index 0452e69..86184ee 100755 Binary files a/tools/psalm.phar and b/tools/psalm.phar differ