This installation of Private Packagist is currently running in Setup Mode. This gives access to the admin panel to everyone and should be disabled as soon as possible. Add yourself as an admin once you configured an integration and registered an account successfully. then disable Setup Mode.
Client Library
We provide a php client for the Private Packagist API. The client handles authentication, signature generation and access to all endpoints.
Run composer require private-packagist/api-client php-http/guzzle6-adapter to install the client.
Basic usage
$client = new \PrivatePackagist\ApiClient\Client();
$client->authenticate('api-key', 'api-secret');
$packages = $client->packages()->all();
Api Endpoints
Generating OpenAPI documentation...