A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/royvoetman/laravel-gitlab-storage below:

RoyVoetman/laravel-gitlab-storage: A Gitlab Storage driver for Laravel.

A Gitlab Storage driver for Laravel

This package is a wrapper bridging Flysystem-Gitlab-storage into Laravel as an available storage disk.

composer require royvoetman/laravel-gitlab-storage

Add a new disk to your filesystems.php config

'gitlab' => [
    'driver'                => 'gitlab',
    'personal-access-token' => env('GITLAB_ACCESS_TOKEN', ''), // Personal access token
    'project-id'            => env('GITLAB_PROJECT_ID'), // Project id of your repo
    'branch'                => env('GITLAB_BRANCH', 'master'), // Branch that should be used
    'base-url'              => env('GITLAB_BASE_URL', 'https://gitlab.com'), // Base URL of Gitlab server you want to use
],
Access token (required for private projects)

Gitlab supports server side API authentication with Personal Access tokens

For more information on how to create your own Personal Access token: Gitlab Docs

Every project in Gitlab has its own Project ID. It can be found at to top of the frontpage of your repository. See

This will be the URL where you host your gitlab server (e.g. https://gitlab.com)

$disk = Storage::disk('gitlab');

// create a file
$disk->put('images/', $fileContents);

// check if a file exists
$exists = $disk->exists('file.jpg');

// copy a file
$disk->copy('old/file1.jpg', 'new/file1.jpg');

// move a file
$disk->move('old/file1.jpg', 'new/file1.jpg');

// See https://laravel.com/docs/filesystem for a full list of all the available functionality

Please see CHANGELOG for more information what has changed recently.

Contributions are welcome and will be fully credited. We accept contributions via Pull Requests on Github.

The MIT License (MIT). Please see License File for more information.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4