├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.markdown ├── composer.json ├── lib └── PHPGit │ ├── Command.php │ ├── Configuration.php │ └── Repository.php ├── prove.php └── test ├── PHPGit_RepoTest.php ├── PHPGit_RepoTestHelper.php └── vendor └── lime.php /.gitignore: -------------------------------------------------------------------------------- 1 | nbproject 2 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/README.markdown -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/composer.json -------------------------------------------------------------------------------- /lib/PHPGit/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/lib/PHPGit/Command.php -------------------------------------------------------------------------------- /lib/PHPGit/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/lib/PHPGit/Configuration.php -------------------------------------------------------------------------------- /lib/PHPGit/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/lib/PHPGit/Repository.php -------------------------------------------------------------------------------- /prove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/prove.php -------------------------------------------------------------------------------- /test/PHPGit_RepoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/test/PHPGit_RepoTest.php -------------------------------------------------------------------------------- /test/PHPGit_RepoTestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/test/PHPGit_RepoTestHelper.php -------------------------------------------------------------------------------- /test/vendor/lime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ornicar/php-git-repo/HEAD/test/vendor/lime.php --------------------------------------------------------------------------------