nick-scalewest / psr3-bridge
This library provides a PSR-3 compliant bridge for Casbin Logger.
1.0.1
2024-03-28 12:45 UTC
Requires
- nick-scalewest/php-casbin: ^1.0
- psr/log: ^1.1|^2.0|^3.0
Requires (Dev)
- mockery/mockery: ^1.2
- php-coveralls/php-coveralls: ^2.1
- phpunit/phpunit: ~7.0|~8.0
This package is auto-updated.
Last update: 2025-02-28 14:40:18 UTC
README
This library provides a PSR-3 compliant bridge for PHP-Casbin
Logger.
Casbin is a powerful and efficient open-source access control library.
Installation
Via Composer.
composer require casbin/psr3-bridge
Usage
Here is an example of using Monolog
, Monolog
implements the PSR-3 interface.
You can use any other library that implements PSR-3 interface.
use Casbin\Bridge\Logger\LoggerBridge; use Casbin\Log\Log; use Monolog\Logger; use Monolog\Handler\StreamHandler; $log = new Logger('name'); $log->pushHandler(new StreamHandler('path/to/your.log', Logger::WARNING)); Log::setLogger(new LoggerBridge($log));
Getting Help
License
This project is licensed under the Apache 2.0 license.