simplesamlphp / simplesamlphp-module-fticks
SimpleSAMLphp module to record F-Ticks statistics
Installs: 1 211
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 3
Open Issues: 2
Type:simplesamlphp-module
Requires
- php: ^8.1
- ext-posix: *
- ext-sockets: *
- simplesamlphp/assert: ~1.8.1
- simplesamlphp/composer-module-installer: ~1.4.0
- simplesamlphp/saml2-legacy: ~4.18.1
- simplesamlphp/simplesamlphp: ~2.4.0
Requires (Dev)
Replaces
- dev-master
- v2.0.1
- v2.0.0
- v1.3.0
- v1.2.1
- v1.2.0
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.0
- dev-dependabot/composer/production-dependencies-cc866b6789
- dev-dependabot/github_actions/all-actions-d10ca4a713
- dev-dependabot/github_actions/all-actions-e46ab141b8
- dev-release-2.0
- dev-identifyingAttribute
- dev-release-1.1
This package is auto-updated.
Last update: 2025-09-08 11:38:10 UTC
README
Log statistics in the F-ticks federation log format.
Installation
Once you have installed SimpleSAMLphp, installing this module is very simple. Just execute the following command in the root of your SimpleSAMLphp installation:
vendor/bin/composer require simplesamlphp/simplesamlphp-module-fticks:dev-master
where dev-master
instructs Composer to install the master
(development)
branch from the Git repository. See the
releases
available if you want to use a stable version of the module.
Configuration
Next thing you need to do is to enable the module: in config.php
,
search for the module.enable
key and set fticks
to true:
'module.enable' => [ 'fticks' => true, … ],
For configuration of the module, see docs/authproc_fticks.md.
Acknowledgements
Some work on making SimpleSAMLphp log in F-ticks format was done by NIIF, and is available at NIIF. This module may derive ideas from their work.
Likewise, some ideas came from the Shibboleth IdP's F-ticks implementation and some of the config options should look familiar to Shibboleth users.