forked from fireguard/report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 887 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
35
{
"name": "fireguard/report",
"description": "Report management package in PHP that aims to help you export information in a variety of formats",
"keywords": [ "php", "report", "relatório", "pdf", "html", "image", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Ronaldo Meneguite",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"jakoch/phantomjs-installer": "2.1.1-p06",
"symfony/process": ">=2.7",
"symfony/http-foundation": ">=2.7"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"illuminate/support": "~5.1"
},
"autoload": {
"psr-4": {
"Fireguard\\Report\\": "src/Report"
}
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
}
}