forked from php-sepa-xml/php-sepa-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.95 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.95 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
{
"name": "digitick/sepa-xml",
"type": "library",
"description": "Creates Single Euro Payments Area (SEPA) XML files for the Direct Debit and Credit Transfer operations.",
"keywords": ["banking", "sepa", "xml"],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Ianaré Sévi"
},
{
"name": "Digitick, SA",
"email": "info@digitick.net"
},
{
"name": "Sören Rohweder (monofone)",
"email": "s.rohweder@blage.net"
},
{
"name": "Borislav Sabev (Borkata)",
"email": "contact@borkata.mailer.me"
}
],
"autoload": {
"psr-4": {
"Digitick\\Sepa\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Digitick\\Sepa\\Tests\\": "tests/"
}
},
"require": {
"ext-dom": "*",
"php": ">=7.2",
"ramsey/uuid": "^4.2.3"
},
"require-dev": {
"ext-xml": "*",
"phpunit/phpunit": "^10.0",
"rector/rector": "^2.0",
"phpstan/phpstan": "^2.0",
"fakerphp/faker": "^1.24"
},
"config": {
"bin-dir": "bin/"
},
"scripts": {
"rector": "bin/rector process --clear-cache --no-diffs",
"phpstan": "bin/phpstan analyse",
"phpstan-cc": "bin/phpstan clear-result-cache",
"phpstan-dp": "bin/phpstan dump-parameters",
"php-codeQualityFull" : [
"@phpstan",
"@rector"
],
"phpunit": "bin/phpunit"
},
"scripts-descriptions": {
"rector": "runs `bin/rector process --clear-cache --no-diffs`",
"phpstan": "runs `bin/phpstan analyse`",
"phpstan-cc": "runs `bin/phpstan clear-result-cache`",
"phpstan-dp": "runs `bin/phpstan dump-parameters`",
"php-codeQualityFull" : "run `phpstan` and then `rector`",
"phpunit" : "It's pretty obvious what this does, isn't it?"
}
}