-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
98 lines (98 loc) · 2.87 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "athorcis/athorrent-frontend",
"description": "A lightweight seedbox frontend",
"type": "project",
"license": "Apache-2.0",
"require": {
"php": "^8.3",
"ext-ctype": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-sockets": "*",
"composer/package-versions-deprecated": "1.11.99.5",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^3.1.2",
"gabrielelana/byte-units": "^0.5",
"nelmio/security-bundle": "^3.0",
"symfony/console": "7.2.*",
"symfony/css-selector": "7.2.*",
"symfony/dom-crawler": "7.2.*",
"symfony/dotenv": "7.2.*",
"symfony/flex": "^2.2.2",
"symfony/form": "7.2.*",
"symfony/framework-bundle": "7.2.*",
"symfony/http-client": "7.2.*",
"symfony/mime": "7.2.*",
"symfony/monolog-bundle": "^3.1",
"symfony/process": "7.2.*",
"symfony/proxy-manager-bridge": "6.4.*",
"symfony/rate-limiter": "7.2.*",
"symfony/runtime": "7.2.*",
"symfony/security-bundle": "7.2.*",
"symfony/translation": "7.2.*",
"symfony/twig-bundle": "7.2.*",
"symfony/validator": "7.2.*",
"symfony/webpack-encore-bundle": "^v2.1.1",
"symfony/yaml": "7.2.*",
"twig/twig": "^2.12|^3.0",
"twig/cache-extra": "^3.13",
"twig/extra-bundle": "^3.13"
},
"minimum-stability": "stable",
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/debug-bundle": "7.1.*",
"symfony/stopwatch": "7.1.*",
"symfony/web-profiler-bundle": "7.1.*"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true,
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"Athorrent\\": "src/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "7.2.*"
}
}
}