From 81ebc4cd91a62f9e7c9c1961cc34293258596e92 Mon Sep 17 00:00:00 2001 From: Meng Tian mac Date: Sun, 28 Mar 2021 14:37:31 +0100 Subject: [PATCH] Use meng-tian/soap-http-binding 0.3 This will require php 5.6 or higher versions. --- .github/workflows/main.yaml | 2 +- .travis.yml | 18 ------------------ README.md | 2 +- composer.json | 4 ++-- 4 files changed, 4 insertions(+), 22 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ab2d610..4f46b23 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest] - php-versions: ['5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4'] + php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4'] runs-on: ${{ matrix.operating-system }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index da295eb..0000000 --- a/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: php - -php: - - 5.5 - - 5.6 - - 7.0 - -before_install: - - composer self-update - -install: - - composer install - -script: - - php vendor/bin/phpunit --coverage-clover=coverage.xml - -after_success: - - bash <(curl -s https://codecov.io/bash) \ No newline at end of file diff --git a/README.md b/README.md index dbb6448..4b49b81 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ An asynchronous SOAP client build on top of Guzzle. The `SoapClient` implements [meng-tian/php-async-soap](https://github.com/meng-tian/php-async-soap). ## Requirement -PHP 5.5 --enablelibxml --enable-soap +PHP 5.6 --enablelibxml --enable-soap ## Install ``` diff --git a/composer.json b/composer.json index c314592..109d6b0 100644 --- a/composer.json +++ b/composer.json @@ -10,9 +10,9 @@ } ], "require": { - "php": ">=5.5.0", + "php": ">=5.6.0", "meng-tian/php-async-soap": "~1.0", - "meng-tian/soap-http-binding": "~0.2.0", + "meng-tian/soap-http-binding": "~0.3.0", "guzzlehttp/guzzle": "^6.1" }, "require-dev": {