-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.06 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
{
"name": "matiasiglesias/cuit-validator",
"description": "Módulo de Validación de CUIT",
"type": "library",
"keywords": [
"cuit",
"zend framework",
"zf2",
"validator",
"afip",
"argentina",
"clave única de identificación tributaria"
],
"license": "MIT",
"homepage": "https://github.com/matiasiglesias/cuit-validator",
"support": {
"source": "https://github.com/matiasiglesias/cuit-validator",
"issues": "https://github.com/matiasiglesias/cuit-validator/issues"
},
"authors": [
{
"name": "Matias Iglesias",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-stdlib": "^2.4 || ^3.0",
"zendframework/zend-validator": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"friendsofphp/php-cs-fixer": "^2.1"
},
"autoload": {
"psr-0": {
"CuitValidator": "src/"
},
"classmap": [
"./Module.php"
]
}
}