Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/tests81.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: test

on: push

jobs:
phpunit:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: mbstring, intl
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug
tools: php-cs-fixer, phpunit

- name: Composer dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist

- name: Run Testsuite
run: vendor/bin/phpunit tests/
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
[![documentation](https://img.shields.io/github/workflow/status/codedredd/laravel-soap/documentation?label=docs&logo=read-the-docs&style=flat-square)](https://codedredd.github.io/laravel-soap/)

## Versions
Laravel SOAP Version | Laravel Support
-------- | ------------------
1.x | 5.6, 6.x, 7x
2.x | 8.x

Laravel SOAP Version | Laravel Support | PHP Version
-------- | ------------------ | -------------
1.x | 5.6, 6.x, 7x | 7.3 - 8.0
2.x | 8.x | 7.3 - 8.0
3.x | 8.x, 9.x | 8.0 - 8.1
<a name="installation"></a>
## Installation

Expand Down
20 changes: 12 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,30 @@
}
],
"require": {
"php": ">=7.3.0",
"php": "^8.0 || 8.1",
"ext-soap": "*",
"ext-bcmath": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"illuminate/support": "^8.0",
"phpro/soap-client": "^1.4",
"illuminate/support": "^8.0 || ^9.0",
"phpro/soap-client": "^v2.1.0",
"php-http/guzzle7-adapter": "^1.0",
"php-http/discovery": "^1.7",
"php-http/message": "^1.8",
"php-http/client-common": "^2.1",
"robrichards/wse-php": "^2.0"
"robrichards/wse-php": "^2.0",
"php-soap/psr18-transport": "^1.2",
"php-soap/psr18-wsse-middleware": "^1.1",
"php-http/mock-client": "^1.5"
},
"require-dev": {
"symfony/var-dumper": "^5.0",
"symfony/options-resolver": "5.2.2 as 3.1.1",
"symfony/options-resolver": "^5.4.3",
"phpunit/phpunit": "^9.1",
"orchestra/testbench": "^6.0",
"laminas/laminas-code": "^3.4",
"wsdl2phpgenerator/wsdl2phpgenerator": "3.4.0"
"orchestra/testbench": "^6.0 || ^7.0",
"laminas/laminas-code": "^4.5.1"
},
"autoload": {
"psr-4": {
Expand Down
Loading