-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
50 lines (50 loc) · 1.02 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
{
"name": "nekman/luhn-algorithm",
"type": "library",
"description": "Implementation of the Luhn algorithm in PHP. Used in validation of credit card numbers and some national identification numbers.",
"prefer-stable": true,
"minimum-stability": "stable",
"keywords": [
"luhn",
"credit",
"card",
"identification",
"validation"
],
"license": "MIT",
"authors": [
{
"name": "Niklas Ekman",
"email": "nikl.ekman@gmail.com"
}
],
"support": {
"issues": "https://github.com/Ekman/Luhn-Algorithm/issues",
"source": "https://github.com/Ekman/Luhn-Algorithm"
},
"autoload": {
"psr-4": {
"Nekman\\LuhnAlgorithm\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Nekman\\LuhnAlgorithm\\Test\\": "tests"
}
},
"require": {
"php": "^7.4||^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^2.15",
"php-coveralls/php-coveralls": "^2.1"
},
"scripts": {
"test": "phpunit tests",
"lint": "php-cs-fixer fix --rules=@PSR2 ."
}
}