-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.12 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.12 KB
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
{
"name": "programie/tracky",
"description": "Track your watched movies and TV shows",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"tracky\\": "src/main/php/tracky"
}
},
"authors": [
{
"name": "Michael Wieland",
"email": "git@selfcoders.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.4",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/psr7": "^2.6",
"symfony/asset": "^8.1",
"symfony/cache": "^6.2",
"symfony/config": "^7.4",
"symfony/console": "^7.4",
"symfony/dependency-injection": "^7.4",
"symfony/dotenv": "^8.1",
"symfony/framework-bundle": "^7.4",
"symfony/orm-pack": "^2.7",
"symfony/runtime": "^8.1",
"symfony/security-bundle": "^8.0",
"symfony/translation": "^8.1",
"symfony/twig-bundle": "^7.4",
"symfony/yaml": "^8.1",
"twig/extra-bundle": "^3.24",
"twig/html-extra": "^3.28",
"twig/intl-extra": "^3.26",
"twig/twig": "^3.28"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"require-dev": {
"symfony/profiler-pack": "^1.0"
}
}