Download the PHP package durable-workflow/workflow without Composer

On this page you can find all versions of the php package durable-workflow/workflow. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package workflow

GitHub Workflow Status Codecov Packagist Downloads (custom server) Docs Packagist License

Durable Workflow (formerly Laravel Workflow) is a package for the Laravel web framework that provides tools for defining and managing workflows and activities. A workflow is a series of interconnected activities that are executed in a specific order to achieve a desired result. Activities are individual tasks or pieces of logic that are executed as part of a workflow.

Durable Workflow can be used to automate and manage complex processes, such as agentic workflows (AI-driven), financial transactions, data analysis, data pipelines, microservices, job tracking, user signup flows, sagas and other business processes. By using Durable Workflow, developers can break down large, complex processes into smaller, modular units that can be easily maintained and updated.

Some key features and benefits of Durable Workflow include:

Documentation

Documentation for Durable Workflow can be found on the website.

Community

You can find us in the GitHub discussions and also on our Discord channel.

Sample App

There's also a sample application that you can run directly from GitHub in your browser.

Usage

Install the embedded Laravel runtime:

This package owns Laravel service-provider integration, migrations, Eloquent models, queue jobs, replay persistence, and in-process workflow and activity authoring. It does not include a client or remote-worker runtime for the standalone server.

1. Create a workflow

2. Create an activity

3. Run the workflow

Using a dedicated storage connection

By default all workflow persistence (every Eloquent model and every migration shipped by this package) lives on your application's default database connection. To isolate workflow state on its own database — for separate backup/retention/scaling, a different driver, or tenant isolation — point the package at a dedicated connection:

When set, both the models and the migrations are routed to that connection, so php artisan migrate creates the workflow tables there and all reads/writes target it. Leaving it null preserves today's behavior exactly.

The schema/database is governed by the connection's own configuration — use search_path for PostgreSQL or database for MySQL on that connection. There is no separate schema option.

Embedded and Polyglot Usage

This package provides the application-embedded version of Durable Workflow for Laravel.

Use it when your workflows and activities run within a Laravel application and you do not need workers written in other languages.

For standalone or polyglot orchestration, run the standalone Durable Workflow server and install the PHP SDK in framework-neutral PHP applications and remote workers:

The standalone server allows PHP, Python, Rust, and other supported SDKs to participate in the same workflow system.

Deployment mode PHP package Runtime owner
Embedded Laravel durable-workflow/workflow The Laravel application owns durable state and queue execution.
Standalone server host durable-workflow/workflow inside durable-workflow/server The server hosts Workflow's engine contracts and persistence.
Standalone PHP client or remote worker durable-workflow/sdk The SDK owns authentication, transport, protocol types, client operations, and worker polling.

Sponsors

The Durable Workflow package is sustained by the community via sponsors and volunteers.

Monitoring

Waterline is a separate UI that works nicely alongside Horizon. Think of Waterline as being to workflows what Horizon is to queues. Waterline is a technical runtime UI for operators: use it for fleet health, queues, waits, retries, failures, repair, and history diagnostics. Business dashboards should read app-owned milestone projections keyed by workflow_id and run_id, not Waterline data or workflow runtime tables.

Dashboard View

Waterline dashboard

Workflow View

Waterline workflow detail

Refer to https://github.com/durable-workflow/waterline for installation and configuration instructions.


All versions of workflow with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
laravel/framework Version ^9.52.17|^10.48.29|^11.44.1|^12.61.1|^13.12.0
react/promise Version ^2.9|^3.0
apache/avro Version ^1.12
symfony/yaml Version ^6.0|^7.0|^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package durable-workflow/workflow contains the following files

Loading the files please wait ...