Project 'perun-proxy-aai/simplesamlphp/simplesamlphp-module-campusmultiauth' was moved to 'perun/perun-proxyidp/simplesamlphp-module-campusmultiauth'. Please update any links and bookmarks that may still have the old path.
Commits on Source (11)
-
-
Pavel Břoušek authored
closes PROXYIDP-440
-
Pavel Břoušek authored
-
Pavel Břoušek authored
feat: aarc_discovery_hint Closes PROXYIDP-440 See merge request perun-proxy-aai/simplesamlphp/simplesamlphp-module-campusmultiauth!30
-
Pavel Břoušek authored
-
Pavel Břoušek authored
-
Pavel Břoušek authored
-
Pavel Břoušek authored
-
Pavel Břoušek authored
-
Pavel Břoušek authored
-
semantic-release-bot authored
# [1.4.0](https://gitlab.ics.muni.cz/perun-proxy-aai/simplesamlphp/simplesamlphp-module-campusmultiauth/compare/v1.3.0...v1.4.0) (2022-09-24) ### Features * aarc_discovery_hint ([7e3a950a](https://gitlab.ics.muni.cz/perun-proxy-aai/simplesamlphp/simplesamlphp-module-campusmultiauth/commit/7e3a950a1d34ee40ce8413486c6a7eb6efaeb3af))
Showing
- .editorconfig 0 additions, 7 deletions.editorconfig
- .github/workflows/build_and_check.yml 0 additions, 60 deletions.github/workflows/build_and_check.yml
- .gitignore 703 additions, 38 deletions.gitignore
- .gitlab-ci.yml 3 additions, 0 deletions.gitlab-ci.yml
- .prettierignore 723 additions, 12 deletions.prettierignore
- .prettierrc.json 1 addition, 0 deletions.prettierrc.json
- .releaserc.json 1 addition, 24 deletions.releaserc.json
- CHANGELOG.md 7 additions, 0 deletionsCHANGELOG.md
- LICENSE 1 addition, 2 deletionsLICENSE
- README.md 6 additions, 4 deletionsREADME.md
- commitlint.config.js 0 additions, 3 deletionscommitlint.config.js
- composer.json 13 additions, 14 deletionscomposer.json
- composer.lock 4 additions, 59 deletionscomposer.lock
- config-templates/module_campusmultiauth.php 15 additions, 9 deletionsconfig-templates/module_campusmultiauth.php
- ecs.php 0 additions, 38 deletionsecs.php
- lib/Auth/Source/Campusidp.php 416 additions, 15 deletionslib/Auth/Source/Campusidp.php
- package-lock.json 3008 additions, 4111 deletionspackage-lock.json
- package.json 1 addition, 21 deletionspackage.json
- renovate.json 0 additions, 22 deletionsrenovate.json
- templates/includes/individual-identities.twig 1 addition, 1 deletiontemplates/includes/individual-identities.twig
.editorconfig
deleted
100644 → 0
.gitlab-ci.yml
0 → 100644
commitlint.config.js
deleted
100644 → 0
{ | ||
"name": "cesnet/simplesamlphp-module-campusmultiauth", | ||
"description": "SimpleSAMLphp module which provides password based and federated authentication on single page", | ||
"type": "simplesamlphp-module", | ||
"keywords": [ | ||
"simplesamlphp" | ||
], | ||
"license": "BSD-2-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Dominik Baranek", | ||
"email": "baranek@ics.muni.cz" | ||
} | ||
], | ||
"license": "BSD-3-Clause", | ||
"require": { | ||
"php": "^7.4", | ||
"simplesamlphp/composer-module-installer": "~1.0", | ||
"simplesamlphp/simplesamlphp": "^1.19", | ||
"league/commonmark": "^1.0", | ||
"ext-intl": "*" | ||
"ext-intl": "*", | ||
"ext-simplexml": "*" | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"simplesamlphp/composer-module-installer": true | ||
}, | ||
"platform": { | ||
"php": "7.4" | ||
}, | ||
"allow-plugins": { | ||
"simplesamlphp/composer-module-installer": true | ||
} | ||
}, | ||
"autoload": { | ||
... | ... | @@ -34,7 +30,10 @@ |
"suggest": { | ||
"simplesamlphp/simplesamlphp-module-ldap": "Required for timeout dialog with mitreID support" | ||
}, | ||
"require-dev": { | ||
"symplify/easy-coding-standard": "^11.0" | ||
} | ||
"authors": [ | ||
{ | ||
"name": "Perun proxy AAI team", | ||
"email": "proxyidp@cesnet.cz" | ||
} | ||
] | ||
} |
ecs.php
deleted
100644 → 0
This diff is collapsed.
{ | ||
"name": "simplesamlphp-module-campusmultiauth", | ||
"license": "BSD-2-Clause", | ||
"private": true, | ||
"engines": { | ||
"node": "^16" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-conventional-changelog" | ||
} | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^16.1.0", | ||
"@commitlint/config-conventional": "^16.0.0", | ||
"@semantic-release/changelog": "^6.0.1", | ||
"@semantic-release/git": "^10.0.1", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"prettier": "^2.6.0", | ||
"semantic-release": "^19.0.2" | ||
}, | ||
"dependencies": { | ||
"dialog-polyfill": "^0.5.4" | ||
"@perun-proxy-aai/semantic-release-proxy-config": "^1.0.0" | ||
} | ||
} |
renovate.json
deleted
100644 → 0