Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for PHP 8 #68

Merged
merged 5 commits into from
Jan 24, 2021
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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ php:
- 7.2
- 7.3
- 7.4
- 8.0

before_install:
# turn off XDebug
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ NuSOAP is a rewrite of SOAPx4, provided by NuSphere and Dietrich Ayala. It is a

## Info

- Supported PHP: [5.4 - 7.4](https://travis-ci.org/pwnlabs/nusoap)
- Supported PHP: [5.4 - 8.0](https://travis-ci.org/pwnlabs/nusoap)
- Latest version: [0.9.10](https://github.com/pwnlabs/nusoap/releases/tag/v0.9.10)
- Dev version: [develop](https://github.com/pwnlabs/nusoap/tree/develop)
- Official project: https://sourceforge.net/projects/nusoap/
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "econea/nusoap",
"type": "library",
"description": "Fixed NuSOAP for PHP 5.4 - 7.4",
"description": "Fixed NuSOAP for PHP 5.4 - 8.0",
"keywords": ["soap","nusoap","php","http","xml","transport","client"],
"license": "LGPL-2.0-only",
"homepage": "https://github.com/pwnlabs/nusoap",
Expand All @@ -15,7 +15,7 @@
"php": ">=5.4"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "~1.0.0"
"php-parallel-lint/php-parallel-lint": "~1.2.0"
},
"autoload": {
"classmap": ["src/"]
Expand Down
2 changes: 1 addition & 1 deletion src/nusoap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2680,7 +2680,7 @@ function send($data, $timeout = 0, $response_timeout = 30, $cookies = null)
* @access public
* @deprecated
*/
function sendHTTPS($data, $timeout = 0, $response_timeout = 30, $cookies)
function sendHTTPS($data, $timeout = 0, $response_timeout = 30, $cookies = NULL)
{
return $this->send($data, $timeout, $response_timeout, $cookies);
}
Expand Down