appwrite/php-runtimes

Appwrite repository for Cloud Function runtimes that contains the configurations and tests for all of the Appwrite runtime environments.

Maintainers

👁 eldadfux

Package info

github.com/appwrite/runtimes

pkg:composer/appwrite/php-runtimes

Statistics

Installs: 237 520

Dependents: 1

Suggesters: 0

Stars: 48

Open Issues: 10

0.20.2 2026-06-03 13:32 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

BSD-3-Clause ae3ab62c57ddc2a0127f3b288c3f035b272025b1

  • Eldad Fux <eldad.woop@appwrite.io>
  • Torsten Dittmann <torsten.woop@appwrite.io>

phpappwriteruntimes

This package is auto-updated.

Last update: 2026-06-03 13:34:59 UTC


README

👁 Discord
👁 Total Downloads
👁 Build Status
👁 Twitter Account

Appwrite repository for Cloud Function runtimes that contains the configurations and tests for all of the Appwrite runtime environments. This library is maintained by the Appwrite team.

Getting Started

Install using composer:

composer require appwrite/php-runtimes
<?php

require_once '../vendor/autoload.php';

use Appwrite\Runtimes\Runtimes;

$runtimes = new Runtime();

// returns all supported cloud function runtimes
Runtimes::getAll();

Adding a new Runtime

After the Docker image is created, this must be added to the main class of this library.

References to this must be added to the constructor of src/Runtimes/Runtimes.php.

Example:

$dotnet = new Runtime('dotnet', '.NET');
$dotnet->addVersion('5.0', 'mcr.microsoft.com/dotnet/runtime:5.0-alpine', 'appwrite/env-dotnet-5.0:1.0.0', [System::X86, System::ARM]);
$runtimes[] = $dotnet;

Contributing

All code contributions - including those of people having commit access - must go through a pull request and approved by a core developer before being merged. This is to ensure proper review of all the code.

We truly ❤️ pull requests! If you wish to help, you can learn more about how you can contribute to this project in the contribution guide.

Authors

Torsten Dittmann

Copyright and license

BSD 3-Clause License https://opensource.org/licenses/BSD-3-Clause