forked from bigwhoop/trellog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 712 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 712 Bytes
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
{
"name": "bigwhoop/trellog",
"description": "Generate CHANGELOG files based on Trello lists.",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Philippe Gerber",
"email": "philippe@bigwhoop.ch"
}
],
"require": {
"php": ">=5.5",
"trello/trello": "~0.1",
"symfony/console": "~2.5",
"symfony/yaml": "~2.5",
"phine/path": "~1.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Bigwhoop\\Trellog\\": "src/",
"Bigwhoop\\Trellog\\TestAssets\\": "tests/assets"
}
},
"bin": ["bin/trellog"]
}