Skip to content

Commit 3753405

Browse files
committed
Composer autoload
1 parent 851ce52 commit 3753405

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

composer.json

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,33 @@
22
"name": "nekman/luhn-algorithm",
33
"type": "library",
44
"description": "Implementation of the Luhn algorithm in PHP",
5-
"keywords": ["luhn", "credit card", "identification number"],
5+
"keywords": [
6+
"luhn",
7+
"credit card",
8+
"identification number",
9+
"validation"
10+
],
611
"homepage": "https://github.com/Ekman/Luhn-Algorithm",
712
"license": "MIT",
8-
"authors": [{
9-
"name": "Niklas Ekman",
10-
"email": "nikl.ekman@gmail.com",
11-
"homepage": "http://www.codr.se",
12-
"role": "Developer"
13-
}],
13+
"authors": [
14+
{
15+
"name": "Niklas Ekman",
16+
"email": "nikl.ekman@gmail.com",
17+
"homepage": "http://www.codr.se",
18+
"role": "Developer"
19+
}
20+
],
21+
"support": {
22+
"issues": "https://github.com/Ekman/Luhn-Algorithm/issues",
23+
"source": "https://github.com/Ekman/Luhn-Algorithm"
24+
},
1425
"require": {
1526
"php": ">=4.0.0"
1627
},
1728
"require-dev": {
1829
"phpunit/phpunit": "3.7.*"
30+
},
31+
"autoload": {
32+
"files": ["LuhnAlgorithm.php"]
1933
}
2034
}

0 commit comments

Comments
 (0)