-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·60 lines (60 loc) · 1.81 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": "coderun/cross-posting-videos-on-social-networks-from-youtube",
"description": "Cross-posting videos on social networks from youtube",
"keywords": [
"Laminas",
"Telegram",
"RuTube",
"Vkontakte",
"YouTube"
],
"type": "project",
"authors": [
{
"name": "Djo",
"email": "izm@zixn.ru",
"homepage": "https://github.com/northmule/cross-posting-videos-on-social-networks-from-youtube",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"google/apiclient": "^2.7",
"athlon1600/youtube-downloader": "^3.0",
"vlucas/phpdotenv": "^5.5",
"laminas/laminas-config-aggregator": "^1.9",
"laminas/laminas-stdlib": "^3.13",
"ramsey/uuid": "^4.2",
"monolog/monolog": "^2.9",
"symfony/filesystem": "^5.4",
"symfony/mime": "^6.3",
"guzzlehttp/guzzle": "^7.8",
"northmule/dependency-injection-container": "^2.1"
},
"autoload": {
"psr-4": {
"Coderun\\RuTube\\": "module/RuTube/src",
"Coderun\\Vkontakte\\": "module/Vkontakte/src",
"Coderun\\Telegram\\": "module/Telegram/src",
"Coderun\\Youtube\\": "module/Youtube/src",
"Coderun\\Common\\": "module/Common/src"
}
},
"config": {
"platform-check": false,
"allow-plugins": {
"composer/installers": true
}
},
"scripts": {
"post-update-cmd": "Google\\Task\\Composer::cleanup",
"cs-check": "tools/vendor/bin/phpcs",
"cs-fix": "tools/vendor/bin/phpcbf",
"phpstan": "tools/vendor/bin/phpstan analyze -c phpstan.neon"
},
"extra": {
"google/apiclient-services": [
"YouTube"
]
}
}