/simplesamlphp-composer

A Composer-compatible packages.json file for SimpleSAMLphp along with a stupid simple PHP script that generates the file.

Primary LanguagePHPGNU General Public License v3.0GPL-3.0

Run `php packages.php` to generate the packages.json file.

To require SimpleSAMLphp as a dependency using GitHub as the repository,
add the following lines to your project's composer.json file:

{
    "repositories": [
        {
            "type": "composer",
            "url": "https://raw.github.com/cpliakas/simplesamlphp-composer/master"
        }
    ],
    "require": {
        "simplesamlphp/simplesamlphp": "1.10.*"
    }
}