Download the PHP package mnfst/manifest-php without Composer
On this page you can find all versions of the php package mnfst/manifest-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mnfst/manifest-php
More information about mnfst/manifest-php
Files in mnfst/manifest-php
Package manifest-php
Short Description Turn 4xx API errors into 2xx in real time.
License MIT
Informations about the package manifest-php
What is Manifest
Manifest is a self-healing layer that fixes and retries failed API requests on the fly.
- π― Fix failures automatically before they impact your users.
- π Get notified of root causes so you can fix them permanently.
- π Works across your stack with internal APIs, external services, and agent tools.
How it works
Prerequisites
- PHP 8.2 or higher
- The opentelemetry extension:
In Docker, one line:
PHP cannot instrument an HTTP client without it, so the SDK sees nothing until it is installed.
Get started
Start with your agent
The prompt installs the extension, wires the loading order, and stops to let you paste your key.
Start with code
Manifest must load before your application makes its first HTTP call. A PHP hook cannot attach
to a function that has already run, so an SDK that loads late sees nothing. Point
auto_prepend_file at the bundled entry point:
Or call it yourself, as the first thing your application does:
Laravel and CakePHP need no code of their own.
Setup
- Create a project in your Manifest dashboard and copy its project key.
- Set the key as an environment variable:
Verify the install from your project directory:
It masks and validates the key, reports which coverage level is active, and tells you whether the SDK is loading early enough.
Try it
Send a request that would normally fail. Manifest catches it, repairs it, and retries:
Check your Manifest dashboard to see all repairs and insights.
What is covered
| The app calls an API via⦠| Covered |
|---|---|
Laravel's Http facade |
β healed |
| Guzzle, any client, including one built inside a third-party library | β healed |
CakePHP's Cake\Http\Client |
β healed |
A library with its own raw curl_* client, such as stripe/stripe-php |
β οΈ captured, never healed |
file_get_contents |
β not seen |
The curl_* row is a permanent limit of PHP, not a temporary gap. The extension can observe an
internal function but cannot replace its return value, so those failures appear in your dashboard
while your application still receives the original error.
Supported infrastructure
| Infrastructure | Supported |
|---|---|
| Docker, Kubernetes | β one line in the Dockerfile |
| A VPS or your own server (Forge, Ploi) | β
pecl install opentelemetry |
| Heroku, Platform.sh | β οΈ only if the platform ships the extension |
| Laravel Vapor, Bref | β οΈ possible with a custom Lambda layer |
| Shared hosting (cPanel, Hostinger, OVH) | β you do not control the runtime |
More
Website