Login | Register
My pages Projects Community openCollabNet

spe
Project home

There will be a brief maintenance window every Friday at 17:00 Pacific.
For further details, see CollabNet's maintenance and upgrade policy.

If you were registered and logged in, you could join this project.

Summary SVN Client Library Extension for PHP
Category scm
License Other OSI-certified license
Owner(s) mrich

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.