forked from konrness/instant-win
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 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
{
"name": "konrness/instant-win",
"description": "PHP class for randomly awarding a fixed amount of instant-win over a set period of time.",
"keywords": ["sweepstakes", "prize", "lottery", "instant win"],
"homepage": "http://github.com/konrness/instant-win",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konr Ness",
"email": "[email protected]",
"homepage": "http://konrness.com"
}
],
"autoload": {
"psr-4": {"InstantWin\\": "src/InstantWin"}
},
"require": {
"php": ">=5.3.0"
},
"config": {
"bin-dir": "bin"
},
"require-dev": {
"jlogsdon/cli": "*",
"phing/phing": "~2.8",
"phpunit/phpunit": "~4.1",
"phpmd/phpmd": "~1.5",
"squizlabs/php_codesniffer": "~1.5",
"sebastian/phpcpd": "~2.0",
"pdepend/pdepend": "~1.1",
"phpdocumentor/phpdocumentor": "~2.6",
"phploc/phploc": "~2.0",
"pear/archive_tar": "~1.3"
}
}