forked from lotgd/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (35 loc) · 907 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
36
{
"name": "lotgd/core",
"description": "Core functionality for Legend of the Green Dragon, a text-based RPG game.",
"license": "AGPL-3.0",
"autoload": {
"psr-4": {
"LotGD\\Core\\": "src/",
"LotGD\\Core\\Tests\\": "tests/"
}
},
"bin": [
"bin/daenerys"
],
"require": {
"php": "^7.0.0",
"composer/composer": "*",
"gedmo/doctrine-extensions": "*",
"doctrine/orm": "^2.5",
"monolog/monolog": "^1.12",
"symfony/console": "^3.0",
"symfony/yaml": "^3.0",
"d11wtq/boris": "^1.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/austenmc/php-docblock-checker"
}
],
"require-dev": {
"phpunit/phpunit": "*",
"phpunit/dbunit": "*",
"block8/php-docblock-checker": "2.0.0"
}
}