-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
108 lines (108 loc) · 3.12 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
99
100
101
102
103
104
105
106
107
108
{
"name": "jolicode/secret-santa",
"description": "Throw a Secret Santa with your team!",
"license": "MIT",
"authors": [
{
"name": "JoliCode",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"JoliCode\\SecretSanta\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JoliCode\\SecretSanta\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"adam-paterson/oauth2-slack": "^1.1.3",
"bugsnag/bugsnag-symfony": "^1.14.2",
"doctrine/annotations": "^1.14.4",
"jolicode/slack-php-api": "^4.7.1",
"nelmio/security-bundle": "^3.4.2",
"nyholm/psr7": "^1.8.2",
"predis/predis": "^2.2.2",
"restcord/restcord": "dev-feature/update-sf",
"symfony/asset": ">=7.1.1",
"symfony/console": ">=7.1.5",
"symfony/flex": "^2.4.7",
"symfony/form": ">=7.1.5",
"symfony/framework-bundle": ">=7.1.5",
"symfony/http-client": ">=7.1.5",
"symfony/monolog-bundle": "^3.10",
"symfony/runtime": ">=7.1.1",
"symfony/twig-bundle": ">=7.1.5",
"symfony/validator": ">=7.1.5",
"symfony/yaml": ">=7.1.5",
"twig/twig": "^3.14",
"wohali/oauth2-discord-new": "^1.2.1"
},
"require-dev": {
"symfony/browser-kit": ">=7.1.1",
"symfony/css-selector": ">=7.1.1",
"symfony/debug-bundle": ">=7.1.1",
"symfony/dotenv": ">=7.1.5",
"symfony/maker-bundle": "^1.61",
"symfony/phpunit-bridge": ">=7.1.4",
"symfony/stopwatch": ">=7.1.1",
"symfony/var-dumper": ">=7.1.5",
"symfony/web-profiler-bundle": ">=7.1.4"
},
"repositories": {
"jewome62_restcord": {
"type": "vcs",
"url": "[email protected]:jewome62/restcord.git"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true,
"php-http/discovery": true
}
},
"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 --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*",
"symfony/twig-bundle": "<3.3",
"symfony/debug": "<3.3"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.1.*"
}
}
}