forked from GravityPDF/gravity-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (33 loc) · 911 Bytes
/
composer.json
File metadata and controls
37 lines (33 loc) · 911 Bytes
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
{
"config": {
"preferred-install": "dist"
},
"require": {
"blueliquiddesigns/mpdf": "dev-wordpress-master",
"querypath/QueryPath": ">=3.0.0",
"monolog/monolog": "1.16.0",
"codeguy/upload": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"GFPDF\\": "src/",
"GFPDF\\Controller\\": "src/controller/",
"GFPDF\\Model\\": "src/model/",
"GFPDF\\View\\": "src/view/",
"GFPDF\\Helper\\": ["src/helper/", "src/helper/abstract/", "src/helper/interface/"],
"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"
]
}
}