### Install Vimeo PHP Library Source: https://github.com/vimeo/vimeo.php/blob/master/README.md Installs the Vimeo PHP library using Composer, the dependency manager for PHP. This command should be run in your project's root directory. ```bash composer require vimeo/vimeo-api ``` -------------------------------- ### Run Project Tests Source: https://github.com/vimeo/vimeo.php/blob/master/CONTRIBUTING.md Executes the project's test suite using Composer. This command is essential for verifying code changes before submitting a pull request. ```bash $ composer test ``` -------------------------------- ### Access Vimeo PHP Library Source: https://github.com/vimeo/vimeo.php/blob/master/README.md Shows how to instantiate the Vimeo library object after installation using your Vimeo API client ID and client secret. This object is then used to make API calls. ```php $lib = new \Vimeo\Vimeo($client_id, $client_secret); ``` -------------------------------- ### PHP Nested Arrays for API Parameters Source: https://github.com/vimeo/vimeo.php/blob/master/README.md Demonstrates how to represent API parameters using nested associative arrays in PHP, translating dot notation like `privacy.view` into a structured array. This is crucial for sending data correctly to the Vimeo API via the PHP library. ```php $params = ['privacy' => ['view' => 'disable']]; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.