Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/supplycart/xero
https://github.com/supplycart/xero
laravel xero
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/supplycart/xero
- Owner: supplycart
- Created: 2020-01-15T09:30:47.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-19T09:14:50.000Z (5 months ago)
- Last Synced: 2024-09-30T13:42:41.656Z (about 1 month ago)
- Topics: laravel, xero
- Language: PHP
- Size: 163 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel Xero
A simple Laravel package to work with XERO API. Using latest OAuth 2.0.
### Getting Started
1. Register and create new application in XERO, https://developer.xero.com.
2. Get Client ID and Client Secret key and key in the redirect URI.### Installation
Install the package using composer:
```bash
composer require supplycart/xero
```Add this to your `.env` file:
```env
XERO_CLIENT_ID={your client id}
XERO_CLIENT_SECRET={your client secret}
XERO_REDIRECT_URI={your oauth redirect uri}
XERO_AUTHENTICATED_URI={your redirected url after oauth}
```