SoapBundle provides functionality for PHP SoapClient to be traceable by Symfony WebProfiler. Compatible with Symfony 4+.

Add this bundle to your project as composer dependency
composer require barm/soap-bundle
Add this bundle in application kernel
// app/AppKernel.php
public function registerBundles()
{
// ...
$bundles[] = new Barm\Bundle\SoapBundle\BarmSoapBundle();
return $bundles;
}
Instead of creating SoapClient like new \SoapClient($wsdl, $optionalOptions)
you SHOULD create it via $container->get('barm_soap.factory')->create($wsdl, $optionalOptions)
which returns an instance of SoapClient.
// Old way
$oldSoapClient = new \SoapClient($wsdl);
// New way
$client = $container->get('barm_soap.factory')->create($wsdl);
# Old Way
services:
old_soap_client:
class: SoapClient
arguments: ["%wsdl_url%"]
# New Way
services:
new_soap_client:
class: SoapClient
factory: ["@barm_soap.factory", create]
arguments: ["%wsdl_url%"]
SoapBundle is licensed under the MIT License - see the LICENSE file for details
How can I help you explore Laravel packages today?