-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
55 lines (55 loc) · 1.36 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
{
"scripts": {
"docs": "redocly preview-docs docs/openapi.yaml",
"build": "vendor/bin/deby --config build/build.php build",
"deploy": "vendor/bin/deby --config build/build.php deploy@server",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon"
},
"autoload": {
"psr-4": {
"AugmentedSteam\\Server\\": "src"
}
},
"require": {
"ext-json": "*",
"ext-simplexml": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"itad/config": "*@dev",
"itad/db": "*@dev",
"league/route": "^5.1",
"guzzlehttp/guzzle": "^7.8",
"monolog/monolog": "^3.5",
"laminas/laminas-diactoros": "^3.3",
"laminas/laminas-httphandlerrunner": "^2.1",
"php-di/php-di": "^7.0",
"nette/schema": "^1.2",
"league/uri": "^7.3",
"league/uri-components": "^7.4",
"filp/whoops": "^2.15",
"sentry/sdk": "^4.0",
"predis/predis": "^2.2",
"php-sage/sage": "^1.5"
},
"require-dev": {
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-deprecation-rules": "^1.1",
"itad/deby": "*@dev"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:IsThereAnyDeal/Config.git"
},
{
"type": "vcs",
"url": "[email protected]:IsThereAnyDeal/Database.git"
},
{
"type": "vcs",
"url": "[email protected]:IsThereAnyDeal/Deby.git"
}
]
}