-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.94 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
{
"name": "heroesofabenez/game",
"description": "Work in progress online game Heroes of Abenez",
"homepage": "http://heroesofabenez.tk/",
"license": "proprietary",
"type": "project",
"authors": [
{
"name": "Jakub Konečný",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"require": {
"php": ">=8.1.0",
"ext-curl": "*",
"ext-spl": "*",
"nette/application": "^3.1.10",
"nette/bootstrap": "^3.2",
"nette/caching": "^3.2.2",
"nette/di": "^3.1.2",
"nette/forms": "^3.1.11",
"nette/security": "^3.1",
"nette/utils": "^3.2.8",
"tracy/tracy": "^2.10.2",
"latte/latte": "^2.11.4",
"nexendrie/translation": "^2.3.2",
"nexendrie/menu": "^2.4",
"nexendrie/utils": "^1.8.1",
"nextras/orm": "^4.0.5",
"symfony/options-resolver": "^5.4",
"heroesofabenez/chat": "^2.1",
"heroesofabenez/combat": "^1.0",
"nette/http": "3.1.2"
},
"require-dev": {
"nexendrie/code-quality": "dev-master",
"phpstan/phpstan-nette": "^1.2.4",
"nextras/orm-phpstan": "^1.0.1"
},
"replace": {
"symfony/polyfill-php73": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-mbstring": "*"
},
"autoload": {
"psr-4": {
"HeroesofAbenez\\": [
"app/"
]
},
"classmap": ["app/Model/exceptions.php"]
},
"autoload-dev": {
"psr-4": {
"HeroesofAbenez\\": [
"tests/HeroesofAbenez/"
]
}
},
"config": {
"classmap-authoritative": true
},
"scripts": {
"post-update-cmd": [
"php -r \"copy('vendor/nette/forms/src/assets/netteForms.js', 'www/js/netteForms.js');\""
]
},
"minimum-stability": "dev",
"prefer-stable": true
}