gvhuyssteen/laravel-vimeo
最新稳定版本:1.0.0
Composer 安装命令:
composer require gvhuyssteen/laravel-vimeo
包简介
Laravel 4.2 wrapper for the official Vimeo API. Original: https://github.com/vinkla/vimeo
README 文档
README
Laravel wrapper for the official Vimeo API. Read more about the API in the official Vimeo repository.
// 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);
This package gives you an easy way to handle Vimeo configuration keys like client identifier and secret. The package includes a Facade and a contract which you can integrate within your project. Happy coding!
Installation
Require this package in your composer.json and update composer.
{
"require": {
"vinkla/vimeo": "~1.0"
}
}
Add the service provider to config/app.php in the providers array.
'Vinkla\Vimeo\VimeoServiceProvider'
If you want you can use the facade. Add the reference in config/app.php to your aliases array.
'Vimeo' => 'Vinkla\Vimeo\Facades\Vimeo'
To add the configuration file to your app/config/packages directory, run the command below.
php artisan config:publish vinkla/vimeo
Documentation
This a wrapper for the official Vimeo API package. You can find the documentation in their repository. The documentation applies to this package as well.
License
The Laravel Vimeo package is open-sourced software licensed under the MIT license.
统计信息
- 总下载量: 100
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-06-30
