oscar-team / experian
Library to communicate with Experian for credit check
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/oscar-team/experian
Requires
- php: ^8.1
- ext-soap: *
This package is auto-updated.
Last update: 2025-10-04 14:04:24 UTC
README
Perform credit checks on Experian for company and individual.
This is a PHP Library created to communicate with Experian System for credit checks of company and individuals.
Installation:
Use composer
package manager and run
composer require oscar-team/experian
Usage:
<?php $experianConnector = new Experian(); // this will create connection with Firma WSDL $wsdlOptions = [ // options 'location' => '', 'soap_version' => '', 'proxy_host' => '' .... ]; $data = [ 'navn' => '', ..., ]; $experianConnector->firmRegistrationByName($data, $wsdlOptions); $experianConnector->firmRegistrationByCVR($data, $wsdlOptions); //Custom method and custom function $data = [ ... ]; $experianConnector->customRequest('AKSOpen', 'TilmeldFirmaCVR', $data); // List all possible function names of a SOAP Method $experianConnector->client->getMethodNames();
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.