forked from dukt/videos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.33 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
56
57
58
59
60
{
"name": "dukt/videos",
"description": "Connect to YouTube & Vimeo and publish social videos on your website.",
"version": "3.0.0",
"type": "craft-plugin",
"license": "proprietary",
"keywords": [
"vimeo",
"youtube",
"videos",
"cms",
"craftcms"
],
"authors": [
{
"name": "Dukt",
"homepage": "https://dukt.net/"
},
{
"name": "Bound State Software",
"homepage": "https://boundstatesoftware.com"
}
],
"support": {
"docs": "https://github.com/boundstate/craft-videos?tab=readme-ov-file#readme",
"source": "https://github.com/boundstate/craft-videos",
"issues": "https://github.com/boundstate/craft-videos/issues"
},
"require": {
"php": "^8.0.2",
"craftcms/cms": "^5.0.0",
"league/oauth2-client": "^2.5.0",
"saf33r/oauth2-vimeo": "^0.3.0",
"league/oauth2-google": "^4.0.0"
},
"autoload": {
"psr-4": {
"dukt\\videos\\": "src/"
}
},
"extra": {
"name": "Videos",
"handle": "videos"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
},
"minimum-stability": "dev",
"prefer-stable": true
}