I’m creating web interface in PHP to manage svn repositories and svn users. I need to generate dav_svn.authz file, where you can assign certain users and privileges to svn repository. Is there any existing PHP library which can do that for me or I have to write my own? My goal is not only to add new repository with its users, but also to modify any existing one.
Share
It looks like standard .ini syntax, so you can probably use
parse_ini_file() function.