forked from zaigham/Gitify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 877 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
{
"name": "modmore/gitify",
"version": "0.12.0",
"description": "Command line toolkit to make managing a MODX site in git a lot easier",
"require": {
"symfony/console": "2.6.*",
"symfony/yaml": "2.6.*",
"symfony/process": "2.6.*"
},
"require-dev": {
"phpunit/phpunit": "4.3.*"
},
"repositories":[
{
"type":"package",
"package":{
"name":"kbjr/Git.php",
"version":"0.2.0",
"source":{
"type":"git",
"url":"https://github.com/kbjr/Git.php",
"reference":"master"
},
"autoload": {
"classmap": ["Git.php"]
}
}
}
],
"autoload": {
"psr-4": {"modmore\\Gitify\\":"src/"}
}
}