forked from ringmaster/dicecalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 968 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
{
"name": "derekjones/dicecalc",
"description": "DiceCalc - fork of https://github.com/ringmaster/dicecalc",
"keywords": ["dice", "dice calc", "dice calculator", "dice roller"],
"require-dev": {
"phpunit/phpunit": "@stable",
"fabpot/php-cs-fixer": "@stable",
"phpmd/phpmd": "@stable",
"phploc/phploc": "@stable",
"pdepend/pdepend": "@stable",
"sebastian/phpcpd": "@stable",
"sebastian/phpdcd": "@stable",
"squizlabs/php_codesniffer": "@stable"
},
"authors": [
{
"name": "Owen Winkler",
"email": "a_github@midnightcircus.com",
"role": "Creator"
},
{
"name": "Derek Jones",
"email": "derek@derekderekderek.com",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": ">=5.4"
},
"autoload": {
"psr-0": { "DiceCalc\\": "src/" }
}
}