Download the PHP package gamez/personio without Composer

On this page you can find all versions of the php package gamez/personio. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package personio

Personio SDK for PHP

[!NOTE] I don't have developer access to Personio anymore, so I can't continue to maintain this project.

Interact with Personio from your PHP application.

Current version Supported PHP version Build Status Discord Sponsor



Requirements


Installation

In order to use this library, you need a PSR-18 HTTP Client, and a PSR-17 HTTP Message Factory.

Example using kriswallsmith/buzz and nyholm/psr7

Example using guzzlehttp/guzzle and laminas/laminas-diactoros


Usage

Basic API client

Once you have created an HTTP Client and Request Factory as described in the installation section, you can create an API client with them:

This API client allows you to make authenticated HTTP requests to the API of your Personio account - see Personio's REST API documentation for the endpoints you can use.

Simple API

Gamez\Personio\SimpleApi is the easiest and fastest way to access the data in your Personio account. Its methods are named after the available REST API endpoints and return arrays of data. You can inspect the available methods by looking at the source code of the Gamez\Personio\SimpleApi class or by using the autocompletion features of your IDE.

The Simple API doesn't get in your way when accessing the Personio API, but it doesn't provide additional features either. It will, for example, not tell you if you used a wrong query parameter or invalid field value, so you will have to rely on the returned API responses.

For information on which query parameters and field values are allowed, see Personio Developer Hub.

Catching errors

All exceptions thrown by this library implement the \Gamez\Personio\Exception\PersonioException interface. Exceptions thrown while using an API Client will throw a \Gamez\Personio\Exception\ApiClientError.

Caching HTTP requests

To cache HTTP requests to the API, you can add a caching middleware/plugin to the HTTP client before injecting it into the API client instance. See the documentation of the respective component for instructions on how to do that.

Creating your own API client

If you want to create your own API client, implement the \Gamez\Personio\Api\ApiClient interface and use your implementation.

License

gamez/personio is licensed under the MIT License.

Your use of Personio is governed by the Terms of Service for Personio.


All versions of personio with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
ext-json Version *
ext-mbstring Version *
psr/http-client Version ^1.0
psr/http-factory Version ^1.0
psr/http-message Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package gamez/personio contains the following files

Loading the files please wait ....