forked from vimeo/laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.35 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "vinkla/vimeo",
"description": "A Vimeo bridge for Laravel",
"license": "MIT",
"keywords": ["laravel", "vimeo", "video"],
"authors": [
{
"name": "Vincent Klaiber",
"email": "[email protected]",
"homepage": "https://vinkla.com"
}
],
"require": {
"php": "^7.0",
"illuminate/contracts": "5.5.*",
"illuminate/support": "5.5.*",
"graham-campbell/manager": "^3.0",
"vimeo/vimeo-api": "^1.2.6"
},
"require-dev": {
"graham-campbell/analyzer": "^1.1",
"graham-campbell/testbench": "^4.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^3.5",
"phpunit/phpunit": "^6.3"
},
"autoload": {
"psr-4": {
"Vinkla\\Vimeo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vinkla\\Tests\\Vimeo\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "3.7-dev"
},
"laravel": {
"providers": [
"Vinkla\\Vimeo\\VimeoServiceProvider"
],
"aliases": {
"Vimeo": "Vinkla\\Vimeo\\Facades\\Vimeo"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}