PHP Libraries: SVN Access - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T03:10:52Z http://stackoverflow.com/feeds/question/172945 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/172945/php-libraries-svn-access 1 PHP Libraries: SVN Access Wilco 2008-10-06T01:06:37Z 2009-08-28T19:38:35Z <p>Are there any decent PHP libraries available for accessing SVN repositories? Right now I just have some scripts executing commands to the command line and parsing the feedback, I'd love to find something less dependent on the command line and more tightly integrated. Any ideas?</p> http://stackoverflow.com/questions/172945/php-libraries-svn-access/172949#172949 5 Answer by Luke for PHP Libraries: SVN Access Luke 2008-10-06T01:11:04Z 2009-08-28T19:38:35Z <p>A quick google search;</p> <p><a href="http://au2.php.net/svn" rel="nofollow">http://au2.php.net/svn</a><br/> <a href="http://php-svn-client.tigris.org" rel="nofollow">http://php-svn-client.tigris.org</a><br/> <a href="http://pecl.php.net/package/svn" rel="nofollow">http://pecl.php.net/package/svn</a><br/></p> http://stackoverflow.com/questions/172945/php-libraries-svn-access/172993#172993 1 Answer by Corey Trager for PHP Libraries: SVN Access Corey Trager 2008-10-06T01:40:44Z 2008-10-06T01:40:44Z <p>I think you are fine just the way you are. WebSvn, from websvn.tigris.org, the Subversion people themselves, does it the same way. I also shell out to the command line and parse the responses in my app BugTracker.NET.</p>