PHP code example of gvhuyssteen / laravel-vimeo

1. Go to this page and download the library: Download gvhuyssteen/laravel-vimeo 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/ */

    

gvhuyssteen / laravel-vimeo example snippets


// Fetching data.
$vimeo->request('/users/dashron', ['per_page' => 2], 'GET');

// Upload videos.
$vimeo->upload('/home/aaron/foo.mp4', false);

// Wanna use a facade?
Vimeo::uploadImage('/videos/123/images', '/home/aaron/bar.png', true);

'Vinkla\Vimeo\VimeoServiceProvider'

'Vimeo' => 'Vinkla\Vimeo\Facades\Vimeo'
config/app.php
config/app.php
bash
php artisan config:publish vinkla/vimeo