ente / portainer-php-api
A PHP API client for Portainer CE
0.1
2024-12-15 11:38 UTC
Requires
- php: >=8.0
- mirazmac/dotenvwriter: ^0.4.0
- vlucas/phpdotenv: 5.6.1
This package is auto-updated.
Last update: 2025-03-16 18:15:36 UTC
README
Portainer PHP API client For the full API documentation implemented, please take a look at https://app.swaggerhub.com/apis/portainer/portainer-ce/2.21.4#/
Supported endpoint groups
- Auth
- Backup
- CustomTemplates
- Docker
- Endpoints
- LDAP
- Motd
- Gitops
- Registries
Installation
Download the package using composer:
composer require ente/portainer-php-api
Then configure .env file with the following variables:
- API_URL (e.g.
localhost:9443
) - USERNAME
- PASSWORD
- IGNORE_SSL (currently all requests are made with
verify
set tofalse
)
Usage
require_once __DIR__ . "/vendor/autoload.php"; use Portainer\Portainer; $portainer = new Portainer(__DIR__, ".env", "username", "password", "https://yourhost:9443"); echo var_dump($portainer->customTemplates()->list()); // array containing custom templates