Skip to content

Commit

Permalink
Merge pull request #560 from veewee/any
Browse files Browse the repository at this point in the history
Add support for <any />
  • Loading branch information
veewee authored Dec 19, 2024
2 parents aba0c91 + c379e55 commit bcffb75
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/grumphp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
operating-system: ['windows-latest', 'ubuntu-latest']
operating-system: ['ubuntu-latest']
php-versions: ['8.2', '8.3', '8.4']
composer-options: ['', '--prefer-lowest']
fail-fast: false
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"azjezz/psl": "^3.0",
"laminas/laminas-code": "^4.14.0",
"php-soap/cached-engine": "~0.3",
"php-soap/engine": "^2.13.0",
"php-soap/encoding": "~0.13",
"php-soap/engine": "^2.14.0",
"php-soap/encoding": "~0.14",
"php-soap/psr18-transport": "^1.7",
"php-soap/wsdl-reader": "~0.19",
"php-soap/wsdl-reader": "~0.20",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/console": "~5.4 || ~6.0 || ~7.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Phpro/SoapClient/CodeGenerator/Util/Normalizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class Normalizer
{
private static $normalizations = [
'any' => 'mixed',
'any' => 'string',
'anytype' => 'mixed',
'anyxml' => 'string',
'anysimpletype' => 'mixed',
Expand Down

0 comments on commit bcffb75

Please sign in to comment.