php-git2 is a PHP bindings to the libgit2 linkable C Git library.
- API Documentation: http://libgit2.github.com/libgit2/#v0.20.0 (also see Signature conversions section)
- IRC: #php-git on irc.freenode.net.
PHP 5.3 above
0.3.0 Alpha (switching to functions)
https://docs.google.com/spreadsheet/ccc?key=0AjvShWAWqvfHdDRneEtIUF9GRUZMNVVVR1hpdURiUWc&usp=sharing
# build libgit2.a
## For 32bit systems
git submodule init && git submodule update
mkdir libgit2/build
cd libgit2/build
cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=OFF -DBUILD_CLAR=OFF ..
cmake --build .
# For 64bit systems
git submodule init && git submodule update
mkdir libgit2/build
cd libgit2/build
cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=OFF -DBUILD_CLAR=OFF
-DCMAKE_C_FLAGS=-fPIC ..
cmake --build .
# build php-git2
cd ../../
phpize
./configure --enable-git2-debug
make
make install
# add extension=git2.so to your php.ini
please make a issue first. don't work before creating it.
follow pecl coding standards (except 8 at this moment).
GIT_EXTERN(int) git_repository_init(
git_repository **out,
const char *path,
unsigned is_bare);
// error code should handle in extension.
// resource creation or getting functions will return their resource or bool.
resource|bool function git_repository_init(string $path, long $is_bare);
public struct (e.g: git_config_entry) should consider return as an array.
basically, we rely libgit2 grouping at this time. (branch
group functions should be in branch.c)
some group (e.g config) will conflicts php header files. we choose g_
prefix for now.
check grouping here libgit2.github.com/libgit2/#v0.20.0
if you wanna try to work new file. please use gen.php and generate stubs. as declarations are bored task. (sometimes, this generator might output wrong headers. then just comment out or fix generator)
PRINT_HEADER=1 php ng.php libgit2/include/git2/branch.h > branch.h
php ng.php libgit2/include/git2/branch.h > branch.c
you can generate PHP_FE
with this. past it to php_git2.c
php fe.php target.c
Note: usually, these generators might output needless variables. DON'T PR prettify codes
at this moment.
As we have more than 500 php functions. we like to use some fixer command than fix by hand.
use prototype.
/* {{{ proto int abs(int number)
Returns the absolute value of the number */
PHP_FUNCTION(abs)
{
...
}
/* }}} */
document will generate later. please check source code before publish docs.
[group]/[function].phpt
- don't create OOP interface in extension for ease of maintenance.
- follow latest libgit2 api. don't consider BC at this time.
MIT License