-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
44 lines (44 loc) · 961 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
39
40
41
42
43
44
{
"name": "davidepastore/codice-fiscale",
"description": "An italian tax code calculator and checker",
"keywords" : [
"codice fiscale",
"validator",
"tax code",
"italian",
"italy"
],
"autoload" : {
"psr-4" : {
"CodiceFiscale\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"CodiceFiscale\\" : "test/"
}
},
"require": {
"php": "^7.1|^8.0",
"ext-intl": "*"
},
"require-dev": {
"scrutinizer/ocular": "~1.1",
"phpunit/phpunit": "^7.5 || ^8.5",
"squizlabs/php_codesniffer": "3.*"
},
"license" : "GPL-2.0-or-later",
"type" : "library",
"authors": [
{
"name": "davidepastore",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}