-
- Downloads
Relate histories
Showing
- .gitignore 4 additions, 0 deletions.gitignore
- LICENSE 504 additions, 0 deletionsLICENSE
- README.md 98 additions, 66 deletionsREADME.md
- bin/test.php 140 additions, 0 deletionsbin/test.php
- composer.json 54 additions, 0 deletionscomposer.json
- composer.lock 7776 additions, 0 deletionscomposer.lock
- config-templates/module_accounting.php 206 additions, 0 deletionsconfig-templates/module_accounting.php
- hooks/hook_adminmenu.php 30 additions, 0 deletionshooks/hook_adminmenu.php
- hooks/hook_configpage.php 26 additions, 0 deletionshooks/hook_configpage.php
- hooks/hook_cron.php 91 additions, 0 deletionshooks/hook_cron.php
- locales/en/LC_MESSAGES/accounting.po 18 additions, 0 deletionslocales/en/LC_MESSAGES/accounting.po
- phpcs.xml 17 additions, 0 deletionsphpcs.xml
- phpunit.xml 42 additions, 0 deletionsphpunit.xml
- psalm.xml 41 additions, 0 deletionspsalm.xml
- routing/routes/routes.yml 28 additions, 0 deletionsrouting/routes/routes.yml
- routing/services/services.yml 19 additions, 0 deletionsrouting/services/services.yml
- src/Auth/Process/Accounting.php 98 additions, 0 deletionssrc/Auth/Process/Accounting.php
- src/Entities/Activity.php 59 additions, 0 deletionssrc/Entities/Activity.php
- src/Entities/Activity/Bag.php 20 additions, 0 deletionssrc/Entities/Activity/Bag.php
- src/Entities/Authentication/Event.php 29 additions, 0 deletionssrc/Entities/Authentication/Event.php
.gitignore
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
bin/test.php
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "cicnavi/simplesamlphp-module-accounting", | ||
"description": "The SimpleSAMLphp accounting module", | ||
"type": "simplesamlphp-module", | ||
"license": "LGPL-2.1-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Marko Ivančić", | ||
"email": "marko.ivancic@srce.hr" | ||
} | ||
], | ||
"config": { | ||
"allow-plugins": { | ||
"simplesamlphp/composer-module-installer": true | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"SimpleSAML\\Module\\accounting\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"SimpleSAML\\Test\\Module\\accounting\\": "tests/src/" | ||
} | ||
}, | ||
"require": { | ||
"php": "^7.4 || ^8.0", | ||
"ext-pdo": "*", | ||
"ext-pdo_sqlite": "*", | ||
"doctrine/dbal": "^3", | ||
"psr/log": "^1|^2|^3", | ||
"simplesamlphp/composer-module-installer": "^1", | ||
"cicnavi/simple-file-cache-php": "^2.0" | ||
}, | ||
"require-dev": { | ||
"vimeo/psalm": "^4", | ||
"phpunit/phpunit": "^9", | ||
"squizlabs/php_codesniffer": "^3", | ||
"simplesamlphp/simplesamlphp": "^2@beta", | ||
"simplesamlphp/simplesamlphp-test-framework": "^1" | ||
}, | ||
"suggest": { | ||
"ext-pcntl": "Enables job runner to gracefully respond to SIGTERM signal.", | ||
"ext-redis": "Mandatory if PhpRedis is to be used as a store." | ||
}, | ||
"scripts": { | ||
"pre-commit": [ | ||
"vendor/bin/phpcs -p", | ||
"vendor/bin/psalm", | ||
"vendor/bin/phpunit" | ||
] | ||
} | ||
} |
composer.lock
0 → 100644
This diff is collapsed.
config-templates/module_accounting.php
0 → 100644
hooks/hook_adminmenu.php
0 → 100644
hooks/hook_configpage.php
0 → 100644
hooks/hook_cron.php
0 → 100644
locales/en/LC_MESSAGES/accounting.po
0 → 100644
phpcs.xml
0 → 100644
phpunit.xml
0 → 100644
psalm.xml
0 → 100644
routing/routes/routes.yml
0 → 100644
routing/services/services.yml
0 → 100644
src/Auth/Process/Accounting.php
0 → 100644
src/Entities/Activity.php
0 → 100644
src/Entities/Activity/Bag.php
0 → 100644
src/Entities/Authentication/Event.php
0 → 100644
Please register or sign in to comment