brianfreytag/ultipro-sdk-php-bundle

A Symfony bundle for v1 of the Ultipro SDK for PHP (Unofficial) Library

Installs: 2 526

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

v1.1.0 2023-03-23 20:44 UTC

This package is auto-updated.

Last update: 2024-04-23 22:58:20 UTC


README

Latest Stable Version Total Downloads

Provides integration for Ultipro SDK for PHP (Unofficial) for your Symfony 3.x|4.x project

Installation

Installation Using Symfony Flex

$ composer require brianfreytag/ultipro-sdk-php-bundle

This will handle all of the things.

Installation without Symfony Flex

Step 1: Download the Bundle

$ composer require brianfreytag/ultipro-sdk-php-bundle

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer Documentation.

Step 2: Enable the Bundle

To 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 = [
            // ...
            
            new Ultipro\UltiproBundle\UltiproBundle(),
        ];
        
        // ...
    }
    
    // ...
}

Usage

Configuration

ultipro_sdk:
    username: 'WebServicesUser' 
    password: 'web@services*password'
    customer_api_key: 'XY0XX'
    base_uri: 'https://service5.ultipro.com/'

Services

Coming soon

Todo

  • Update the documentation to include further usage details