forked from inacho/php-credit-card-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 726 Bytes
/
Copy pathcomposer.json
File metadata and controls
25 lines (25 loc) · 726 Bytes
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
{
"name": "inacho/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", "creditcards", "debit", "credit", "card", "cards", "validator", "cvc", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Ignacio de Tomás",
"email": "nacho@inacho.es"
}
],
"require": {
"php": ">=5.3.0",
"lib-pcre": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "4.7.*"
},
"autoload": {
"psr-4": {
"Inacho\\": "src/"
}
}
}