forked from LibreSign/libresign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.17 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
{
"name": "libresign/libresign",
"description": "libresign",
"type": "project",
"license": "AGPL",
"require": {
"jsignpdf/jsignpdf-php": "^1",
"setasign/fpdi": "^2.3",
"setasign/fpdf": "^1.8",
"endroid/qr-code": "^4.2",
"pagerfanta/pagerfanta": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"nextcloud/coding-standard": "^0.4.0",
"phpspec/prophecy-phpunit": "^2.0",
"byjg/swagger-test": "dev-latest",
"symfony/yaml": "^5.2",
"guzzlehttp/psr7": "^1.8",
"mikey179/vfsstream": "^1.6",
"donatj/mock-webserver": "^2.2"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
},
"autoload": {
"psr-4": {
"OCA\\Libresign\\": "lib/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/jsignpdf/jsignpdf-php"
},
{
"type": "vcs",
"url": "https://github.com/LibreCodeCoop/php-swagger-test"
},
{
"type": "vcs",
"url": "https://github.com/LibreCodeCoop/webrequest"
}
]
}