Files
core/composer.json
T
2016-06-04 12:01:54 -07:00

26 lines
625 B
JSON

{
"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": {
"composer/composer": "*",
"gedmo/doctrine-extensions": "*",
"doctrine/orm": "2.5.*",
"monolog/monolog": "1.16.0",
"symfony/console": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpunit/dbunit": "*"
}
}