Skip to content

Commit

Permalink
Merge pull request #28 from veewee/php84
Browse files Browse the repository at this point in the history
Bump dependencies
  • Loading branch information
veewee authored Oct 25, 2024
2 parents 3deec36 + 464e120 commit 6e95c7e
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 16 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/analyzers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['8.1', '8.2', '8.3']
php-versions: [ '8.2', '8.3' ]
composer-options: [ '--ignore-platform-req=php+' ]
fail-fast: false
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/code-style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['8.1', '8.2', '8.3']
php-versions: [ '8.2', '8.3', '8.4' ]
composer-options: [ '--ignore-platform-req=php+' ]
fail-fast: false
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }}
steps:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['8.1', '8.2', '8.3']
php-versions: [ '8.2', '8.3', '8.4' ]
composer-options: [ '--ignore-platform-req=php+' ]
dependency-preference: ['current', 'lowest', 'stable']
fail-fast: false
name: PHP ${{ matrix.php-versions }} ${{ matrix.dependency-preference }} deps @ ${{ matrix.operating-system }}
Expand All @@ -21,6 +22,6 @@ jobs:
tools: 'composer:v2'
extensions: pcov, mbstring, posix, dom, soap
- name: Install dependencies
run: composer update --prefer-dist --no-progress --no-suggest ${{ matrix.dependency-preference == 'lowest' && '--prefer-lowest' || '' }} ${{ matrix.dependency-preference == 'stable' && '--prefer-stable' || '' }}
run: composer update --prefer-dist --no-progress --no-suggest ${{ matrix.dependency-preference == 'lowest' && '--prefer-lowest' || '' }} ${{ matrix.dependency-preference == 'stable' && '--prefer-stable' || '' }} ${{ matrix.composer-options }}
- name: Run the tests
run: ./vendor/bin/phpunit
2 changes: 1 addition & 1 deletion .phive/phars.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<phive xmlns="https://phar.io/phive">
<phar name="php-cs-fixer" version="^3.58.1" installed="3.58.1" location="./tools/php-cs-fixer.phar" copy="true"/>
<phar name="php-cs-fixer" version="^3.13.0" installed="3.64.0" location="./tools/php-cs-fixer.phar" copy="true"/>
</phive>
1 change: 1 addition & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,6 @@
'strict_comparison' => true,
'strict_param' => true,
'native_function_invocation' => true,
'nullable_type_declaration_for_default_null_value' => true,
])
;
22 changes: 11 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"azjezz/psl": "^2.9.0",
"veewee/reflecta": "~0.6",
"veewee/xml": "^3.1",
"php-soap/engine": "^2.9",
"php-soap/wsdl": "^1.6",
"php-soap/xml": "^1.7",
"php-soap/wsdl-reader": "~0.15"
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"azjezz/psl": "^3.0",
"veewee/reflecta": "~0.10",
"veewee/xml": "^3.3",
"php-soap/engine": "^2.13",
"php-soap/wsdl": "^1.12",
"php-soap/xml": "^1.8",
"php-soap/wsdl-reader": "~0.18"
},
"require-dev": {
"vimeo/psalm": "^5.16",
"vimeo/psalm": "^5.26",
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "^7.0 || ^6.4",
"php-standard-library/psalm-plugin": "^2.3",
"php-soap/engine-integration-tests": "^1.8.1",
"php-soap/psr18-transport": "^1.6",
"php-soap/engine-integration-tests": "^1.9",
"php-soap/psr18-transport": "^1.7",
"guzzlehttp/guzzle": "^7.8"
},
"config": {
Expand Down
1 change: 1 addition & 0 deletions src/Exception/RestrictionException.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use Soap\Encoding\Formatter\QNameFormatter;
use Soap\Engine\Metadata\Model\XsdType;
use function is_scalar;
use function sprintf;

final class RestrictionException extends InvalidArgumentException implements ExceptionInterface
{
Expand Down
1 change: 1 addition & 0 deletions src/TypeInference/XsiTypeDetector.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
use function is_string;
use function Psl\Option\none;
use function Psl\Option\some;
use function sprintf;

final class XsiTypeDetector
{
Expand Down
Binary file modified tools/php-cs-fixer.phar
Binary file not shown.

0 comments on commit 6e95c7e

Please sign in to comment.