├── .editorconfig ├── .github └── workflows │ └── php.yml ├── .gitignore ├── .php-cs-fixer.php ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── docker-compose.yml ├── examples ├── contact │ ├── create.php │ ├── delete.php │ ├── get.php │ └── update.php ├── credentials.php ├── customer │ ├── create.php │ ├── delete.php │ ├── get.php │ └── update.php ├── estimate │ ├── create.php │ ├── createinvoice.php │ ├── delete.php │ ├── get.php │ └── sendbyemail.php ├── expense │ ├── create.php │ └── get.php ├── generator.php ├── invoice │ ├── cancel.php │ ├── complete.php │ ├── create.php │ ├── delete.php │ ├── get.php │ ├── sendbyemail.php │ ├── sendbypost.php │ ├── setpaid.php │ └── update.php ├── product │ ├── create.php │ ├── delete.php │ ├── get.php │ └── update.php ├── recurring-invoice │ ├── create.php │ ├── delete.php │ ├── get.php │ └── update.php ├── template.get.php ├── theme │ └── logo.png └── worktime │ ├── create.php │ ├── delete.php │ ├── get.php │ └── update.php ├── phive.xml ├── phpunit.xml.dist ├── src ├── Api │ ├── ApiClient.php │ └── ApiClientInterface.php ├── Common │ ├── AbstractSearchStruct.php │ ├── MissingPropertyException.php │ ├── RecipientEntity.php │ └── XmlService.php ├── Contact │ ├── ContactEntity.php │ ├── ContactSearchStruct.php │ ├── ContactService.php │ └── ContactValidator.php ├── Customer │ ├── CustomerEntity.php │ ├── CustomerSearchStruct.php │ ├── CustomerService.php │ └── CustomerValidator.php ├── Document │ └── DocumentEntity.php ├── Estimate │ ├── EstimateEntity.php │ ├── EstimateItemEntity.php │ ├── EstimateItemValidator.php │ ├── EstimateSearchStruct.php │ ├── EstimateService.php │ ├── EstimateValidator.php │ └── EstimateVatItemEntity.php ├── Expense │ ├── ExpenseEntity.php │ ├── ExpenseSearchStruct.php │ ├── ExpenseService.php │ └── ExpenseValidator.php ├── ExpenseItem │ ├── ExpenseItemEntity.php │ ├── ExpenseItemValidator.php │ └── ExpenseVatItemEntity.php ├── Invoice │ ├── InvoiceCommentEntity.php │ ├── InvoiceEntity.php │ ├── InvoicePaymentEntity.php │ ├── InvoiceSearchStruct.php │ ├── InvoiceService.php │ └── InvoiceValidator.php ├── Item │ ├── ItemEntity.php │ ├── ItemValidator.php │ └── VatItemEntity.php ├── Product │ ├── ProductEntity.php │ ├── ProductSearchStruct.php │ ├── ProductService.php │ └── ProductValidator.php ├── Project │ ├── ProjectEntity.php │ ├── ProjectSearchStruct.php │ ├── ProjectService.php │ └── ProjectValidator.php ├── RecurringInvoice │ ├── RecurringInvoiceEntity.php │ ├── RecurringInvoiceSearchStruct.php │ ├── RecurringInvoiceService.php │ └── RecurringInvoiceValidator.php ├── Revenue │ └── RevenueEntity.php ├── Template │ ├── TemplateEntity.php │ └── TemplateService.php └── WorkTime │ ├── WorkTimeEntity.php │ ├── WorkTimeSearchStruct.php │ ├── WorkTimeService.php │ └── WorkTimeValidator.php ├── tests ├── Api │ └── ApiClientTest.php ├── Common │ ├── AbstractSearchStructTest.php │ ├── BaseTestTrait.php │ ├── RecipientEntityTest.php │ └── SearchStructImplementation.php ├── Contact │ └── ContactServiceTest.php ├── Customer │ ├── CustomerServiceTest.php │ └── CustomerValidationTest.php ├── Estimate │ └── EstimateServiceTest.php ├── Helper │ ├── ApiDummyClient.php │ ├── ApiDummyResponse.php │ └── EntityTestTrait.php ├── Invoice │ └── InvoiceServiceTest.php ├── Item │ └── ItemValidatorTest.php ├── Product │ └── ProductServiceTest.php ├── Project │ └── ProjectServiceTest.php ├── Template │ └── TemplateServiceTest.php └── WorkTime │ ├── WorkTimeEntityTest.php │ ├── WorkTimeSearchStructTest.php │ ├── WorkTimeServiceTest.php │ ├── WorkTimeValidatorTest.php │ └── _fixtures │ ├── worktime_create_request.xml │ ├── worktime_create_response.xml │ ├── worktime_delete_request.xml │ ├── worktime_delete_response.xml │ ├── worktime_get_request.xml │ ├── worktime_update_request.xml │ ├── worktime_update_response.xml │ ├── worktimes_entity.xml │ ├── worktimes_entity_with_invalid_properties.xml │ └── worktimes_get_response.xml └── tools ├── php-cs-fixer └── phpstan /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/contact/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/contact/create.php -------------------------------------------------------------------------------- /examples/contact/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/contact/delete.php -------------------------------------------------------------------------------- /examples/contact/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/contact/get.php -------------------------------------------------------------------------------- /examples/contact/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/contact/update.php -------------------------------------------------------------------------------- /examples/credentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/credentials.php -------------------------------------------------------------------------------- /examples/customer/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/customer/create.php -------------------------------------------------------------------------------- /examples/customer/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/customer/delete.php -------------------------------------------------------------------------------- /examples/customer/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/customer/get.php -------------------------------------------------------------------------------- /examples/customer/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/customer/update.php -------------------------------------------------------------------------------- /examples/estimate/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/estimate/create.php -------------------------------------------------------------------------------- /examples/estimate/createinvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/estimate/createinvoice.php -------------------------------------------------------------------------------- /examples/estimate/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/estimate/delete.php -------------------------------------------------------------------------------- /examples/estimate/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/estimate/get.php -------------------------------------------------------------------------------- /examples/estimate/sendbyemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/estimate/sendbyemail.php -------------------------------------------------------------------------------- /examples/expense/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/expense/create.php -------------------------------------------------------------------------------- /examples/expense/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/expense/get.php -------------------------------------------------------------------------------- /examples/generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/generator.php -------------------------------------------------------------------------------- /examples/invoice/cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/invoice/cancel.php -------------------------------------------------------------------------------- /examples/invoice/complete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/invoice/complete.php -------------------------------------------------------------------------------- /examples/invoice/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/invoice/create.php -------------------------------------------------------------------------------- /examples/invoice/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/invoice/delete.php -------------------------------------------------------------------------------- /examples/invoice/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/invoice/get.php -------------------------------------------------------------------------------- /examples/invoice/sendbyemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/invoice/sendbyemail.php -------------------------------------------------------------------------------- /examples/invoice/sendbypost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/invoice/sendbypost.php -------------------------------------------------------------------------------- /examples/invoice/setpaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/invoice/setpaid.php -------------------------------------------------------------------------------- /examples/invoice/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/invoice/update.php -------------------------------------------------------------------------------- /examples/product/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/product/create.php -------------------------------------------------------------------------------- /examples/product/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/product/delete.php -------------------------------------------------------------------------------- /examples/product/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/product/get.php -------------------------------------------------------------------------------- /examples/product/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/product/update.php -------------------------------------------------------------------------------- /examples/recurring-invoice/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/recurring-invoice/create.php -------------------------------------------------------------------------------- /examples/recurring-invoice/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/recurring-invoice/delete.php -------------------------------------------------------------------------------- /examples/recurring-invoice/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/recurring-invoice/get.php -------------------------------------------------------------------------------- /examples/recurring-invoice/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/recurring-invoice/update.php -------------------------------------------------------------------------------- /examples/template.get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/template.get.php -------------------------------------------------------------------------------- /examples/theme/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/theme/logo.png -------------------------------------------------------------------------------- /examples/worktime/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/worktime/create.php -------------------------------------------------------------------------------- /examples/worktime/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/worktime/delete.php -------------------------------------------------------------------------------- /examples/worktime/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/worktime/get.php -------------------------------------------------------------------------------- /examples/worktime/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/examples/worktime/update.php -------------------------------------------------------------------------------- /phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/phive.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Api/ApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Api/ApiClient.php -------------------------------------------------------------------------------- /src/Api/ApiClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Api/ApiClientInterface.php -------------------------------------------------------------------------------- /src/Common/AbstractSearchStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Common/AbstractSearchStruct.php -------------------------------------------------------------------------------- /src/Common/MissingPropertyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Common/MissingPropertyException.php -------------------------------------------------------------------------------- /src/Common/RecipientEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Common/RecipientEntity.php -------------------------------------------------------------------------------- /src/Common/XmlService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Common/XmlService.php -------------------------------------------------------------------------------- /src/Contact/ContactEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Contact/ContactEntity.php -------------------------------------------------------------------------------- /src/Contact/ContactSearchStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Contact/ContactSearchStruct.php -------------------------------------------------------------------------------- /src/Contact/ContactService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Contact/ContactService.php -------------------------------------------------------------------------------- /src/Contact/ContactValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Contact/ContactValidator.php -------------------------------------------------------------------------------- /src/Customer/CustomerEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Customer/CustomerEntity.php -------------------------------------------------------------------------------- /src/Customer/CustomerSearchStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Customer/CustomerSearchStruct.php -------------------------------------------------------------------------------- /src/Customer/CustomerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Customer/CustomerService.php -------------------------------------------------------------------------------- /src/Customer/CustomerValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Customer/CustomerValidator.php -------------------------------------------------------------------------------- /src/Document/DocumentEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Document/DocumentEntity.php -------------------------------------------------------------------------------- /src/Estimate/EstimateEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Estimate/EstimateEntity.php -------------------------------------------------------------------------------- /src/Estimate/EstimateItemEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Estimate/EstimateItemEntity.php -------------------------------------------------------------------------------- /src/Estimate/EstimateItemValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Estimate/EstimateItemValidator.php -------------------------------------------------------------------------------- /src/Estimate/EstimateSearchStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Estimate/EstimateSearchStruct.php -------------------------------------------------------------------------------- /src/Estimate/EstimateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Estimate/EstimateService.php -------------------------------------------------------------------------------- /src/Estimate/EstimateValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Estimate/EstimateValidator.php -------------------------------------------------------------------------------- /src/Estimate/EstimateVatItemEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Estimate/EstimateVatItemEntity.php -------------------------------------------------------------------------------- /src/Expense/ExpenseEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Expense/ExpenseEntity.php -------------------------------------------------------------------------------- /src/Expense/ExpenseSearchStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Expense/ExpenseSearchStruct.php -------------------------------------------------------------------------------- /src/Expense/ExpenseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Expense/ExpenseService.php -------------------------------------------------------------------------------- /src/Expense/ExpenseValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Expense/ExpenseValidator.php -------------------------------------------------------------------------------- /src/ExpenseItem/ExpenseItemEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/ExpenseItem/ExpenseItemEntity.php -------------------------------------------------------------------------------- /src/ExpenseItem/ExpenseItemValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/ExpenseItem/ExpenseItemValidator.php -------------------------------------------------------------------------------- /src/ExpenseItem/ExpenseVatItemEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/ExpenseItem/ExpenseVatItemEntity.php -------------------------------------------------------------------------------- /src/Invoice/InvoiceCommentEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Invoice/InvoiceCommentEntity.php -------------------------------------------------------------------------------- /src/Invoice/InvoiceEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Invoice/InvoiceEntity.php -------------------------------------------------------------------------------- /src/Invoice/InvoicePaymentEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Invoice/InvoicePaymentEntity.php -------------------------------------------------------------------------------- /src/Invoice/InvoiceSearchStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Invoice/InvoiceSearchStruct.php -------------------------------------------------------------------------------- /src/Invoice/InvoiceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Invoice/InvoiceService.php -------------------------------------------------------------------------------- /src/Invoice/InvoiceValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Invoice/InvoiceValidator.php -------------------------------------------------------------------------------- /src/Item/ItemEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Item/ItemEntity.php -------------------------------------------------------------------------------- /src/Item/ItemValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Item/ItemValidator.php -------------------------------------------------------------------------------- /src/Item/VatItemEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Item/VatItemEntity.php -------------------------------------------------------------------------------- /src/Product/ProductEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Product/ProductEntity.php -------------------------------------------------------------------------------- /src/Product/ProductSearchStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Product/ProductSearchStruct.php -------------------------------------------------------------------------------- /src/Product/ProductService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Product/ProductService.php -------------------------------------------------------------------------------- /src/Product/ProductValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Product/ProductValidator.php -------------------------------------------------------------------------------- /src/Project/ProjectEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Project/ProjectEntity.php -------------------------------------------------------------------------------- /src/Project/ProjectSearchStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Project/ProjectSearchStruct.php -------------------------------------------------------------------------------- /src/Project/ProjectService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Project/ProjectService.php -------------------------------------------------------------------------------- /src/Project/ProjectValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Project/ProjectValidator.php -------------------------------------------------------------------------------- /src/RecurringInvoice/RecurringInvoiceEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/RecurringInvoice/RecurringInvoiceEntity.php -------------------------------------------------------------------------------- /src/RecurringInvoice/RecurringInvoiceSearchStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/RecurringInvoice/RecurringInvoiceSearchStruct.php -------------------------------------------------------------------------------- /src/RecurringInvoice/RecurringInvoiceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/RecurringInvoice/RecurringInvoiceService.php -------------------------------------------------------------------------------- /src/RecurringInvoice/RecurringInvoiceValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/RecurringInvoice/RecurringInvoiceValidator.php -------------------------------------------------------------------------------- /src/Revenue/RevenueEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Revenue/RevenueEntity.php -------------------------------------------------------------------------------- /src/Template/TemplateEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Template/TemplateEntity.php -------------------------------------------------------------------------------- /src/Template/TemplateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/Template/TemplateService.php -------------------------------------------------------------------------------- /src/WorkTime/WorkTimeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/WorkTime/WorkTimeEntity.php -------------------------------------------------------------------------------- /src/WorkTime/WorkTimeSearchStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/WorkTime/WorkTimeSearchStruct.php -------------------------------------------------------------------------------- /src/WorkTime/WorkTimeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/WorkTime/WorkTimeService.php -------------------------------------------------------------------------------- /src/WorkTime/WorkTimeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/src/WorkTime/WorkTimeValidator.php -------------------------------------------------------------------------------- /tests/Api/ApiClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Api/ApiClientTest.php -------------------------------------------------------------------------------- /tests/Common/AbstractSearchStructTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Common/AbstractSearchStructTest.php -------------------------------------------------------------------------------- /tests/Common/BaseTestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Common/BaseTestTrait.php -------------------------------------------------------------------------------- /tests/Common/RecipientEntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Common/RecipientEntityTest.php -------------------------------------------------------------------------------- /tests/Common/SearchStructImplementation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Common/SearchStructImplementation.php -------------------------------------------------------------------------------- /tests/Contact/ContactServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Contact/ContactServiceTest.php -------------------------------------------------------------------------------- /tests/Customer/CustomerServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Customer/CustomerServiceTest.php -------------------------------------------------------------------------------- /tests/Customer/CustomerValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Customer/CustomerValidationTest.php -------------------------------------------------------------------------------- /tests/Estimate/EstimateServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Estimate/EstimateServiceTest.php -------------------------------------------------------------------------------- /tests/Helper/ApiDummyClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Helper/ApiDummyClient.php -------------------------------------------------------------------------------- /tests/Helper/ApiDummyResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Helper/ApiDummyResponse.php -------------------------------------------------------------------------------- /tests/Helper/EntityTestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Helper/EntityTestTrait.php -------------------------------------------------------------------------------- /tests/Invoice/InvoiceServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Invoice/InvoiceServiceTest.php -------------------------------------------------------------------------------- /tests/Item/ItemValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Item/ItemValidatorTest.php -------------------------------------------------------------------------------- /tests/Product/ProductServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Product/ProductServiceTest.php -------------------------------------------------------------------------------- /tests/Project/ProjectServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Project/ProjectServiceTest.php -------------------------------------------------------------------------------- /tests/Template/TemplateServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/Template/TemplateServiceTest.php -------------------------------------------------------------------------------- /tests/WorkTime/WorkTimeEntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/WorkTimeEntityTest.php -------------------------------------------------------------------------------- /tests/WorkTime/WorkTimeSearchStructTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/WorkTimeSearchStructTest.php -------------------------------------------------------------------------------- /tests/WorkTime/WorkTimeServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/WorkTimeServiceTest.php -------------------------------------------------------------------------------- /tests/WorkTime/WorkTimeValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/WorkTimeValidatorTest.php -------------------------------------------------------------------------------- /tests/WorkTime/_fixtures/worktime_create_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/_fixtures/worktime_create_request.xml -------------------------------------------------------------------------------- /tests/WorkTime/_fixtures/worktime_create_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/_fixtures/worktime_create_response.xml -------------------------------------------------------------------------------- /tests/WorkTime/_fixtures/worktime_delete_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/_fixtures/worktime_delete_request.xml -------------------------------------------------------------------------------- /tests/WorkTime/_fixtures/worktime_delete_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/_fixtures/worktime_delete_response.xml -------------------------------------------------------------------------------- /tests/WorkTime/_fixtures/worktime_get_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/_fixtures/worktime_get_request.xml -------------------------------------------------------------------------------- /tests/WorkTime/_fixtures/worktime_update_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/_fixtures/worktime_update_request.xml -------------------------------------------------------------------------------- /tests/WorkTime/_fixtures/worktime_update_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/_fixtures/worktime_update_response.xml -------------------------------------------------------------------------------- /tests/WorkTime/_fixtures/worktimes_entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/_fixtures/worktimes_entity.xml -------------------------------------------------------------------------------- /tests/WorkTime/_fixtures/worktimes_entity_with_invalid_properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/_fixtures/worktimes_entity_with_invalid_properties.xml -------------------------------------------------------------------------------- /tests/WorkTime/_fixtures/worktimes_get_response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tests/WorkTime/_fixtures/worktimes_get_response.xml -------------------------------------------------------------------------------- /tools/php-cs-fixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tools/php-cs-fixer -------------------------------------------------------------------------------- /tools/phpstan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastbill/fastbill-php-sdk/HEAD/tools/phpstan --------------------------------------------------------------------------------