-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
54 lines (54 loc) · 1.48 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "gravitypdf/gravitypdf",
"license": "GPL-2.0-or-later",
"homepage": "https://gravitypdf.com",
"scripts": {
"lint": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"lint:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"lint:compat": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --standard=phpcompat.xml.dist",
"prefix": "bash ./bin/vendor-prefix.sh"
},
"config": {
"preferred-install": "dist",
"autoloader-suffix": "GravityPDFPlugin",
"platform": {
"php": "7.3.0"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/GravityPDF/url-signer"
}
],
"require": {
"php": ">=7.3",
"mpdf/mpdf": "^8.2.4",
"monolog/monolog": "^2.1.0",
"spatie/url-signer": "^1.1",
"mpdf/qrcode": "^1.0",
"gravitypdf/querypath": "^4.0",
"gravitypdf/upload": "^3.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"wp-coding-standards/wpcs": "^3.0.0",
"phpcompatibility/phpcompatibility-wp": "*",
"roave/security-advisories": "dev-master",
"yoast/phpunit-polyfills": "^3.0",
"wp-phpunit/wp-phpunit": "^6.4"
},
"autoload": {
"psr-4": {
"GFPDF\\": "src/",
"Psr\\Http\\Message\\": "vendor/psr/http-message/src",
"Psr\\Log\\": "vendor/psr/log/Psr/Log"
},
"classmap": [
"vendor_prefixed/"
]
}
}