forked from inacho/php-credit-card-validator
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
executable file
·38 lines (38 loc) · 1.05 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
{
"name": "freelancehunt/php-credit-card-validator",
"type": "library",
"description": "Validates popular debit and credit cards' numbers against regular expressions and Luhn algorithm. Also validates the CVC and the expiration date.",
"keywords": ["creditcard", "debit", "credit", "card", "validator", "cvc", "payment"],
"license": "MIT",
"authors": [
{
"name": "Oleg Topchiy",
"email": "[email protected]"
},
{
"name": "Vitaliy Misko",
"email": "[email protected]"
},
{
"name": "Yaroslav Molchan",
"email": "[email protected]"
},
{
"name": "Ignacio de Tomás",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"lib-pcre": ">=8.38",
"ext-ctype": "*"
},
"require-dev": {
"phpunit/phpunit": "^6"
},
"autoload": {
"psr-4": {
"Freelancehunt\\Validators\\": "src/"
}
}
}