├── .github └── CODEOWNERS ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── lib ├── AccountsService.php ├── AssociatedContactsService.php ├── Client.php ├── Coercion.php ├── Configuration.php ├── ContactsService.php ├── DealSourcesService.php ├── DealUnqualifiedReasonsService.php ├── DealsService.php ├── Errors │ ├── BaseError.php │ ├── ConfigurationError.php │ ├── ConnectionError.php │ ├── RateLimitError.php │ ├── RequestError.php │ ├── ResourceError.php │ └── ServerError.php ├── HttpClient.php ├── LeadSourcesService.php ├── LeadUnqualifiedReasonsService.php ├── LeadsService.php ├── LineItemsService.php ├── LossReasonsService.php ├── NotesService.php ├── OrdersService.php ├── PipelinesService.php ├── ProductsService.php ├── SourcesService.php ├── StagesService.php ├── Sync.php ├── SyncService.php ├── TagsService.php ├── TasksService.php ├── TextMessagesService.php ├── UsersService.php ├── VisitOutcomesService.php └── VisitsService.php ├── phpunit.xml └── tests ├── AccountsServiceTest.php ├── AssociatedContactsServiceTest.php ├── ClientTest.php ├── CoercionTest.php ├── ContactsServiceTest.php ├── DealSourcesServiceTest.php ├── DealUnqualifiedReasonsServiceTest.php ├── DealsServiceTest.php ├── HttpClientTest.php ├── LeadSourcesServiceTest.php ├── LeadUnqualifiedReasonsServiceTest.php ├── LeadsServiceTest.php ├── LineItemsServiceTest.php ├── LossReasonsServiceTest.php ├── NotesServiceTest.php ├── OrdersServiceTest.php ├── PHPUnitUtil.php ├── PipelinesServiceTest.php ├── ProductsServiceTest.php ├── SourcesServiceTest.php ├── StagesServiceTest.php ├── SyncServiceTest.php ├── SyncTest.php ├── TagsServiceTest.php ├── TasksServiceTest.php ├── TestCase.php ├── TextMessagesServiceTest.php ├── UsersServiceTest.php ├── VisitOutcomesServiceTest.php ├── VisitsServiceTest.php └── bootstrap.php /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | /docs 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/composer.json -------------------------------------------------------------------------------- /lib/AccountsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/AccountsService.php -------------------------------------------------------------------------------- /lib/AssociatedContactsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/AssociatedContactsService.php -------------------------------------------------------------------------------- /lib/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Client.php -------------------------------------------------------------------------------- /lib/Coercion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Coercion.php -------------------------------------------------------------------------------- /lib/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Configuration.php -------------------------------------------------------------------------------- /lib/ContactsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/ContactsService.php -------------------------------------------------------------------------------- /lib/DealSourcesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/DealSourcesService.php -------------------------------------------------------------------------------- /lib/DealUnqualifiedReasonsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/DealUnqualifiedReasonsService.php -------------------------------------------------------------------------------- /lib/DealsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/DealsService.php -------------------------------------------------------------------------------- /lib/Errors/BaseError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Errors/BaseError.php -------------------------------------------------------------------------------- /lib/Errors/ConfigurationError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Errors/ConfigurationError.php -------------------------------------------------------------------------------- /lib/Errors/ConnectionError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Errors/ConnectionError.php -------------------------------------------------------------------------------- /lib/Errors/RateLimitError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Errors/RateLimitError.php -------------------------------------------------------------------------------- /lib/Errors/RequestError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Errors/RequestError.php -------------------------------------------------------------------------------- /lib/Errors/ResourceError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Errors/ResourceError.php -------------------------------------------------------------------------------- /lib/Errors/ServerError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Errors/ServerError.php -------------------------------------------------------------------------------- /lib/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/HttpClient.php -------------------------------------------------------------------------------- /lib/LeadSourcesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/LeadSourcesService.php -------------------------------------------------------------------------------- /lib/LeadUnqualifiedReasonsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/LeadUnqualifiedReasonsService.php -------------------------------------------------------------------------------- /lib/LeadsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/LeadsService.php -------------------------------------------------------------------------------- /lib/LineItemsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/LineItemsService.php -------------------------------------------------------------------------------- /lib/LossReasonsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/LossReasonsService.php -------------------------------------------------------------------------------- /lib/NotesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/NotesService.php -------------------------------------------------------------------------------- /lib/OrdersService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/OrdersService.php -------------------------------------------------------------------------------- /lib/PipelinesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/PipelinesService.php -------------------------------------------------------------------------------- /lib/ProductsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/ProductsService.php -------------------------------------------------------------------------------- /lib/SourcesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/SourcesService.php -------------------------------------------------------------------------------- /lib/StagesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/StagesService.php -------------------------------------------------------------------------------- /lib/Sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/Sync.php -------------------------------------------------------------------------------- /lib/SyncService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/SyncService.php -------------------------------------------------------------------------------- /lib/TagsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/TagsService.php -------------------------------------------------------------------------------- /lib/TasksService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/TasksService.php -------------------------------------------------------------------------------- /lib/TextMessagesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/TextMessagesService.php -------------------------------------------------------------------------------- /lib/UsersService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/UsersService.php -------------------------------------------------------------------------------- /lib/VisitOutcomesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/VisitOutcomesService.php -------------------------------------------------------------------------------- /lib/VisitsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/lib/VisitsService.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/AccountsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/AccountsServiceTest.php -------------------------------------------------------------------------------- /tests/AssociatedContactsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/AssociatedContactsServiceTest.php -------------------------------------------------------------------------------- /tests/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/ClientTest.php -------------------------------------------------------------------------------- /tests/CoercionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/CoercionTest.php -------------------------------------------------------------------------------- /tests/ContactsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/ContactsServiceTest.php -------------------------------------------------------------------------------- /tests/DealSourcesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/DealSourcesServiceTest.php -------------------------------------------------------------------------------- /tests/DealUnqualifiedReasonsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/DealUnqualifiedReasonsServiceTest.php -------------------------------------------------------------------------------- /tests/DealsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/DealsServiceTest.php -------------------------------------------------------------------------------- /tests/HttpClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/HttpClientTest.php -------------------------------------------------------------------------------- /tests/LeadSourcesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/LeadSourcesServiceTest.php -------------------------------------------------------------------------------- /tests/LeadUnqualifiedReasonsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/LeadUnqualifiedReasonsServiceTest.php -------------------------------------------------------------------------------- /tests/LeadsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/LeadsServiceTest.php -------------------------------------------------------------------------------- /tests/LineItemsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/LineItemsServiceTest.php -------------------------------------------------------------------------------- /tests/LossReasonsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/LossReasonsServiceTest.php -------------------------------------------------------------------------------- /tests/NotesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/NotesServiceTest.php -------------------------------------------------------------------------------- /tests/OrdersServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/OrdersServiceTest.php -------------------------------------------------------------------------------- /tests/PHPUnitUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/PHPUnitUtil.php -------------------------------------------------------------------------------- /tests/PipelinesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/PipelinesServiceTest.php -------------------------------------------------------------------------------- /tests/ProductsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/ProductsServiceTest.php -------------------------------------------------------------------------------- /tests/SourcesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/SourcesServiceTest.php -------------------------------------------------------------------------------- /tests/StagesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/StagesServiceTest.php -------------------------------------------------------------------------------- /tests/SyncServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/SyncServiceTest.php -------------------------------------------------------------------------------- /tests/SyncTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/SyncTest.php -------------------------------------------------------------------------------- /tests/TagsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/TagsServiceTest.php -------------------------------------------------------------------------------- /tests/TasksServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/TasksServiceTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/TextMessagesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/TextMessagesServiceTest.php -------------------------------------------------------------------------------- /tests/UsersServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/UsersServiceTest.php -------------------------------------------------------------------------------- /tests/VisitOutcomesServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/VisitOutcomesServiceTest.php -------------------------------------------------------------------------------- /tests/VisitsServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/VisitsServiceTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendesk/basecrm-php/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------