Skip to content

Commit

Permalink
Add support for <any />
Browse files Browse the repository at this point in the history
  • Loading branch information
veewee committed Dec 19, 2024
1 parent 222a282 commit e22792c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/grumphp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
- name: Run the tests
run: php vendor/bin/grumphp run --no-interaction
run: php vendor/bin/grumphp run --no-interaction -vvv
8 changes: 4 additions & 4 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 All @@ -35,7 +35,7 @@
"phpro/grumphp-shim": "^2.9",
"phpspec/phpspec": "~7.2",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpstan/phpstan": "^1.12.7",
"phpstan/phpstan": "1.12.10",
"phpunit/phpunit": "~10.5.37",
"squizlabs/php_codesniffer": "^3.7.1",
"symfony/cache": "^6.4 || ^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 e22792c

Please sign in to comment.