-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
70 lines (70 loc) · 1.82 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
{
"name": "sandwave-io/vat",
"description": "European VAT rates and number validation.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jesse Kramer",
"email": "jesse@kramerventures.nl"
},
{
"name": "Armando van Oeffelen",
"email": "armando@sandwave.io"
},
{
"name": "Daan Barbiers",
"email": "daan@sandwave.io"
},
{
"name": "Thomas Ploegaert",
"email": "thomas@sandwave.io"
}
],
"require": {
"php": "^8.1",
"ext-soap": "*",
"divineomega/php-countries": "^2.3",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0.15",
"phpstan/phpstan": "^1.10.6",
"friendsofphp/php-cs-fixer": "^3.14.4",
"phpstan/phpstan-strict-rules": "^1.5.0",
"phpstan/phpstan-deprecation-rules": "^1.1.2",
"phpstan/phpstan-phpunit": "^1.3.10",
"ergebnis/phpstan-rules": "^1.0.0",
"sandwave-io/php-cs-fixer-config": "^1.0.0"
},
"autoload": {
"psr-4": {
"SandwaveIo\\Vat\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"SandwaveIo\\Vat\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"@test:types",
"@lint",
"@test:unit"
],
"test:unit": [
"vendor/bin/phpunit --coverage-text"
],
"test:types": [
"vendor/bin/phpstan analyze"
],
"lint": [
"vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=none -vvv"
],
"lint:fix": [
"vendor/bin/php-cs-fixer fix"
]
}
}