ikasgela/laravel-gitea is a Laravel package for gitea api integration for laravel.
It currently has 1 GitHub stars and 1.682 downloads on Packagist (latest version 1.0.17).
Install it with composer require ikasgela/laravel-gitea.
Discover more Laravel packages by ikasgela
or browse all Laravel packages to compare alternatives.
Last updated
Gitea API integration for Laravel.
You can install the package via composer:
composer require ikasgela/laravel-gitea
You can publish the config file with:
php artisan vendor:publish --provider="Ikasgela\Gitea\GiteaServiceProvider"
This is the contents of the published config file:
return [
'url' => env('GITEA_URL'),
'token' => env('GITEA_TOKEN'),
];
$repository = GiteaClient::repo('user/repository');
echo $repository['http_url_to_repo'];
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
Apache License 2.0. Please see License File for more information.