ac16c54591
Changes composer dependencies to be more flexible. Furthermore, it adds a requirement for php version to be > 7.0.0.
27 lines
648 B
JSON
27 lines
648 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": {
|
|
"php": ">7.0.0",
|
|
"composer/composer": "*",
|
|
"gedmo/doctrine-extensions": "*",
|
|
"doctrine/orm": "^2.5",
|
|
"monolog/monolog": "^1.12",
|
|
"symfony/console": "^3.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "*",
|
|
"phpunit/dbunit": "*"
|
|
}
|
|
}
|