brianfreytag / ultipro-sdk-php-bundle
A Symfony bundle for v1 of the Ultipro SDK for PHP (Unofficial) Library
Installs: 2 811
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.1
- brianfreytag/ultipro-sdk-php: ^1.0
- symfony/config: ~3.4|~4.0|~5.0
- symfony/dependency-injection: ~3.4|~4.0|~5.0
- symfony/http-kernel: ~3.4|~4.0|~5.0
Requires (Dev)
- phpunit/phpunit: ^8.1
- symfony/framework-bundle: ~3.4|~4.0
- symfony/yaml: ~3.4|~4.0
This package is auto-updated.
Last update: 2024-12-16 17:45:47 UTC
README
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