brnbio / personio-sdk-php
Personio SDK for PHP - Use Personio REST API in your PHP project
1.0.1
2024-02-08 20:44 UTC
Requires
- php: >=8.2
- guzzlehttp/guzzle: ^7.8
- illuminate/collections: ^10.0
Requires (Dev)
- phpunit/phpunit: ^10
- symfony/var-dumper: ^7.0
This package is auto-updated.
Last update: 2025-02-23 13:53:48 UTC
README
This is the official PHP SDK for the Personio API. It provides a simple way to interact with the Personio REST API.
Getting started
To get started, you need to install the SDK using composer:
composer require brnbio/personio-sdk-php
Then, you can use the SDK to interact with the Personio API:
<?php require 'vendor/autoload.php'; $api = new Personio\Api([ 'clientId' => 'your-client-id', 'clientSecret' => 'your-client-secret', ]); $employees = $api->employees()->get();