An open API service indexing awesome lists of open source software.

https://github.com/utopia-php/vcs

Lite & fast micro PHP vcs abstraction library that is **easy to use**.
https://github.com/utopia-php/vcs

Last synced: about 2 months ago
JSON representation

Lite & fast micro PHP vcs abstraction library that is **easy to use**.

Awesome Lists containing this project

README

        

# Utopia VCS

[![Build Status](https://travis-ci.org/utopia-php/vcs.svg?branch=master)](https://travis-ci.com/utopia-php/vcs)
![Total Downloads](https://img.shields.io/packagist/dt/utopia-php/vcs.svg)
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord)](https://appwrite.io/discord)

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](https://appwrite.io).

## Getting Started

Install using composer:
```bash
composer require utopia-php/vcs
```

Init in your application:
```php
initializeVariables($installationId, $privateKey, $githubAppId);

// Perform the actions that you want, ex: create repository
$owner = '';
$name = '';
$isPrivate = true; // Set to false if you want to create a public repository
$repository = $github->createRepository($owner, $name, $private);
```

### Environment Variables
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.

1. *PRIVATE_KEY*: You can generate this from your GitHub App settings.
```bash
PRIVATE_KEY = your-github-app-private-key
```
2. *GITHUB_APP_ID*: You can find this in the GitHub App dashboard.
```bash
GITHUB_APP_ID = your-github-app-id
```
3. *INSTALLATION_ID*: You can find this in the GitHub App installation settings after installation.
```bash
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.

### Supported Adapters

VCS Adapters:

| Adapter | Status |
|---------|---------|
| GitHub | ✅ |
| GitLab | |
| Bitbucket | |
| Azure DevOps | |

`✅ - supported, 🛠 - work in progress`

## System Requirements

Utopia VCS requires PHP 8.0 or later. We recommend using the latest PHP version whenever possible.

## 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.

Fork the project, create a feature branch, and send us a pull request.

You can refer to the [Contributing Guide](CONTRIBUTING.md) for more info.

## Tests

To run tests, you first need to bring up the example Docker stack with the following command:

```bash
docker compose up -d --build
```

To run all unit tests, use the following Docker command:

```bash
docker compose exec tests ./vendor/bin/phpunit
```

## Copyright and license

The MIT License (MIT) [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php)