-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathcomposer.json
34 lines (34 loc) · 906 Bytes
/
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
{
"name": "reportico-web/reportico",
"homepage": "http://www.reportico.org/",
"description": "Reportico Open Source PHP Report Designer",
"type": "project",
"keywords": [ "report", "reporting" ],
"license": "MIT",
"authors": [
{
"name": "Reportico",
"email": "[email protected]",
"homepage": "http://www.reportico.org/"
}
],
"require": {
"php": ">=8.0",
"reportico/adodb-php": "^8.1",
"twig/twig": "^3.0",
"tecnickcom/tcpdf": "^6.2",
"szymach/c-pchart": "^3.0",
"reportico/assetter": "^8.1",
"spatie/browsershot": "^3.29"
},
"autoload": {
"psr-4": {
"Reportico\\Engine\\": "src",
"Reportico\\Widgets\\": "src/widgets",
"pChart\\": "pChart/"
}
},
"config": {
"bin-dir": "bin"
}
}