ayles-software/xero-laravel
Composer 安装命令:
composer require ayles-software/xero-laravel
包简介
Laravel wrapper for Xero
README 文档
README
Xero Laravel provides a wrapper around xero.
Requirements
- Laravel 6+
- PHP 7.2+
Installation
Install via using composer
composer require ayles-software/xero-laravel
Setup
Publish the config.
php artisan vendor:publish --provider="AylesSoftware\XeroLaravel\ServiceProvider"
You now need to populate the config/xero-laravel.php file with the credentials for
your Xero app. You can create apps and find therequired credentials in the
My Apps section of your Xero account.
Add the following variables to your .env file.
XERO_REDIRECT_URL=
XERO_CLIENT_ID=
XERO_CLIENT_SECRET=
The config file also contains scopes Xero access.
The offline_access scope is required to obtain a new access token. Access tokens expire after 30 minutes.
For more information on scopes try the xero documentation.
Migrations
This package uses XeroAccess model to manage access tokens. Run the migration to create this table.
OAuth flow
First you must authorize the application, this will require a controller and route to be setup. Once the application has been authorized then access to Xero is self managed within this package. Once the access token expires, a new one will be request as needed.
XeroOAuth::class will provides the OAuth flow and regeneration of the access token.
Example of Controller for authorization.
<?php namespace App\Http\Controllers; use AylesSoftware\XeroLaravel\XeroOAuth; class XeroOAuthController extends Controller { public function __invoke(XeroOAuth $xeroOAuth) { return $xeroOAuth->flow(); } }
Usage
use AylesSoftware\XeroLaravel\Facades\Xero; # Retrieve all contacts $contacts = Xero::contacts()->get(); # Retrieve an individual contact by its GUID $contact = Xero::contacts()->find('34xxxx6e-7xx5-2xx4-bxx5-6123xxxxea49'); # Retrieve contacts filtered by name $contacts = Xero::contacts()->where('Name', 'ANZ')->get(); # Retrieve an individual contact filtered by name $contact = Xero::contacts()->where('Name', 'ANZ')->first(); # Retrieve an individual contact by its GUID $contact = Xero::contacts()->find('34xxxx6e-7xx5-2xx4-bxx5-6123xxxxea49'); # Retrieve multiple contact by their GUIDS $contacts = Xero::contacts()->find([ '34xxxx6e-7xx5-2xx4-bxx5-6123xxxxea49', '364xxxx7f-2xx3-7xx3-gxx7-6726xxxxhe76', ]);
For more information on usage checkout https://github.com/calcinai/xero-php.
Credit
This package was inspired by the talented people at Langley Foxall.
Available relationships
The list below shows all available relationships that can be used to access
data related to your Xero application (e.g. $xero->relationshipName).
Note: Some of these relationships may not be available if the related service(s) are not enabled for your Xero account.
accounts
addresses
assetsAssetTypeBookDepreciationSettings
assetsAssetTypes
assetsOverviews
assetsSettings
attachments
bankTransactionBankAccounts
bankTransactionLineItems
bankTransactions
bankTransferFromBankAccounts
bankTransferToBankAccounts
bankTransfers
brandingThemes
contactContactPeople
contactGroups
contacts
creditNoteAllocations
creditNotes
currencies
employees
expenseClaimExpenseClaims
expenseClaims
externalLinks
filesAssociations
filesFiles
filesFolders
filesObjects
invoiceLineItems
invoiceReminders
invoices
itemPurchases
itemSales
items
journalJournalLines
journals
linkedTransactions
manualJournalJournalLines
manualJournals
organisationBills
organisationExternalLinks
organisationPaymentTerms
organisationSales
organisations
overpaymentAllocations
overpaymentLineItems
overpayments
payments
payrollAUEmployeeBankAccounts
payrollAUEmployeeHomeAddresses
payrollAUEmployeeLeaveBalances
payrollAUEmployeeOpeningBalances
payrollAUEmployeePayTemplateDeductionLines
payrollAUEmployeePayTemplateEarningsLines
payrollAUEmployeePayTemplateLeaveLines
payrollAUEmployeePayTemplateReimbursementLines
payrollAUEmployeePayTemplateSuperLines
payrollAUEmployeePayTemplates
payrollAUEmployeeSuperMemberships
payrollAUEmployeeTaxDeclarations
payrollAUEmployees
payrollAULeaveApplicationLeavePeriods
payrollAULeaveApplications
payrollAUPayItemDeductionTypes
payrollAUPayItemEarningsRates
payrollAUPayItemLeaveTypes
payrollAUPayItemReimbursementTypes
payrollAUPayItems
payrollAUPayRuns
payrollAUPayrollCalendars
payrollAUPayslipDeductionLines
payrollAUPayslipEarningsLines
payrollAUPayslipLeaveAccrualLines
payrollAUPayslipLeaveEarningsLines
payrollAUPayslipReimbursementLines
payrollAUPayslipSuperannuationLines
payrollAUPayslipTaxLines
payrollAUPayslipTimesheetEarningsLines
payrollAUPayslips
payrollAUSettingAccounts
payrollAUSettingTrackingCategories
payrollAUSettings
payrollAUSuperFundProducts
payrollAUSuperFundSuperFunds
payrollAUSuperFunds
payrollAUTimesheetTimesheetLines
payrollAUTimesheets
payrollUSEmployeeBankAccounts
payrollUSEmployeeHomeAddresses
payrollUSEmployeeMailingAddresses
payrollUSEmployeeOpeningBalances
payrollUSEmployeePayTemplates
payrollUSEmployeePaymentMethods
payrollUSEmployeeSalaryAndWages
payrollUSEmployeeTimeOffBalances
payrollUSEmployeeWorkLocations
payrollUSEmployees
payrollUSPayItemBenefitTypes
payrollUSPayItemDeductionTypes
payrollUSPayItemEarningsTypes
payrollUSPayItemReimbursementTypes
payrollUSPayItemTimeOffTypes
payrollUSPayItems
payrollUSPayRuns
payrollUSPaySchedules
payrollUSPaystubBenefitLines
payrollUSPaystubDeductionLines
payrollUSPaystubEarningsLines
payrollUSPaystubLeaveEarningsLines
payrollUSPaystubReimbursementLines
payrollUSPaystubTimeOffLines
payrollUSPaystubTimesheetEarningsLines
payrollUSPaystubs
payrollUSSalaryandWages
payrollUSSettingAccounts
payrollUSSettingTrackingCategories
payrollUSSettings
payrollUSTimesheetTimesheetLines
payrollUSTimesheets
payrollUSWorkLocations
phones
prepaymentAllocations
prepaymentLineItems
prepayments
purchaseOrderLineItems
purchaseOrders
receiptLineItems
receipts
repeatingInvoiceLineItems
repeatingInvoiceSchedules
repeatingInvoices
reportBalanceSheets
reportBankStatements
reportBudgetSummaries
reportProfitLosses
reportReports
reportTaxTypes
salesTaxBases
salesTaxPeriods
taxRateTaxComponents
taxRates
taxTypes
trackingCategories
trackingCategoryTrackingOptions
userRoles
users
License
Xero Laravel is open-sourced software licensed under the MIT license.
ayles-software/xero-laravel 适用场景与选型建议
ayles-software/xero-laravel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 19.03k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2020 年 02 月 21 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「xero」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ayles-software/xero-laravel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ayles-software/xero-laravel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ayles-software/xero-laravel 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
An extension for using the Xero API from within Yii2
Symfony bundle wrapping the XeroPHP library
Send invoices to Xero including contacts, payments and even inventory updates.
Alfabank REST API integration
Xero Service Provider for Laravel 5
统计信息
- 总下载量: 19.03k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-02-21