forked from GravityPDF/gravity-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (35 loc) · 1000 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
{
"config": {
"preferred-install": "dist",
"autoloader-suffix": "GravityPDFPlugin"
},
"require": {
"mpdf/mpdf": "^7.1.0",
"querypath/QueryPath": ">=3.0.0",
"monolog/monolog": "^1.23.0",
"codeguy/upload": "^1.3"
},
"require-dev": {
"phpunit/phpunit": ">4.0 <7"
},
"autoload": {
"psr-4": {
"GFPDF\\": "src/",
"GFPDF\\Controller\\": "src/controller/",
"GFPDF\\Model\\": "src/model/",
"GFPDF\\View\\": "src/view/",
"GFPDF\\Statics\\": "src/statics/",
"GFPDF\\Helper\\": ["src/helper/", "src/helper/abstract/", "src/helper/interface/", "src/helper/trait/"],
"GFPDF\\Helper\\Licensing\\": "src/helper/licensing/",
"GFPDF\\Helper\\Fields\\": "src/helper/fields/",
"GFPDF\\Test\\": "tests/unit-tests/"
}
},
"scripts": {
"post-update-cmd": [
"yarn global add gulp-cli",
"yarn && gulp",
"yarn run build"
]
}
}