Skip to content

Commit

Permalink
Support PHP8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Bion authored and f3l1x committed Dec 11, 2022
1 parent e962aec commit c177861
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
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 - 8.1](https://travis-ci.org/pwnlabs/nusoap)
- Supported PHP: [5.4 - 8.2](https://travis-ci.org/pwnlabs/nusoap)
- Latest version: [0.9.11](https://github.com/pwnlabs/nusoap/releases/tag/v0.9.11)
- Dev version: [develop](https://github.com/pwnlabs/nusoap/tree/develop)
- Official project: https://sourceforge.net/projects/nusoap/
Expand Down
2 changes: 1 addition & 1 deletion 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 - 8.1",
"description": "Fixed NuSOAP for PHP 5.4 - 8.2",
"keywords": ["soap","nusoap","php","http","xml","transport","client"],
"license": "LGPL-2.0-only",
"homepage": "https://github.com/pwnlabs/nusoap",
Expand Down
8 changes: 8 additions & 0 deletions src/nusoap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2229,6 +2229,8 @@ function decode()
class soap_transport_http extends nusoap_base
{

var $query = '';
var $tryagain = false;
var $url = '';
var $uri = '';
var $digest_uri = '';
Expand Down Expand Up @@ -6729,6 +6731,8 @@ function addOperation($name, $in = false, $out = false, $namespace = false, $soa
class nusoap_parser extends nusoap_base
{

var $parser = null;
var $methodNamespace = '';
var $xml = '';
var $xml_encoding = '';
var $method = '';
Expand Down Expand Up @@ -7474,6 +7478,10 @@ class soap_parser extends nusoap_parser
class nusoap_client extends nusoap_base
{

var $attachments = '';
var $return = null;
var $operation = '';
var $opData = array();
var $username = ''; // Username for HTTP authentication
var $password = ''; // Password for HTTP authentication
var $authtype = ''; // Type of HTTP authentication
Expand Down

0 comments on commit c177861

Please sign in to comment.