-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
97 lines (97 loc) · 2.64 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "csoellinger/php-fon-webservices",
"description": "PHP library to handle FinanzOnline web services.",
"license": "Unlicense",
"type": "library",
"keywords": [
"Bmf",
"Fon",
"FinanzOnline",
"Webservice",
"Session",
"Login",
"Logout",
"Uid",
"Check",
"Validation",
"VatID",
"Data",
"Bank",
"Transmission",
"Austria",
"File",
"Upload",
"Finanzamt"
],
"authors": [
{
"name": "Christopher Söllinger",
"email": "[email protected]",
"homepage": "https://github.com/CSoellinger"
}
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"ext-soap": "*",
"jasny/typecast": "dev-master"
},
"require-dev": {
"csoellinger/dog-html-printer": "^0.3",
"klitsche/dog": "^0.4",
"phpstan/phpstan": "^1.4",
"ramsey/devtools": "^1.7",
"ramsey/devtools-lib": "1.3",
"spatie/phpunit-snapshot-assertions": "^4.2",
"symfony/console": "^5.4",
"symfony/dotenv": "^5.4",
"symfony/filesystem": "^5.4",
"symfony/finder": "^5.4",
"symfony/process": "^5.4",
"symfony/var-dumper": "^5.4",
"vimeo/psalm": "^4.22"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"CSoellinger\\FonWebservices\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CSoellinger\\Test\\FonWebservices\\": "tests/"
}
},
"config": {
"allow-plugins": {
"captainhook/plugin-composer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"ramsey/composer-repl": true,
"ramsey/devtools": true
},
"sort-packages": true
},
"extra": {
"captainhook": {
"force-install": true
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"analyze:phploc": {
"script": "@dev:analyze:phploc"
},
"command-prefix": "dev",
"report:phploc": {
"script": "@dev:report:phploc"
}
}
},
"scripts": {
"dev:analyze:phploc": "php ./bin/phploc.phar --count-tests src tests",
"dev:report:phploc": "php ./bin/phploc.phar --count-tests --log-json phploc.json src tests"
}
}