├── .coveralls.yml ├── .github ├── FUNDING.yml └── workflows │ └── laravel.yml ├── .gitignore ├── composer.json ├── phpunit.xml ├── readme.md ├── src ├── Calendar │ ├── ActivityTypes.php │ ├── Calendar.php │ └── Event.php ├── Crm │ ├── Address.php │ ├── BusinessType.php │ ├── Company.php │ ├── Contact.php │ ├── Crm.php │ └── Tag.php ├── Deals │ ├── Deal.php │ └── Quotations.php ├── Facade │ └── TeamLeader.php ├── Files │ └── Files.php ├── General │ ├── CustomField.php │ ├── Department.php │ ├── General.php │ ├── Team.php │ ├── User.php │ └── WorkType.php ├── Invoicing │ ├── CreditNotes.php │ ├── Invoices.php │ ├── Invoicing.php │ ├── Subscriptions.php │ └── TaxRates.php ├── Milestones │ └── Milestones.php ├── Product │ ├── Product.php │ └── Projects │ │ └── Projects.php ├── ServiceProvider │ └── TeamLeader.php ├── Tasks │ └── Tasks.php ├── TeamLeader.php ├── Templates │ └── MailTemplates.php ├── TimeTracking │ └── TimeTracking.php ├── Webhooks │ └── Webhook.php └── config │ └── teamleader.php └── tests └── TeamLeaderTest.php /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/laravel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/.github/workflows/laravel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | .php_cs.cache 4 | coverage 5 | .DS_store -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/readme.md -------------------------------------------------------------------------------- /src/Calendar/ActivityTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Calendar/ActivityTypes.php -------------------------------------------------------------------------------- /src/Calendar/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Calendar/Calendar.php -------------------------------------------------------------------------------- /src/Calendar/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Calendar/Event.php -------------------------------------------------------------------------------- /src/Crm/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Crm/Address.php -------------------------------------------------------------------------------- /src/Crm/BusinessType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Crm/BusinessType.php -------------------------------------------------------------------------------- /src/Crm/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Crm/Company.php -------------------------------------------------------------------------------- /src/Crm/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Crm/Contact.php -------------------------------------------------------------------------------- /src/Crm/Crm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Crm/Crm.php -------------------------------------------------------------------------------- /src/Crm/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Crm/Tag.php -------------------------------------------------------------------------------- /src/Deals/Deal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Deals/Deal.php -------------------------------------------------------------------------------- /src/Deals/Quotations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Deals/Quotations.php -------------------------------------------------------------------------------- /src/Facade/TeamLeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Facade/TeamLeader.php -------------------------------------------------------------------------------- /src/Files/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Files/Files.php -------------------------------------------------------------------------------- /src/General/CustomField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/General/CustomField.php -------------------------------------------------------------------------------- /src/General/Department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/General/Department.php -------------------------------------------------------------------------------- /src/General/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/General/General.php -------------------------------------------------------------------------------- /src/General/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/General/Team.php -------------------------------------------------------------------------------- /src/General/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/General/User.php -------------------------------------------------------------------------------- /src/General/WorkType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/General/WorkType.php -------------------------------------------------------------------------------- /src/Invoicing/CreditNotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Invoicing/CreditNotes.php -------------------------------------------------------------------------------- /src/Invoicing/Invoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Invoicing/Invoices.php -------------------------------------------------------------------------------- /src/Invoicing/Invoicing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Invoicing/Invoicing.php -------------------------------------------------------------------------------- /src/Invoicing/Subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Invoicing/Subscriptions.php -------------------------------------------------------------------------------- /src/Invoicing/TaxRates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Invoicing/TaxRates.php -------------------------------------------------------------------------------- /src/Milestones/Milestones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Milestones/Milestones.php -------------------------------------------------------------------------------- /src/Product/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Product/Product.php -------------------------------------------------------------------------------- /src/Product/Projects/Projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Product/Projects/Projects.php -------------------------------------------------------------------------------- /src/ServiceProvider/TeamLeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/ServiceProvider/TeamLeader.php -------------------------------------------------------------------------------- /src/Tasks/Tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Tasks/Tasks.php -------------------------------------------------------------------------------- /src/TeamLeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/TeamLeader.php -------------------------------------------------------------------------------- /src/Templates/MailTemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Templates/MailTemplates.php -------------------------------------------------------------------------------- /src/TimeTracking/TimeTracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/TimeTracking/TimeTracking.php -------------------------------------------------------------------------------- /src/Webhooks/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/Webhooks/Webhook.php -------------------------------------------------------------------------------- /src/config/teamleader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/src/config/teamleader.php -------------------------------------------------------------------------------- /tests/TeamLeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeITBelgium/TeamLeader/HEAD/tests/TeamLeaderTest.php --------------------------------------------------------------------------------