-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
37 lines (37 loc) · 955 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
{
"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"
}
],
"scripts": {
"check-syntax": "find . -name '*.php' -not -path './vendor/*' -print0 | xargs -0 -n1 php -l"
}
}