diff options
Diffstat (limited to 'vendor/clue/soap-react/composer.json')
-rw-r--r-- | vendor/clue/soap-react/composer.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/clue/soap-react/composer.json b/vendor/clue/soap-react/composer.json new file mode 100644 index 0000000..c2a918e --- /dev/null +++ b/vendor/clue/soap-react/composer.json @@ -0,0 +1,29 @@ +{ + "name": "clue/soap-react", + "description": "Simple, async SOAP webservice client library, built on top of ReactPHP", + "keywords": ["SOAP", "SoapClient", "WebService", "WSDL", "ReactPHP"], + "homepage": "https://github.com/clue/reactphp-soap", + "license": "MIT", + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering" + } + ], + "autoload": { + "psr-4": { "Clue\\React\\Soap\\": "src/" } + }, + "autoload-dev": { + "psr-4": { "Clue\\Tests\\React\\Soap\\": "tests/" } + }, + "require": { + "php": ">=7.1", + "react/http": "^1.0", + "react/promise": "^2.1 || ^1.2", + "ext-soap": "*" + }, + "require-dev": { + "clue/block-react": "^1.0", + "phpunit/phpunit": "^9.3 || ^7.5" + } +} |