Utopia VCS is a simple and lite library for interacting with version control systems (VCS) in Utopia-PHP using adapters for different providers like GitHub, GitLab etc. This library is aiming to be as simple and easy to learn and use. This library is maintained by the Appwrite team.
Install using composer:
composer require utopia-php/vcs
Init in your application:
<?php
require_once __DIR__ . '/../../vendor/autoload.php';
use Utopia\VCS\Adapter\Git\GitHub;
// Initialise your adapter
$github = new GitHub();
// Your GitHub app private key. You can generate this from your GitHub App settings.
$privateKey = 'your-github-app-private-key';
// Your GitHub App ID. You can find this in the GitHub App dashboard.
$githubAppId = 'your-github-app-id';
// Your GitHub App installation ID. You can find this in the GitHub App installation settings.
$installationId = 'your-github-app-installation-id';
// Initialise variables
$github->initializeVariables($installationId, $privateKey, $githubAppId);
// Perform the actions that you want, ex: create repository
$owner = '<repository-owner>';
$name = '<repository-name>';
$isPrivate = true; // Set to false if you want to create a public repository
$repository = $github->createRepository($owner, $name, $private);
To configure your GitHub App properly, you'll need to set up the following environment variables in your environment or configuration file. These values are crucial for authenticating and interacting with the GitHub API on behalf of your GitHub App.
- PRIVATE_KEY: You can generate this from your GitHub App settings.
PRIVATE_KEY = your-github-app-private-key
- GITHUB_APP_ID: You can find this in the GitHub App dashboard.
GITHUB_APP_ID = your-github-app-id
- INSTALLATION_ID: You can find this in the GitHub App installation settings after installation.
INSTALLATION_ID = your-github-app-installation-id
Remember to replace the placeholders (your-github-app-private-key, your-github-app-id, and your-github-app-installation-id) with the actual values from your GitHub App configuration. By using these environment variables, you can ensure that sensitive information is kept separate from your codebase and can be easily managed across different environments without exposing sensitive data.
VCS Adapters:
Adapter | Status |
---|---|
GitHub | ✅ |
GitLab | |
Bitbucket | |
Azure DevOps |
Detector Adapters:
Adapter | Status |
---|---|
CPP | ✅ |
Dart | ✅ |
Deno | ✅ |
Dotnet | ✅ |
Java | ✅ |
JavaScript | ✅ |
PHP | ✅ |
Python | ✅ |
Ruby | ✅ |
Swift | ✅ |
Bun | ✅ |
✅ - supported, 🛠 - work in progress
Utopia VCS requires PHP 8.0 or later. We recommend using the latest PHP version whenever possible.
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.
Fork the project, create a feature branch, and send us a pull request.
You can refer to the Contributing Guide for more info.
To run tests, you first need to bring up the example Docker stack with the following command:
docker compose up -d --build
To run all unit tests, use the following Docker command:
docker compose exec tests ./vendor/bin/phpunit
The MIT License (MIT) http://www.opensource.org/licenses/mit-license.php