-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 930 Bytes
/
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
{
"name": "byrokrat/autogiro2xml",
"description": "Command line utility for converting autogiro files to XML",
"keywords": ["autogiro", "XML"],
"homepage": "https://github.com/byrokrat/autogiro2xml",
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Hannes Forsgård",
"email": "hannes.forsgard@fripost.org"
}
],
"bin": [
"bin/autogiro2xml"
],
"autoload": {
"psr-4": {
"byrokrat\\autogiro2xml\\": ["src/"]
}
},
"config": {
"platform": {
"php": "7.3.0"
}
},
"require": {
"php": "^7.3 || ^8.0",
"ext-bcmath": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"byrokrat/autogiro": "^1.1",
"symfony/console": "^5"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
}
}