Project 'perun-proxy-aai/simplesamlphp/simplesamlphp-module-privacyidea' was moved to 'perun/perun-proxyidp/simplesamlphp-module-privacyidea'. Please update any links and bookmarks that may still have the old path.
Commits on Source (12)
-
renovate[bot] authored
-
renovate[bot] authored
-
renovate[bot] 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
-
Pavel Břoušek authored
-
Pavel Břoušek authored
use more user friendly terms verification codes and security key
-
Pavel Břoušek authored
-
semantic-release-bot authored
## [5.4.2](https://gitlab.ics.muni.cz/perun-proxy-aai/simplesamlphp/simplesamlphp-module-privacyidea/compare/v5.4.1...v5.4.2) (2022-10-19) ### Bug Fixes * improve wording of TOTP and WebAuthn ([ce96f25c](https://gitlab.ics.muni.cz/perun-proxy-aai/simplesamlphp/simplesamlphp-module-privacyidea/commit/ce96f25c95b7860ade45aff8810663819a08f816))
Showing
- .github/pull.yml 0 additions, 7 deletions.github/pull.yml
- .github/workflows/check_and_release.yml 0 additions, 108 deletions.github/workflows/check_and_release.yml
- .gitignore 590 additions, 42 deletions.gitignore
- .gitlab-ci.yml 3 additions, 0 deletions.gitlab-ci.yml
- .prettierignore 722 additions, 11 deletions.prettierignore
- .releaserc.json 1 addition, 23 deletions.releaserc.json
- CHANGELOG.md 7 additions, 0 deletionsCHANGELOG.md
- README.md 1 addition, 1 deletionREADME.md
- commitlint.config.js 0 additions, 3 deletionscommitlint.config.js
- composer.json 11 additions, 8 deletionscomposer.json
- composer.lock 65 additions, 117 deletionscomposer.lock
- dictionaries/privacyidea.definition.json 9 additions, 9 deletionsdictionaries/privacyidea.definition.json
- dictionaries/privacyidea.translation.json 9 additions, 9 deletionsdictionaries/privacyidea.translation.json
- ecs.php 0 additions, 29 deletionsecs.php
- lib/Auth/Process/PrivacyideaAuthProc.php 20 additions, 9 deletionslib/Auth/Process/PrivacyideaAuthProc.php
- lib/Auth/Source/PrivacyideaAuthSource.php 14 additions, 7 deletionslib/Auth/Source/PrivacyideaAuthSource.php
- lib/Auth/Utils.php 10 additions, 5 deletionslib/Auth/Utils.php
- package-lock.json 0 additions, 5782 deletionspackage-lock.json
- package.json 0 additions, 24 deletionspackage.json
- renovate.json 1 addition, 23 deletionsrenovate.json
.github/pull.yml
deleted
100644 → 0
.gitlab-ci.yml
0 → 100644
commitlint.config.js
deleted
100644 → 0
... | ... | @@ -7,7 +7,7 @@ |
"privacyIDEA", | ||
"MFA" | ||
], | ||
"license": "AGPL-3.0", | ||
"license": "AGPL-3.0-or-later", | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"simplesamlphp/composer-module-installer": "~1.0", | ||
... | ... | @@ -15,15 +15,12 @@ |
"cesnet/privacyidea-php-client": "^1.2.0", | ||
"ext-json": "*" | ||
}, | ||
"require-dev": { | ||
"symplify/easy-coding-standard": "^11.1" | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"simplesamlphp/composer-module-installer": true | ||
}, | ||
"platform": { | ||
"php": "7.4" | ||
}, | ||
"allow-plugins": { | ||
"simplesamlphp/composer-module-installer": true | ||
} | ||
}, | ||
"replace": { | ||
... | ... | @@ -33,5 +30,11 @@ |
"psr-4": { | ||
"SimpleSAML\\Module\\privacyidea\\": "lib/" | ||
} | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Perun proxy AAI team", | ||
"email": "proxyidp@cesnet.cz" | ||
} | ||
] | ||
} |
ecs.php
deleted
100644 → 0
package-lock.json
deleted
100644 → 0
This diff is collapsed.
package.json
deleted
100644 → 0
{ | ||
"name": "simplesamlphp-module-privacyidea", | ||
"description": "Add two factor authentication like OTP to simpleSAMLphp", | ||
"license": "AGPL-3.0", | ||
"private": true, | ||
"engines": { | ||
"node": "^14 || ^16", | ||
"npm": "^5 || ^6" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-conventional-changelog" | ||
} | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "17.0.3", | ||
"@commitlint/config-conventional": "17.0.3", | ||
"@semantic-release/changelog": "6.0.1", | ||
"@semantic-release/git": "10.0.1", | ||
"cz-conventional-changelog": "3.3.0", | ||
"prettier": "2.7.1", | ||
"semantic-release": "19.0.3" | ||
} | ||
} |