-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.49 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
{
"name": "heroesofabenez/chat",
"description": "A simple chat component",
"keywords": [
"simple", "chat", "component", "nette"
],
"license": "BSD-3-Clause",
"homepage": "https://heroesofabenez.gitlab.io",
"authors": [
{
"name": "Jakub Konečný",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"source": "https://gitlab.com/heroesofabenez/chat/",
"issues": "https://gitlab.com/heroesofabenez/chat/issues"
},
"require": {
"php": ">=7.4.0",
"nette/application": "^3.1.2",
"nette/di": "^3.0.5",
"nette/forms": "^3.1.3",
"latte/latte": "^2.6 || ^3.0",
"nette/utils": "^3.2.2",
"nexendrie/utils": "^1.8",
"symfony/polyfill-php80": "^1.22.1"
},
"require-dev": {
"nexendrie/code-quality": "dev-master",
"nexendrie/site-generator": "^0.6",
"nexendrie/translation": "^2.3.1"
},
"suggest": {
"nexendrie/translation": "Translator"
},
"autoload": {
"psr-4": {
"HeroesofAbenez\\Chat\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HeroesofAbenez\\Chat\\": "tests/HeroesofAbenez/Chat"
}
},
"config": {
"classmap-authoritative": true
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}