Download the PHP package madmatt/id3global-service without Composer

On this page you can find all versions of the php package madmatt/id3global-service. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package id3global-service

id3global-service

Allows a PHP-powered website to communicate with the GBG ID3global API to verify identities.

Installation

If you're not already using Composer for dependency management, please consider doing so. If you'd prefer not to, you can download the latest release from the Releases section.

Usage

The WSDL file gives an overview of the values that can be provided, these will vary by country.

Please see the Full Code Example that provides a complete overview of usage of this module.

Accessing the underlying ID3global request and response

Depending on your use case, you may need to access the underlying request sent to ID3global, or the response returned by the ID3global API. Typical use cases of this are for auditing purposes - to confirm that identity information hasn't changed since the last time an identity verification was performed for example.

In order to facilitate this, the GlobalAuthenticationService class has a number of helper methods to give you access to the underlying data. All of the below code assumes that you have already called the ->verifyIdentity() method and that either you have a valid BandText, or you have caught the IdentityVerificationFailureException that may be thrown.

Debugging identity verification failures

In certain circumstances, generally when the ID3Global API produces unexpected results, you may get an IdentityVerificationFailureException returned to you. This can happen in a number of scenarios, such as required fields being missing from the request, or data being in an invalid format.

You should also wrap your ->verifyIdentity() calls within a try/catch to prevent users from seeing these exceptions.

By default, this library does not expose information in the exception message that would leak personally identifiable information, however this can be enabled if you are confident that the exception is properly handled (e.g. is being forwarded to a GDPR-compliant logging service). Sometimes this level of detail is necessary to determine why the API request failed.

You can enable logging of this information via the exception message with the following configuration:


All versions of id3global-service with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4||^8.0
ext-soap Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package madmatt/id3global-service contains the following files

Loading the files please wait ....