An object oriented PHP wrapper for the Gitea API
- PHP >= 8.2
- A PSR-17 implementation
- A PSR-18 implementation
Via Composer
composer require owenvoke/gitea guzzlehttp/guzzle:^7.9 http-interop/http-factory-guzzle:^1.2We are decoupled from any HTTP messaging client with help by HTTPlug.
Basic usage
// Include the Composer autoloader
require_once __DIR__ . '/vendor/autoload.php';
$client = new \OwenVoke\Gitea\Client();
$repositories = $client->user()->repositories();Authentication
Note: Gitea only supports authentication via an API token.
use OwenVoke\Gitea\Client;
$client = new Client();
$client->authenticate($apiToken, null, Client::AUTH_ACCESS_TOKEN);Self-hosted Gitea instances
The Gitea PHP wrapper can be configured to use a custom-hosted instance, rather than gitea.com.
// Specify the URL of the Gitea instance on client initialization
$client = new \OwenVoke\Gitea\Client(null, null, 'https://gitea.example.com');Please see CHANGELOG for more information on what has changed recently.
composer testPlease see CONTRIBUTING for details.
If you discover any security related issues, please email security@voke.dev instead of using the issue tracker.
- Owen Voke
- KNP Labs (based on their GitHub client)
- All Contributors
The MIT License (MIT). Please see License File for more information.
You're free to use this package, but if it makes it to your production environment you are required to buy the world a tree.
It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to plant trees. If you support this package and contribute to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
You can buy trees here.
Read more about Treeware at treeware.earth.