Skip to content

Commit

Permalink
Merge 5619f84 into df88c21
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Sep 24, 2019
2 parents df88c21 + 5619f84 commit 6aa0f50
Show file tree
Hide file tree
Showing 30 changed files with 1,398 additions and 428 deletions.
18 changes: 18 additions & 0 deletions bin/console
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env php
<?php

use SimpleSAML\Console\Application;
use SimpleSAML\Kernel;
use Symfony\Component\Console\Input\ArgvInput;

umask(000);
set_time_limit(0);

require __DIR__.'/../vendor/autoload.php';

$input = new ArgvInput();
$module = $input->getParameterOption(['--modules', '-m'], 'core');
$kernel = new Kernel($module);

$application = new Application($kernel);
$application->run($input);
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,18 @@
"simplesamlphp/simplesamlphp-module-statistics": "^0.9",
"simplesamlphp/simplesamlphp-module-sqlauth": "^0.9",
"simplesamlphp/twig-configurable-i18n": "^2.1",
"symfony/routing": "^3.4 || ^4.0",
"symfony/http-foundation": "^3.4 || ^4.0",
"symfony/cache": "^3.4 || ^4.0",
"symfony/config": "^3.4 || ^4.0",
"symfony/http-kernel": "^3.4 || ^4.0",
"symfony/console": "^3.4 || ^4.0",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/finder": "^3.4 || ^4.0",
"symfony/framework-bundle": "^3.4 || ^4.0",
"symfony/http-foundation": "^3.4 || ^4.0",
"symfony/http-kernel": "^3.4 || ^4.0",
"symfony/routing": "^3.4 || ^4.0",
"symfony/yaml": "^3.4 || ^4.0",
"twig/twig": "~1.0 || ~2.0",
"webmozart/assert": "~1.4",
"whitehat101/apr1-md5": "~1.0"
},
"require-dev": {
Expand Down

0 comments on commit 6aa0f50

Please sign in to comment.