xero-php icon indicating copy to clipboard operation
xero-php copied to clipboard

A php library for the Xero API, with a cleaner OAuth interface and ORM-like abstraction.

Results 117 xero-php issues
Sort by recently updated
recently updated
newest added

Steps to Reproduce. 1. Set your demo account type to US. 2. Attempt to create a TaxRate with out a ReportTaxType property... Result: Validation Fails before the request is ever...

We all know that reading the source code is the best way to learn about a particular system, and the code is quite readable. However I think many developers would...

If one retrieves a `CreditNote` with an `Allocation`, adds a second one to it with `CreditNote::addAllocation`, and then saves it, a `Request` object is built which calls a PUT with...

The base namespace for everything should be Calcinai\XeroPHP. Unfortunately this is bigger change in the code and I don't won't to do it before someone says it's good thing to...

vendor/calcinai/xero-php/src/XeroPHP/Models/Accounting/LineItem.php line 253 is currently ``` public function getItemCode() { return $this->_data['ItemCode']; } ``` I believe that something like ``` public function getItemCode() { if (isset($this->_data) && isset($this->_data['ItemCode'])) { return...

I regularly receive timeouts from Xero when getting an access token, but can't see how to extend the timeout period - old issues mention a config file, but that doesn't...

Fix a test namespace Add the whereDate function Nothing else

@calcinai Hey there, would it be possible to push a new version for the changes that were merged in the last few days please? I'm not sure how to do...

I have added update method to updating the model when GUID property doesn't exist i.e TaxRate