hautelook / ups-api-bundle
Symfony2 Bundle that provides access to the UPS Api
Installs: 158
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 18
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.0
- gabrielbull/ups-api: ~0.2
- symfony/framework-bundle: ~2.1
Requires (Dev)
- symfony/browser-kit: ~2.1
- symfony/validator: ~2.1
- symfony/yaml: ~2.1
This package is not auto-updated.
Last update: 2022-01-18 03:56:53 UTC
README
A Symfony2 bundle to integrate with the UPS Api. This uses the UPS-API library. This is in active development right now.
Introduction
To use this bundle you need to sign up on the UPS developers website for a new UPS Api Key
Installation
Simply run assuming you have installed composer.phar or composer binary (or add to your composer.json
and run composer
install:
$ composer require hautelook/ups-api-bundle
You can follow dev-master
, or use a more stable tag (recommended for various reasons). On the
Github repository, or on Packagist, you can
always find the latest tag.
Now add the Bundle to your Kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Hautelook\UPSApiBundle\HautelookUPSApiBundle(), // ... ); }
Configuration
You can configure the bundle like so:
# app/config/config.yml hautelook_ups_api: # Add configuration here
Usage
Add usage information...