Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chaplean/zoho-invoice-client-bundle
https://github.com/chaplean/zoho-invoice-client-bundle
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/chaplean/zoho-invoice-client-bundle
- Owner: chaplean
- Created: 2019-07-05T15:10:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-05T15:17:00.000Z (over 5 years ago)
- Last Synced: 2024-12-14T03:12:00.752Z (28 days ago)
- Language: PHP
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ChapleanZohoInvoiceClientBundle
![Codeship Status for chaplean/zoho-invoice-client-bundle](https://app.codeship.com/projects/4e1c9860-8729-0135-dfbb-66311f7cf82a/status?branch=master)
# Prerequisites
This version of the bundle requires Symfony 2.8+.
# Installation
## 1. Composer
```bash
composer require chaplean/zoho-invoice-client-bundle
```## 2. AppKernel.php
Add
```php
new Chaplean\Bundle\ZohoInvoiceClientBundle\ChapleanZohoInvoiceClientBundle(),
```# Configuration
## 1. config.yml
```yml
imports:
- { resource: '@ChapleanZohoInvoiceClientBundle/Resources/config/config.yml' }
```## 2. paramters.yml
```yml
chaplean_zoho_invoice.access_token: 'your access token'
chaplean_zoho_invoice.organization_id: 'your organization id'
```# Available functions:
* Items
* getItems()
* getItem()
* postItem()
* putItem()
* deleteItem()
* postItemActive()
* postItemInactive()* Estimate
* getEstimate()
* getEstimates()
* postEstimate()
* putEstimate()
* deleteEstimate()* Invoice
* getInvoice()
* getInvoices()
* postInvoice()
* putInvoice()
* deleteInvoice()