-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (83 loc) · 2.21 KB
/
Copy pathcomposer.json
File metadata and controls
84 lines (83 loc) · 2.21 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "gravitypdf/gravitypdf",
"license": "GPL-2.0-or-later",
"homepage": "https://gravitypdf.com",
"scripts": {
"phpcs:lint": "./vendor/bin/phpcs --standard=./tools/phpcs/config.xml",
"phpcs:fix": "./vendor/bin/phpcbf --standard=./tools/phpcs/config.xml",
"phpcs:compatibility": "./vendor/bin/phpcs --standard=./tools/phpcs/config-php-compatibility.xml",
"release": "bash ./tools/release/build.sh",
"translate": "bash ./tools/potomatic/translate.sh",
"prefix": "bash ./tools/php-scoper/prefix.sh",
"post-install-cmd": [
"@composer prefix",
"yarn install --frozen-lockfile && yarn build"
],
"post-update-cmd": [
"@composer prefix"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/GravityPDF/url-signer"
},
{
"type": "composer",
"url": "https://composer.gravity.io",
"only": [
"gravity/*"
]
}
],
"require": {
"php": ">=7.4",
"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": "^4.0",
"wp-phpunit/wp-phpunit": "^6.4",
"humbug/php-scoper": "^0.15.0",
"gravity/gravityforms": "*"
},
"suggest": {
"roots/wordpress-full": "Install to do step debugging on the WordPress codebase."
},
"autoload": {
"psr-4": {
"GFPDF\\": "src/"
},
"classmap": [
"vendor_prefixed/"
]
},
"autoload-dev": {
"psr-4": {
"GFPDF\\Tests\\Concerns\\": "tests/phpunit/Concerns/"
},
"classmap": [
"tests/phpunit/integration/TestCase.php",
"tests/phpunit/integration/AjaxTestCase.php"
]
},
"config": {
"preferred-install": "dist",
"autoloader-suffix": "GravityPDFPlugin",
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": false
}
}
}