-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.39 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"config": {
"autoloader-suffix": "Libresign",
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"platform": {
"php": "8.2"
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"post-install-cmd": [
"@composer bin all install --ansi",
"php -d error_reporting=E_ALL\\&~E_DEPRECATED\\&~E_USER_DEPRECATED vendor-bin/php-scoper/vendor/humbug/php-scoper/bin/php-scoper add-prefix --force",
"composer dump-autoload -o"
],
"post-update-cmd": [
"php -d error_reporting=E_ALL\\&~E_DEPRECATED\\&~E_USER_DEPRECATED vendor-bin/php-scoper/vendor/humbug/php-scoper/bin/php-scoper add-prefix --force",
"composer dump-autoload"
]
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
},
"autoload": {
"psr-4": {
"OCA\\Libresign\\3rdparty\\": "3rdparty/composer/"
}
},
"require": {
"bamarni/composer-bin-plugin": "^1.8.2",
"endroid/qr-code": "^6.0.9",
"jsignpdf/jsignpdf-php": "^1.3.1",
"libresign/whatosami": "^0.0.2",
"mikehaertl/php-pdftk": "^0.14.2",
"mpdf/mpdf": "^8.2.6",
"pagerfanta/pagerfanta": "^4.7.1",
"roave/security-advisories": "dev-latest",
"smalot/pdfparser": "^2.12.1",
"twig/twig": "^3.21.1",
"wobeto/email-blur": "^1.0.0"
}
}