php-git
php-git copied to clipboard
PHP bindings for libgit2
``` open("/data/php/lib/php/extensions/no-debug-non-zts-20131226/git2.so", O_RDONLY) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\\\3\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=4192650, ...}) = 0 mmap(NULL, 3480840, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fd2745ff000 mprotect(0x7fd274736000, 2097152, PROT_NONE) = 0 mmap(0x7fd274936000,...
Are there plans in updating the bindings to work with more recent releases of libgit2?
I have built php-git2 on a CentOS 6.8 box following the instructions. The build is successful, with no errors. Upon loading PHP, I get the following: Warning: PHP Startup: Unable...
HI there, at the moment it looks like that choobie is no longer working on php-git. There I started to work on my own fork to build a new PHP7...
Hi, I create a config.w32 but unfortunately many syntax errors appear.
That is by design, never mind. Issue can be closed
git_transport_register will register a callback, then free said callback before returning, resulting in a crash when said callback is to be used. This patch removes the call to php_git2_cb_free(), and...
Fixes a seg fault caused in git_treebuilder_create when it is called either with or without a tree resource handler. (#80)
It turns out that function is trying to fetch a git2 tree resource even if no resource handle was actually passed to the function. Its an easy fix, PR to...