PHP code example of graham-campbell / gitlab

1. Go to this page and download the library: Download graham-campbell/gitlab library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

graham-campbell / gitlab example snippets


        'GitLab' => GrahamCampbell\GitLab\Facades\GitLab::class,

use GrahamCampbell\GitLab\Facades\GitLab;
// you can alias this in config/app.php if you like

GitLab::groups()->all();
// we're done here - how easy was that, it just works!

use GrahamCampbell\GitLab\Facades\GitLab;

// writing this:
GitLab::connection('main')->groups()->all();

// is identical to writing this:
GitLab::groups()->all();

// and is also identical to writing this:
GitLab::connection()->groups()->all();

// this is because the main connection is configured to be the default
GitLab::getDefaultConnection(); // this will return main

// we can change the default connection
GitLab::setDefaultConnection('alternative'); // the default is now alternative

use GrahamCampbell\GitLab\GitLabManager;

class Foo
{
    public function __construct(
        private readonly GitLabManager $gitlab,
    ) {
    }

    public function bar()
    {
        $this->gitlab->groups()->all();
    }
}

app(Foo::class)->bar();
bash
$ php artisan vendor:publish