PHPackages                             chaplean/zoho-books-client-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. chaplean/zoho-books-client-bundle

ActiveZoho-books-client-bundle[API Development](/categories/api)

chaplean/zoho-books-client-bundle
=================================

ZohoBooks Client Bundle

v0.1.2(6y ago)090MITPHPPHP &gt;=7.0.8

Since Nov 20Pushed 6y agoCompare

[ Source](https://github.com/chaplean/zoho-books-client-bundle)[ Packagist](https://packagist.org/packages/chaplean/zoho-books-client-bundle)[ RSS](/packages/chaplean-zoho-books-client-bundle/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (8)Versions (7)Used By (0)

Chaplean Zoho Books Client Bundle
=================================

[](#chaplean-zoho-books-client-bundle)

[![build status](https://camo.githubusercontent.com/0ccc1ac8e0b05ee06ea52fa4afd7bb5428c80b167fea8027dc9a1e57dd21e21e/68747470733a2f2f6769742e636861706c65616e2e636f6f702f6f70656e2d736f757263652f62756e646c652f7a6f686f2d626f6f6b732d636c69656e742d62756e646c652f6261646765732f6d61737465722f6275696c642e737667)](https://git.chaplean.coop/open-source/bundle/zoho-books-client-bundle/commits/master)[![build status](https://camo.githubusercontent.com/33ca23df9f313835e0602c16cff9da03736694e510ab0484bb638ba8d77324e2/68747470733a2f2f6769742e636861706c65616e2e636f6f702f6f70656e2d736f757263652f62756e646c652f7a6f686f2d626f6f6b732d636c69656e742d62756e646c652f6261646765732f6d61737465722f636f7665726167652e737667)](https://git.chaplean.coop/open-source/bundle/zoho-books-client-bundle/commits/master)[![contributions welcome](https://camo.githubusercontent.com/9e93e892d0685e1bf7a1d0bd7c8410d6ecf2086a0a7b48dd58a6b96fa556ea2a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f6e747269627574696f6e732d77656c636f6d652d627269676874677265656e2e7376673f7374796c653d666c6174)](https://github.com/chaplean/zoho-books-client-bundle/issues)

This bundle allows you to use the [zoho books api](https://www.zoho.com/books/api/v3/) easily from your php code.

Table of content
----------------

[](#table-of-content)

- [Installation](#Installation)
- [Configuration](#Configuration)
- [Usage](#Usage)
- [Versioning](#Versioning)
- [Contributing](#Contributing)
- [Hacking](#Hacking)
- [License](#License)

Installation
------------

[](#installation)

This bundle requires at least Symfony 3.0.

You can use [composer](https://getcomposer.org) to install zoho-books-client-bundle:

```
composer require chaplean/zoho-books-client-bundle
```

Then add to your AppKernel.php:

```
new Chaplean\Bundle\ZohoBooksClientBundle\ChapleanZohoBooksClientBundle(),
```

Configuration
-------------

[](#configuration)

First you will need to import bundle configuration.

config.yml:

```
imports:
    - { resource: '@ChapleanZohoBooksClientBundle/Resources/config/config.yml' }
```

You must also create some parameters.

parameters.yml:

```
parameters:
    chaplean_zoho_books.organization_id: f545ff15s4g
    chaplean_zoho_books.access_token: g45df45g41g5fd
```

Usage
-----

[](#usage)

Here is an example of how to use the getEstimate route.

```
$response = $zohoBooksApi->getEstimate()
    ->bindUrlParameters(['id' => 'df154f1fds4f54dsf15'])
    ->exec();

if ($response->succeeded()) {
    $content = $response->getContent();
    // your code
}
```

### Available functions:

[](#available-functions)

- Contacts

    - getContacts()
    - getContactPersons()
- Items

    - getItems()
    - getItem()
    - postItem()
    - putItem()
    - deleteItem()
    - postItemActive()
    - postItemInactive()
- Estimate

    - getEstimate()
    - getEstimates()
    - postEstimate()
    - putEstimate()
    - deleteEstimate()
    - postEstimateAsDeclined()
    - postEstimateAsAccepted()
- Invoice

    - getInvoice()
    - getInvoices()
    - postInvoice()
    - putInvoice()
    - deleteInvoice()

Versioning
----------

[](#versioning)

zoho-books-client-bundle follows [semantic versioning](https://semver.org/). In short the scheme is MAJOR.MINOR.PATCH where

1. MAJOR is bumped when there is a breaking change,
2. MINOR is bumped when a new feature is added in a backward-compatible way,
3. PATCH is bumped when a bug is fixed in a backward-compatible way.

Versions bellow 1.0.0 are considered experimental and breaking changes may occur at any time.

Contributing
------------

[](#contributing)

Contributions are welcomed! There are many ways to contribute, and we appreciate all of them. Here are some of the major ones:

- [Bug Reports](https://github.com/chaplean/zoho-books-client-bundle/issues): While we strive for quality software, bugs can happen and we can't fix issues we're not aware of. So please report even if you're not sure about it or just want to ask a question. If anything the issue might indicate that the documentation can still be improved!
- [Feature Request](https://github.com/chaplean/zoho-books-client-bundle/issues): You have a use case not covered by the current api? Want to suggest a change or add something? We'd be glad to read about it and start a discussion to try to find the best possible solution.
- [Pull Request](https://github.com/chaplean/zoho-books-client-bundle/pulls): Want to contribute code or documentation? We'd love that! If you need help to get started, GitHub as [documentation](https://help.github.com/articles/about-pull-requests/) on pull requests. We use the ["fork and pull model"](https://help.github.com/articles/about-collaborative-development-models/) were contributors push changes to their personnal fork and then create pull requests to the main repository. Please make your pull requests against the `master` branch.

As a reminder, all contributors are expected to follow our [Code of Conduct](CODE_OF_CONDUCT.md).

Hacking
-------

[](#hacking)

You might find the following commands usefull when hacking on this project:

```
# Install dependencies
composer install

# Run tests
bin/phpunit
```

License
-------

[](#license)

zoho-books-client-bundle is distributed under the terms of the MIT license.

See [LICENSE](LICENSE.md) for details.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~69 days

Total

4

Last Release

2518d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6bfb5e4a3dde826e4cd3f92d24fdfbdce1415c77f3edd38fc3420b4988977e13?d=identicon)[HugoDumazeau](/maintainers/HugoDumazeau)

![](https://www.gravatar.com/avatar/8084ee0162a85df3b3f49230b8c0dde81108195caa541bb00642cbd050e88b25?d=identicon)[hudumazeau](/maintainers/hudumazeau)

![](https://www.gravatar.com/avatar/75b46ff5a3d9bc9b04e9a3e571152c2e562dd71ef4bde0a048bea1d0567e97d0?d=identicon)[mdevlamynck](/maintainers/mdevlamynck)

![](https://www.gravatar.com/avatar/7989bd2ecb7be555081aa80dd87b63e52186fd6eb742d59b8564a26d27873eae?d=identicon)[chaplean](/maintainers/chaplean)

---

Top Contributors

[![mdevlamynck](https://avatars.githubusercontent.com/u/4378377?v=4)](https://github.com/mdevlamynck "mdevlamynck (2 commits)")[![valentin-chaplean](https://avatars.githubusercontent.com/u/15136254?v=4)](https://github.com/valentin-chaplean "valentin-chaplean (2 commits)")

### Embed Badge

![Health badge](/badges/chaplean-zoho-books-client-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/chaplean-zoho-books-client-bundle/health.svg)](https://phpackages.com/packages/chaplean-zoho-books-client-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M647](/packages/sylius-sylius)[behat/behat

Scenario-oriented BDD framework for PHP

4.0k96.8M1.9k](/packages/behat-behat)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[worksome/graphlint

A static analysis tool for GraphQL

13189.4k](/packages/worksome-graphlint)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

7310.3k29](/packages/open-dxp-opendxp)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
