This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
spip-saml/inc/simplesamlphp/docs/simplesamlphp-subversion.txt

39 lines
900 B
Plaintext

simpleSAMLphp from Subversion
=============================
These are some notes about running simpleSAMLphp from subversion.
Installing from Subversion
--------------------------
Go to the directory where you want to install simpleSAMLphp:
cd /var
Then do a subversion checkout:
svn checkout http://simplesamlphp.googlecode.com/svn/trunk/ simplesamlphp
Initialize configuration and metadata:
cd /var/simplesamlphp
cp -r config-templates/* config/
cp -r metadata-templates/* metadata/
Install the external dependencies with Composer (http://getcomposer.org/):
php composer.phar install
Upgrading
---------
Go to the root directory of your simpleSAMLphp installation:
cd /var/simplesamlphp
Ask subversion to update to the latest version:
svn update
Install the external dependencies with Composer (http://getcomposer.org/):
php composer.phar install