terminal42 / cashctrl-api
API client for cashctrl.com
Fund package maintenance!
terminal42
Other
Installs: 358
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
pkg:composer/terminal42/cashctrl-api
Requires
- php: ^8.2
- ext-json: *
- psr/http-client: ^1.0
- psr/http-factory: ^1.0
- psr/http-message: ^1.0 || ^2.0
Requires (Dev)
- terminal42/contao-build-tools: dev-main
Suggests
- ext-dom: To read and write custom fields.
This package is auto-updated.
Last update: 2025-09-25 09:46:48 UTC
README
An API client for the REST API of cashctrl.com. This client is currently used for our own projects and is subject to heavy changes.
Installation
$ composer.phar require terminal42/cashctrl-api ^2.0@dev
If you are using Symfony, we recommend to use our CashCtrl Bundle.
Usage
$subdomain = 'companyname'; $apiKey = 'foobar'; $client = new Client($subdomain, $apiKey); // Example call to get person list: (new PersonEndpoint($client))->list();