-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 2.01 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
55
56
57
58
59
60
61
62
63
{
"name": "derafu/signature",
"description": "Derafu: Signature - Library for digital signatures",
"type": "library",
"homepage": "https://derafu.org/signature",
"license": "MIT",
"authors": [
{
"name": "Esteban De La Fuente Rubio / Derafu",
"homepage": "https://www.derafu.org"
}
],
"support": {
"issues": "https://github.com/derafu/signature/issues",
"source": "https://github.com/derafu/signature"
},
"autoload": {
"psr-4": {
"Derafu\\Signature\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Derafu\\TestsSignature\\": "tests/src/"
}
},
"require": {
"php": "^8.3",
"ext-openssl": "*",
"ext-mbstring": "*",
"derafu/certificate": "dev-main",
"derafu/xml": "dev-main"
},
"require-dev": {
"ext-xdebug": "*",
"friendsofphp/php-cs-fixer": "^3.63",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^11.4",
"derafu/foundation": "dev-main"
},
"scripts": {
"docs": "php tools/phpdocumentor run --config=phpdoc.xml",
"tests": "XDEBUG_MODE=coverage vendor/bin/phpunit --configuration=phpunit.xml",
"phpcs-fix": "vendor/bin/php-cs-fixer fix -v --config=php-cs-fixer.php",
"phpcs-fix-dry-run": "vendor/bin/php-cs-fixer fix -v --dry-run --diff --config=php-cs-fixer.php",
"phpstan": "vendor/bin/phpstan analyse --configuration=phpstan.neon --memory-limit=1G",
"phpstan-export": "vendor/bin/phpstan analyse --configuration=phpstan.neon --level 9 --generate-baseline",
"build": "npm run build",
"post-install-cmd": [
"Derafu\\Foundation\\Installer::copyFiles"
],
"post-update-cmd": [
"Derafu\\Foundation\\Installer::copyFiles"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}