forked from ibericode/vat-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 830 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
{
"name": "ibericode/vat-bundle",
"description": "Bundle for using ibericode/vat in a Symfony environment",
"keywords": ["vat"],
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": ">=8.1",
"ibericode/vat": "^2.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/validator": "^5.4|^6.0|^7.0"
},
"require-dev": {
"ext-intl": "*",
"ext-soap": "*",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Ibericode\\Vat\\Bundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ibericode\\Vat\\Bundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Danny van Kooten",
"email": "danny@ibericode.com"
}
]
}