-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathcomposer.json
47 lines (47 loc) · 1.27 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
{
"name": "laravel-validation-rules/credit-card",
"description": "Validate credit card number, expiration date, cvc",
"type": "library",
"keywords": [
"laravel",
"validation",
"credit card",
"validator"
],
"require": {
"php": "7.*|8.*",
"illuminate/validation": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/translation": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.5|^3.14",
"phpunit/phpunit": "6.2.*|^8.5.8|^9.3.3|^10.5|^11.0",
"orchestra/testbench": "^3.5|^4.0|^5.0|^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"LVR\\CreditCard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LVR\\CreditCard\\Tests\\": "tests/"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix .",
"test": "phpunit --colors=always"
},
"license": "Apache-2.0",
"authors": [
{
"name": "Darius Matulionis",
"email": "darius@matulionis.lt"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}