-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
66 lines (66 loc) · 1.72 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
{
"name": "tlapnet/report",
"description": "Report library for creating custom manager reports",
"type": "library",
"license": "MPL-2.0",
"homepage": "https://github.com/tlapnet/report",
"authors": [
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"dibi/dibi": "~4.1.2",
"latte/latte": "~2.4.8",
"mockery/mockery": "^1.1.0",
"ninjify/qa": "^0.8.0",
"nette/application": "~2.4.12",
"nette/database": "~2.4.6",
"nette/di": "~2.4.13",
"nette/forms": "~2.4.8",
"nette/neon": "~2.4.3",
"nette/utils": "~2.5.2",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-deprecation-rules": "^0.11",
"phpstan/phpstan-nette": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"phpunit/phpunit": "^7.3.5",
"tlapnet/chart": "^1.0.0|^2.0.0",
"tracy/tracy": "~2.5.2"
},
"suggest": {
"dibi/dibi": "Allows use Dibi\\DataSource",
"tlapnet/chart": "Allows use Charts\\Renderers",
"nette/di": "Allows use Nette\\DI [Extensions]",
"nette/application": "Allows use Components",
"nette/forms": "Allows use Nette\\Components [Controls]",
"nette/database": "Allows use Nette\\Database [DataSources]",
"nette/neon": "Allows use Neon\\Loaders",
"latte/latte": "Allows use Components",
"tracy/tracy": "Allows use Connections & DataSources panels"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Tlapnet\\Report\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.6.x-dev"
}
}
}