Files
redmine-bundle/composer.json

34 lines
835 B
JSON
Raw Normal View History

2023-04-25 15:00:03 +02:00
{
"name": "magdev/redmine-bundle",
2024-08-31 15:22:48 +02:00
"description": "Symfony bundle to integrate the Redmine-API",
2023-04-25 15:00:03 +02:00
"type": "symfony-bundle",
"require": {
2024-08-31 15:22:48 +02:00
"kbsali/redmine-api": "^2.7"
2023-04-25 15:00:03 +02:00
},
"require-dev": {
2024-07-13 05:49:06 +02:00
"phpunit/phpunit": "^9.5 | ^10",
"symfony/http-kernel": "^6 | ^7",
"symfony/dependency-injection": "^6 | ^7",
"symfony/config": "^6 | ^7",
"symfony/phpunit-bridge": "^6 | ^7"
2023-04-25 15:00:03 +02:00
},
"license": "MIT",
"autoload": {
"psr-4": {
"Magdev\\RedmineBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Magdev\\RedmineBundle\\Tests\\": "tests/"
}
},
"authors": [
{
2023-04-25 15:09:54 +02:00
"name": "Marco Grätsch",
2023-04-25 15:00:03 +02:00
"email": "magdev3.0@gmail.com"
}
],
"minimum-stability": "stable"
}