Files
redmine-bundle/composer.json
2024-09-12 23:14:30 +02:00

34 lines
840 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": {
"kbsali/redmine-api": "^2.7"
},
"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/"
}
}
}