-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.93 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 1.93 KB
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
{
"name": "vutbr/auth-server-core",
"description": "VUTIS: autentizační server - jádro",
"type": "library",
"require": {
"php": ">= 8.2",
"nette/application": "^3.2",
"nette/bootstrap": "^3.2",
"nette/caching": "^3.2",
"nette/di": "^3.2",
"nette/forms": "^3.2",
"nette/http": "^3.2",
"nette/robot-loader": "^4.0",
"nette/security": "^3.2",
"nette/utils": "^4.0",
"latte/latte": "^3.0",
"tracy/tracy": "^2.10",
"symfony/rate-limiter": "^6.4",
"league/oauth2-server": "^9.0",
"monolog/monolog": "^3.5",
"contributte/monolog": "^0.5",
"contributte/psr7-http-message": "^0.10",
"ext-openssl": "*",
"ext-json": "*",
"ext-iconv": "*",
"vutbr-cvis-web/database": "^0.2",
"vutbr-cvis-web/translator": "^0.1",
"vutbr-cvis-web/redis": "^2.1",
"contributte/webpack": "^2.3",
"symfony/lock": "^6.4",
"whichbrowser/parser": "^2.1",
"geoip2/geoip2": "^2.13",
"vutbr-cvis-web/http-client": "^1.1",
"symfony/uid": "^7.2",
"web-auth/webauthn-lib": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "^10",
"phpstan/phpstan": "^2.0",
"roave/security-advisories": "dev-latest",
"spaze/phpstan-disallowed-calls": "^4.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"symfony/browser-kit": "^6.4",
"phpstan/phpstan-nette": "^2.0"
},
"autoload": {
"psr-4": {
"But\\Oauth2\\Server\\": "app/"
}
},
"minimum-stability": "stable",
"config": {
"platform": {
"php": "8.2.0"
}
},
"scripts": {
"latte-lint": "./bin/latte-lint app",
"neon-lint": "./vendor/bin/neon-lint config",
"phpstan": "vendor/bin/phpstan --memory-limit=512M -vvv --ansi analyse --configuration phpstan.neon",
"test": [
"composer audit",
"@neon-lint",
"@latte-lint",
"@phpstan"
]
},
"repositories": [
{
"type": "composer",
"url": "https://repodog.cis.vut.cz/"
}
]
}