-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.16 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
{
"name": "sivi/afd.laravel",
"type": "library",
"description": "Laravel implementation for the AFD standard",
"keywords": [
"laravel",
"SIVI",
"Financial",
"AFD",
"GIM",
"SKP",
"ADN"
],
"homepage": "https://github.com/rapideinternet/afd.laravel",
"license": "MIT",
"authors": [
{
"name": "Peter Mein",
"email": "[email protected]"
},
{
"name": "Lucas van der Have",
"email": "[email protected]"
}
],
"prefer-stable": true,
"require": {
"php": ">=7.4 || 8.*",
"laravel/framework": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"guzzlehttp/guzzle": "^6.0 || ^7.2",
"doctrine/dbal": "^2.5",
"sivi/afd": "^3",
"sivi/afd.connectors": "^2"
},
"require-dev": {
"phpunit/phpunit": "~8.0",
"phpunit/php-code-coverage": "~7.0",
"orchestra/database": "~4.3",
"orchestra/testbench": "~4.18"
},
"autoload": {
"psr-4": {
"SIVI\\LaravelAFD\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"SIVI\\LaravelAFD\\Providers\\AfdServiceProvider"
]
}
}
}