├── .gitignore ├── composer.json ├── phpunit.xml.dist ├── src ├── Contracts │ └── Git.php └── Git.php └── tests ├── GitTest.php └── TestCase.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock 3 | .*.cache -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/git/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/git/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Contracts/Git.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/git/HEAD/src/Contracts/Git.php -------------------------------------------------------------------------------- /src/Git.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/git/HEAD/src/Git.php -------------------------------------------------------------------------------- /tests/GitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/git/HEAD/tests/GitTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/git/HEAD/tests/TestCase.php --------------------------------------------------------------------------------