-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1005 Bytes
/
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": "bssb/app",
"description": "Website and API powering the Beat Saber Server Browser mod (https://bssb.app)",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Roy de Jong",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-curl": "*",
"twig/twig": "^3.4",
"softwarepunt/instarecord": "dev-master@dev",
"hashids/hashids": "^4.1",
"sentry/sdk": "^3.2",
"crunzphp/crunz": "^3.4",
"xpaw/steam-openid": "^2.0",
"robmorgan/phinx": "^0.12.10",
"predis/predis": "^2.0",
"abraham/twitteroauth": "^4.0"
},
"require-dev": {
"ext-xdebug": "*",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"app\\": "app/",
"tests\\": "tests/"
}
},
"config": {
"preferred-install": {
"softwarepunt/*": "source",
"*": "dist"
},
"allow-plugins": {
"php-http/discovery": false
}
}
}