-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
42 lines (42 loc) · 975 Bytes
/
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
{
"name": "drmonkeyninja/cakephp-video-helper",
"description": "CakePHP helper for embedding YouTube and Vimeo videos",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"video",
"youtube",
"vimeo",
"dailymotion",
"wistia"
],
"homepage": "https://github.com/drmonkeyninja/cakephp-video-helper",
"license": "MIT",
"authors": [
{
"name": "Andy Carter",
"role": "Author"
},
{
"name": "Emerson Soares",
"role": "Author"
}
],
"require": {
"cakephp/cakephp": "~3.0"
},
"extra": {
"installer-name": "VideoEmbed"
},
"autoload": {
"psr-4": {
"VideoEmbed\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "./vendor/drmonkeyninja/cakephp-video-helper/tests",
"VideoEmbed\\Test\\": "tests"
}
}
}