forked from mradcliffe/pokerhand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 949 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
{
"name": "mradcliffe/pokerhand",
"description": "Poker Hand is a suite of classes to compare poker hands per the ColumbubsPHP Code Challenge #1.",
"type": "library",
"license": "GPL-2.0+",
"keywords": ["poker", "columbusphp"],
"homepage": "https://github.com/mradcliffe/pokerhand",
"authors": [
{
"name": "Matthew Radcliffe",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"symfony/class-loader": "2.3.*"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "2.0.*",
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"ColumbusPHP\\": "lib/",
"ColumbusPHP\\PlayingCard\\": "lib/ColumbusPHP/PlayingCard",
"ColumbusPHP\\PokerHand\\": "lib/ColumbusPHP/PokerHand",
"ColumbusPHP\\PokerHand\\Collection\\": "lib/ColumbusPHP/PokerHand/Collection",
"ColumbusPHP\\PokerHand\\Feed\\": "lib/ColumbusPHP/PokerHand/Feed"
}
}
}