noiselabs / nusoap-bundle
Symfony2 bundle for NuSOAP - SOAP Toolkit for PHP
Installs: 515 363
Dependents: 0
Suggesters: 0
Security: 0
Stars: 21
Watchers: 6
Forks: 20
Open Issues: 4
Type:symfony-bundle
Requires
- php: >=5.3.3
- fergusean/nusoap: 0.9.5
- symfony/framework-bundle: ^2.0 || ^3.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2024-10-11 14:01:17 UTC
README
Symfony2 bundle for NuSOAP - SOAP Toolkit for PHP.
Requirements
Installation (Composer)
0. Install Composer
If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:
curl -s http://getcomposer.org/installer | php
1. Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require noiselabs/nusoap-bundle
2. Enable the Bundle
Then, enable the bundle by adding the following line in the app/AppKernel.php file of your project:
// app/AppKernel.php class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new NoiseLabs\Bundle\NuSOAPBundle\NoiseLabsNuSOAPBundle(), ); // ... } }
Usage
$client = new \nusoap_client('http://example.com/url/to/some/valid.wsdl', true); $response = $client->call('someSOAPMethod', array('param1'=>'foo', 'param2'=>'bar'));