spe
Project home
If you were registered and logged in, you could join this project.
Message from the owner(s)
First rev API is nearly finished providing the following basic SVN functionality:
PHP_FUNCTION(svn_checkout);
PHP_FUNCTION(svn_update);
PHP_FUNCTION(svn_switch);
PHP_FUNCTION(svn_add);
PHP_FUNCTION(svn_mkdir);
PHP_FUNCTION(svn_delete);
PHP_FUNCTION(svn_import);
PHP_FUNCTION(svn_commit);
/* Properties */
PHP_FUNCTION(svn_propset);
PHP_FUNCTION(svn_revprop_set);
PHP_FUNCTION(svn_propget);
PHP_FUNCTION(svn_revprop_get);
PHP_FUNCTION(svn_proplist);
PHP_FUNCTION(svn_revprop_list);
/* Admin */
PHP_FUNCTION(svn_admin_create);
Description
SPE is a PHP extension which provides access to the Subversion client library interface in the PHP language.
It provides similar functionality available in the command-line client, rather than a direct library wrapper, since this is more user-friendly.