-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
35 lines (35 loc) · 940 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
{
"name": "ringmaster/dicecalc",
"description": "DiceCalc",
"version": "1.0.0",
"keywords": ["dice", "dice calc", "dice calculator", "dice roller"],
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "@stable",
"friendsofphp/php-cs-fixer": "@stable",
"phpmd/phpmd": "@stable",
"phploc/phploc": "@stable",
"pdepend/pdepend": "@stable",
"sebastian/phpcpd": "@stable",
"sebastian/phpdcd": "@stable",
"squizlabs/php_codesniffer": "@stable",
"jakub-onderka/php-parallel-lint": "^0.9.2"
},
"authors": [
{
"name": "Owen Winkler",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4"
},
"autoload": {
"psr-4": {
"DiceCalc\\": "src/DiceCalc"
}
},
"autoload-dev": {
"psr-4": {"DiceCalc\\": "tests/DiceCalc"}
}
}