-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (43 loc) · 1.01 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
{
"name": "juniwalk/calendar",
"description": "Nette integration for FullCalendar.",
"type": "library",
"keywords": ["nette","nettefw","calendar","fullcalendar"],
"license": "MIT",
"authors": [{
"name": "Martin Procházka",
"email": "[email protected]",
"role": "Developer"
}],
"autoload": {
"psr-4": {"JuniWalk\\Calendar\\": "src/"}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": ">=8.1",
"contributte/translation": "^2.0",
"juniwalk/components": "^1.0",
"juniwalk/utils": ">=3.1.3|^4.0",
"nette/application": "^3.0",
"nette/di": "^3.0",
"nette/http": "^3.0",
"tracy/tracy": "^2.0"
},
"require-dev": {
"nette/tester": "^2.5",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"staabm/phpstan-todo-by": "^0.1"
},
"suggest": {
"contributte/translation": "Needed for locale autodetection"
}
}