diff --git a/CHANGELOG.md b/CHANGELOG.md index bfd2685..93ecd45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,26 @@ -# CHANGELOG +# Changelog -This file is a manually maintained list of changes for each release. Feel free -to add your changes here when sending pull requests. Also send corrections if -you spot any mistakes. +## 0.2.0 (2017-10-02) + +* Feature: Added the possibility to use local WSDL files + (#11 by @floriansimon1) + + ```php + $factory = new Factory($loop); + $wsdl = file_get_contents('service.wsdl'); + $client = $factory->createClientFromWsdl($wsdl); + ``` + +* Feature: Add `Client::getLocation()` helper + (#13 by @clue) + +* Feature: Forward compatibility with clue/buzz-react v2.0 and upcoming EventLoop + (#9 by floriansimon1 and #19 and #21 by @clue) + +* Improve test suite by adding PHPUnit to require-dev and + test PHP 5.3 through PHP 7.0 and HHVM and + fix Travis build config + (#1 by @WyriHaximus and #12, #17 and #22 by @clue) ## 0.1.0 (2014-07-28) diff --git a/README.md b/README.md index fc27a90..eca4e0c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # clue/soap-react [![Build Status](https://travis-ci.org/clue/php-soap-react.svg?branch=master)](https://travis-ci.org/clue/php-soap-react) -A simple, async [SOAP](http://en.wikipedia.org/wiki/SOAP) web service client library, built on top of [React PHP](http://reactphp.org/). +Simple, async [SOAP](http://en.wikipedia.org/wiki/SOAP) web service client library, +built on top of [ReactPHP](https://reactphp.org/). Most notably, SOAP is often used for invoking [Remote procedure calls](http://en.wikipedia.org/wiki/Remote_procedure_call) (RPCs) @@ -9,7 +10,6 @@ Internally, SOAP messages are encoded as XML and usually sent via HTTP POST requ For the most part, SOAP (originally *Simple Object Access protocol*) is a protocol of the past, and in fact anything but *simple*. It is still in use by many (often *legacy*) systems. - This project provides a *simple* API for invoking *async* RPCs to remote web services. * **Async execution of functions** - @@ -47,8 +47,6 @@ This project provides a *simple* API for invoking *async* RPCs to remote web ser * [Tests](#tests) * [License](#license) -> Note: This project is in beta stage! Feel free to report any issues you encounter. - ## Quickstart example Once [installed](#install), you can use the following code to query an example @@ -210,17 +208,21 @@ $proxy->demo()->then( ## Install -The recommended way to install this library is [through composer](http://getcomposer.org). -[New to composer?](http://getcomposer.org/doc/00-intro.md) +The recommended way to install this library is [through Composer](https://getcomposer.org). +[New to Composer?](https://getcomposer.org/doc/00-intro.md) -```JSON -{ - "require": { - "clue/soap-react": "~0.1.0" - } -} +This will install the latest supported version: + +```bash +$ composer require clue/soap-react:^0.2 ``` +See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades. + +This project aims to run on any platform and thus only requires `ext-soap` and +supports running on legacy PHP 5.3 through current PHP 7+ and HHVM. +It's *highly recommended to use PHP 7+* for this project. + ## Tests To run the test suite, you first need to clone this repo and then install all diff --git a/composer.json b/composer.json index d61b3de..2c4685a 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "clue/soap-react", - "description": "Simple, async SOAP webservice client library", - "keywords": ["SOAP", "WebService", "WSDL", "React"], + "description": "Simple, async SOAP webservice client library, built on top of ReactPHP", + "keywords": ["SOAP", "SoapClient", "WebService", "WSDL", "ReactPHP"], "homepage": "https://github.com/clue/php-soap-react", "license": "MIT", "authors": [