Skip to content

Commit

Permalink
Added assumptions and some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
siad007 committed Jun 12, 2015
1 parent a0053d2 commit 9716f24
Show file tree
Hide file tree
Showing 6 changed files with 473 additions and 377 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
.buildpath
.project
.settings
vendor/*
vendor/
composer.phar
/nbproject/private/
box.phar
phpunit.xml
test.php
.pydevproject
64 changes: 33 additions & 31 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,35 @@
{
"autoload" : {
"psr-4" : {
"Siad007\\VersionControl\\HG\\" : "src",
"Siad007\\VersionControl\\HG\\Tests\\" : "tests"
}
},
"name" : "siad007/versioncontrol_hg",
"type" : "library",
"require" : {
"php" : ">=5.4"
},
"authors" : [{
"name" : "Siad Ardroumli",
"email" : "[email protected]",
"role" : "Lead"
}
],
"require-dev" : {
"phpunit/phpunit" : "~4",
"codeclimate/php-test-reporter": "dev-master"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"license" : "MIT",
"description" : "VersionControl_HG is a library that provides an OO interface to handle Mercurial repositories.",
"support" : {
"issues" : "https://github.com/siad007/versioncontrol_hg/issues"
}
"autoload": {
"psr-4": {
"Siad007\\VersionControl\\HG\\": "src",
"Siad007\\VersionControl\\HG\\Tests\\": "tests"
}
},
"name": "siad007/versioncontrol_hg",
"type": "library",
"require": {
"php": ">=5.4"
},
"authors": [
{
"name": "Siad Ardroumli",
"email": "[email protected]",
"role": "Lead"
}
],
"require-dev": {
"phpunit/phpunit": "~4",
"mehr-als-nix/assumptions": "~1",
"codeclimate/php-test-reporter": "dev-master"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"license": "MIT",
"description": "VersionControl_HG is a library that provides an OO interface to handle Mercurial repositories.",
"support": {
"issues": "https://github.com/siad007/versioncontrol_hg/issues"
}
}
Loading

0 comments on commit 9716f24

Please sign in to comment.