-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.19 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
{
"name": "BytewaveMLP/SubCompare",
"description": "A small Slim 3 application to compare the subscriptions of two YouTube channels",
"type": "project",
"keywords": ["youtube", "youtube data api"],
"homepage": "https://github.com/BytewaveMLP/SubCompare",
"license": "MPL v2.0",
"authors": [
{
"name": "BytewaveMLP",
"email": "[email protected]",
"homepage": "https://bytewave.antigravities.net",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/BytewaveMLP/SubCompare/issues"
},
"require": {
"slim/slim": "^3.0",
"slim/twig-view": "^2.2",
"vlucas/phpdotenv": "^2.4",
"zeuxisoo/slim-whoops": "0.6.*",
"symfony/var-dumper": "^3.3",
"guzzlehttp/guzzle": "^6.3",
"cache/filesystem-adapter": "^0.4.0",
"twig/extensions": "^1.5",
"slim/flash": "^0.2.0",
"php": "^7.0",
"paragonie/certainty": "^1"
},
"autoload": {
"psr-4": {
"SubCompare\\": "src"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}