API backends
Deliver JSON services with explicit routes, request validation and predictable response contracts.
A PHP business framework for API services, data integration and automation where routing, configuration, validation and licensing belong to one dependable runtime.
/api/customers/42200{
"id": 42,
"status": "ready",
"source": "primary"
}Cimply.Work keeps transport, data access and domain services close enough to move quickly, while maintaining explicit boundaries for long-lived integrations.
Deliver JSON services with explicit routes, request validation and predictable response contracts.
Connect operational databases, HTTP services and file transfers behind a consistent application layer.
Turn recurring processes into controlled commands, services and scheduled workflows.
Configuration loads the environment. Routing resolves the request. Services perform the work. Mappers, validators and database managers keep data handling intentional.
config.yml defines runtime, application and database settings without scattering environment decisions through controllers.
routing.yml or PHP routes bind a URL to a scoped, callable controller action.
The service locator provides request, translation, mapping, view and database capabilities to the project.
The runtime verifies product, version, host and installation binding before the application starts.
DBConnect:
primary:
driver: "pdo"
dsn: "mysql:host=db"
legacy:
driver: "odbc"
dsn: "ERP_SYSTEM"
App:
baseUrl: "/api"
project: "integration" Use the database manager that fits the target system and keep application code aligned across PDO, MySQLi, SQLSRV and ODBC connections.
The installation guide and code-led documentation take you from bootstrap to licensed deployment.