-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
107 lines (107 loc) · 3.02 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
{
"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.0",
"adam-paterson/oauth2-slack": "^1.1.3",
"bugsnag/bugsnag-symfony": "^1.6.2",
"doctrine/annotations": "^1.13",
"iflorespaz/oauth2-zoom": "dev-master",
"jolicode/slack-php-api": "^4.0",
"nelmio/security-bundle": "^2.10.1",
"nyholm/psr7": "^1.2",
"predis/predis": "^1.1",
"restcord/restcord": "^0.5",
"symfony/asset": "*",
"symfony/console": "*",
"symfony/flex": "^1.4",
"symfony/form": "*",
"symfony/framework-bundle": "*",
"symfony/http-client": "*",
"symfony/monolog-bundle": "^3.3",
"symfony/twig-bundle": "*",
"symfony/validator": "5.3.*",
"symfony/yaml": "*",
"twig/twig": "^3.3",
"wohali/oauth2-discord-new": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.50",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpstan/phpstan-symfony": "^0.12.8",
"symfony/browser-kit": "*",
"symfony/css-selector": "*",
"symfony/debug-bundle": "*",
"symfony/dotenv": "*",
"symfony/maker-bundle": "^1.33",
"symfony/phpunit-bridge": "*",
"symfony/stopwatch": "*",
"symfony/var-dumper": "*",
"symfony/web-profiler-bundle": "*"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/nispeon/oauth2-zoom"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": 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": "5.3.*"
}
}
}