-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
52 lines (52 loc) · 1.28 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
{
"name" : "nigrosimone/codicefiscale",
"type" : "project",
"description" : "Libreria PHP per la validazione dei Codici Fiscali italiani a 16 caratteri con supporto per l'omocodia",
"license" : "MIT",
"config": {
"platform": {
"php": "7.3"
}
},
"autoload-dev" : {
"psr-4" : {
"tests\\" : "tests"
}
},
"autoload" : {
"psr-4" : {
"NigroSimone\\" : "src"
}
},
"require-dev" : {
"phpunit/phpunit" : "^9.5",
"squizlabs/php_codesniffer" : "^3.6",
"php-coveralls/php-coveralls": "^2.5"
},
"scripts" : {
"test" : "php ./vendor/bin/phpunit",
"dev" : "php -S localhost:8000 Esempio.php",
"phpcs" : "php vendor/bin/phpcs --standard=psr2 src/ -n"
},
"homepage" : "https://github.com/nigrosimone/CodiceFiscale",
"authors" : [{
"name" : "Simone Nigro",
"email" : "[email protected]",
"homepage" : "https://github.com/nigrosimone/"
}
],
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/nigrosimone/CodiceFiscale/issues",
"source" : "https://github.com/nigrosimone/CodiceFiscale"
},
"keywords" : [
"codice fiscale php"
],
"repositories" : [{
"type" : "git",
"url" : "https://github.com/nigrosimone/CodiceFiscale.git",
"name" : "nigrosimone/CodiceFiscale"
}
]
}