-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 948 Bytes
/
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
{
"name": "luisalberto/checkdigit-algorithms",
"description": "Check Digit Algorithms",
"version": "1.0.1",
"type": "library",
"keywords": [
"damm-algorithm",
"lunh-algorithm",
"verhoeff-algorithm",
"checkdigit"
],
"homepage": "https://github.com/aochoae/checkdigit-algorithms-php",
"license": "MIT",
"authors": [
{
"name": "Luis A. Ochoa",
"role": "Developer"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"LuisAlberto\\CheckDigit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LuisAlberto\\CheckDigit\\Test\\": "tests"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit --bootstrap vendor/autoload.php --coverage-html build/coverage"
]
}
}