raindrop / soap-bundle
Symfony Raindrop SoapBundle
Installs: 40
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 4
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- nusphere/nusoap: 0.1.0
- symfony/framework-bundle: 2.1.*
- symfony/monolog-bundle: >=2.1,<3
This package is not auto-updated.
Last update: 2024-11-04 14:36:48 UTC
README
This bundle adds support for SOAP and WSDL based web services.
INSTALLATION:
First add the dependency to your composer.json` file:
"require": {
...
"raindrop/soap-bundle": "dev-master"
},
Then install the bundle with the command:
php composer.phar update
Enable the bundle in your application kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Raindrop\SoapBundle\RaindropSoapBundle(), ); }
Now the bundle is enabled.