Files
redmine-bundle/composer.json

38 lines
976 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",
2024-09-12 23:14:30 +02:00
"license": "MIT",
2023-04-25 15:00:03 +02:00
"type": "symfony-bundle",
2024-09-12 23:14:30 +02:00
"authors": [
{
"name": "Marco Grätsch",
"email": "magdev3.0@gmail.com"
}
],
2023-04-25 15:00:03 +02:00
"require": {
2024-09-13 00:43:20 +02:00
"ext-curl": "*",
2024-09-13 01:19:40 +02:00
"kbsali/redmine-api": "^2.7",
2024-09-13 02:09:15 +02:00
"guzzlehttp/guzzle": "^7",
2024-09-13 02:11:50 +02:00
"symfony/cache-contracts": "^3.5",
2024-09-13 02:09:15 +02:00
"symfony/cache": "^7.1"
2023-04-25 15:00:03 +02:00
},
"require-dev": {
2024-09-12 23:14:30 +02:00
"phpunit/phpunit": "^9.5 || ^10",
"symfony/config": "^6 || ^7",
"symfony/dependency-injection": "^6 || ^7",
"symfony/http-kernel": "^6 || ^7",
"symfony/phpunit-bridge": "^6 || ^7"
2023-04-25 15:00:03 +02:00
},
2024-09-12 23:14:30 +02:00
"minimum-stability": "stable",
2023-04-25 15:00:03 +02:00
"autoload": {
"psr-4": {
"Magdev\\RedmineBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Magdev\\RedmineBundle\\Tests\\": "tests/"
}
2024-09-12 23:14:30 +02:00
}
2023-04-25 15:00:03 +02:00
}