Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 22 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,41 @@
{
"name": "modmore/Gitify",
"name": "modmore/gitify",
"version": "0.12.0",
"description": "Command line toolkit to make managing a MODX site in git a lot easier",
"require": {
"kbjr/Git.php": "*",
"kbjr/git.php": "*",
"symfony/console": "2.6.*",
"symfony/yaml": "2.6.*",
"symfony/process": "2.6.*"
},
"require-dev": {
"phpunit/phpunit": "8.1.*"
},
"repositories":[
"repositories": [
{
"type":"package",
"package":{
"name":"kbjr/Git.php",
"version":"0.2.0",
"source":{
"type":"git",
"url":"https://github.com/kbjr/Git.php",
"reference":"master"
"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"]
"classmap": [
"git.php"
]
}
}
}
],
],
"autoload": {
"psr-4": {"modmore\\Gitify\\":"src/"}
"psr-4": {
"modmore\\Gitify\\": "src/"
}
},
"bin": ["Gitify"]
}
"bin": [
"Gitify"
]
}