Files
redmine-bundle/composer.json
2024-09-13 02:11:50 +02:00

38 lines
976 B
JSON

{
"name": "magdev/redmine-bundle",
"description": "Symfony bundle to integrate the Redmine-API",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Marco Grätsch",
"email": "magdev3.0@gmail.com"
}
],
"require": {
"ext-curl": "*",
"kbsali/redmine-api": "^2.7",
"guzzlehttp/guzzle": "^7",
"symfony/cache-contracts": "^3.5",
"symfony/cache": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5 || ^10",
"symfony/config": "^6 || ^7",
"symfony/dependency-injection": "^6 || ^7",
"symfony/http-kernel": "^6 || ^7",
"symfony/phpunit-bridge": "^6 || ^7"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Magdev\\RedmineBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Magdev\\RedmineBundle\\Tests\\": "tests/"
}
}
}