forked from phpgearbox/pdf
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 loc) · 889 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
36
37
38
39
40
{
"name": "gears/pdf",
"description": "A PDF builder using HTML or DOCX templates.",
"homepage": "https://github.com/phpgearbox/pdf",
"keywords": ["pdf", "docx", "template", "builder", "converter"],
"license": "MIT",
"autoload":
{
"psr-4":
{
"Gears\\": "src"
}
},
"require":
{
"gears/di": "*",
"gears/string": "^0.6.0",
"symfony/process": "2.*",
"symfony/filesystem": "2.*",
"jakoch/phantomjs-installer": "1.9.8"
},
"require-dev":
{
"codegyre/robo": "*",
"phpunit/phpunit": "4.*",
"guzzlehttp/guzzle": "4.*",
"sgh/pdfbox": "dev-master",
"google/apiclient": "1.*",
"symfony/finder": "2.*"
},
"scripts":
{
"post-install-cmd": ["PhantomInstaller\\Installer::installPhantomJS"],
"post-update-cmd": ["PhantomInstaller\\Installer::installPhantomJS"]
},
"suggest":
{
"google/apiclient": "Install to support the Google Docx Converter."
}
}