| Package Data | |
|---|---|
| Maintainer Username: | trexology |
| Maintainer Contact: | trexlim@gmail.com (Trex Lim) |
| Package Create Date: | 2016-04-01 |
| Package Last Update: | 2016-04-01 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-04 15:03:59 |
| Package Statistics | |
|---|---|
| Total Downloads: | 128 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
A simple Laravel 5 service provider for including the PHP Xero API.
Please note the PHP-Xero wrapper library used by this service provider is no longer under active development. All development effort is going into the XeroOAuth-PHP library.
We will review this after Laravel 5 has been released and likely leave this active (but unsupported) for anyone still using it for their Laravel 4 apps.
The Xero Service Provider can be installed via Composer by requiring the Trexology/xero-laravel package in your project's composer.json.
{
"require": {
"trexology/xero-laravel": "^3.0",
},
}
To use the Xero Service Provider, you must register the provider when bootstrapping your Laravel application.
Create a new config/xero.php configuration file with the following options:
return [
'key' => '<your-xero-key>',
'secret' => '<your-xero-secret>',
'publicPath' => '../config/xero/publickey.cer',
'privatePath' => '../config/xero/privatekey.pem',
'format' => 'json'
];
Find the providers key in config/app.php and register the Xero Service Provider.
'providers' => [
// ...
'Trexology\XeroLaravel\XeroLaravelServiceProvider',
]
Find the aliases key in config/app.php and add in our Xero alias.
'aliases' => [
// ...
'XeroLaravel' => 'Trexology\XeroLaravel\Facades\XeroLaravel',
]
Create public and private keys, and save them in /config/xero/ as publickey.cer and privatekey.pem.
For more info on setting up your keys, check out the Xero documentation
$contact = [
[
"Name" => $user['company']['name'],
"FirstName" => $user['firstname'],
"LastName" => $user['surname'],
]
];
$xero_contact = XeroLaravel::Contacts($contact);