forked from kbsali/php-redmine-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 848 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "kbsali/redmine-api",
"type": "library",
"description": "Redmine API client",
"homepage": "https://github.com/kbsali/php-redmine-api",
"keywords": ["redmine", "api"],
"license": "MIT",
"authors": [
{
"name": "Kevin Saliou",
"email": "kevin@saliou.name",
"homepage": "http://kevin.saliou.name"
}
],
"require": {
"php": "^5.4 || ^7.0",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0"
},
"autoload": {
"psr-4": {
"Redmine\\": "lib/Redmine/"
}
},
"autoload-dev": {
"psr-4": {
"Redmine\\Tests\\": "tests/"
}
}
}