🔌
One backend, many front ends.
API backend hosting
One PHP service, many clients. The backend answers JSON from one environment; the front ends ship wherever they live — app stores, CDNs, other hosts.
Built with
Built by
Features
Benefits
Solutions
A PHP service that answers JSON, consumed by clients it doesn't control and can't deploy. No templates, no session cookies — only routes that take a request and return data. Deploys go by git push: the build runs Composer in a separate deploy container, and only a finished package syncs into the web space. Migrations and console commands run over SSH.
Work that isn't a response
Sending mail, generating exports, and calling third parties that time out have no business inside a request. The jobs component runs workers and cron jobs in a container isolated from the web layer, sharing the code base, database, and env vars — a webhook handler that writes a row and returns immediately survives a spike that a synchronous one won't. Jobs scale by memory and job count, separately from PHP.
Persistent connections aren't supported, so APIs that need to push do it by polling or by calling webhooks back out.
Trust
An honest account.
