Download the PHP package nerd-zero/infisical-php without Composer
On this page you can find all versions of the php package nerd-zero/infisical-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package infisical-php
Infisical PHP Client
A PHP client library for interacting with the Infisical secrets management platform. This package allows developers to programmatically fetch and manage secrets stored in Infisical within their PHP applications.
โ ๏ธ Warning: This project is still a work in progress. APIs, features, and usage may change at any time without notice. Please use with caution and pin versions accordingly if used in production.
๐ฆ Installation
Install via Composer:
๐ Table of Contents
- Introduction
- How to Use
- Customization
- Supported Endpoints
- Authentication Management
- Folder Management
- Secret Management
๐ Introduction
This is a PHP client to connect to the Infisical Secrets Management API with minimal setup and ease of use.
๐ง Features
- Easy to use
- No need to manually generate or fetch tokens โ handled internally
- Only requires the Infisical base URI
- Automatic JSON encoding/decoding
- Works with clean associative arrays and native PHP data
๐งช How to Use
โ๏ธ Customization
(Coming soon โ details on middleware, request retries, logging, and more.)
๐ Supported Endpoints
๐ Authentication Management
Description | Function Name | Supported |
---|---|---|
โ | โ | โ |
(Functions will be documented soon.)
๐ Folder Management
Description | Function Name | Supported |
---|---|---|
List folders | listFolders() |
โ๏ธ |
Get by ID | getFolderById() |
โ๏ธ |
Create folder | createFolder() |
โ๏ธ |
Update folder | updateFolder() |
โ๏ธ |
Delete folder | deleteFolder() |
โ๏ธ |
๐ Secret Management
Description | Function Name | Supported |
---|---|---|
List secrets | listSecrets() |
โ๏ธ |
Create secret | createSecret() |
โ๏ธ |
Get by name | retrieveSecret() |
โ๏ธ |
Update secret | updateSecret() |
โ๏ธ |
Delete secret | deleteSecret() |
โ๏ธ |
Bulk Create Secrets | bulkCreateSecrets() |
โ๏ธ |
Bulk Update Secrets | bulkUpdateSecrets() |
โ๏ธ |
Bulk Delete Secrets | bulkDeleteSecrets() |
โ๏ธ |
Attach tags | attachTags() |
โ๏ธ |
Detach tags | detachTags() |
โ๏ธ |