biganfa / phalconphp-logger-adapters
Miscellaneous Adapters For PhalconPHP standard logger
v2.0.0
2021-05-13 17:24 UTC
Requires
- php: >=7.1
- ext-json: *
- ext-phalcon: *
- eleirbag89/telegrambotphp: 1.3.10
- psr/http-client: ^1.0
- psr/http-factory: ^1.0
Requires (Dev)
This package is auto-updated.
Last update: 2025-01-14 01:41:25 UTC
README
phalconphp-logger-adapters
This repo contains a canonical demo implementation of an Adapter for standard logger of PhalconPHP framework. Consider it more like a Proof Of Concept, than a production-ready code. Contributions are more than welcome (see )
Tested with PhalconPHP version 3.2.4
Requirements
- php >= 7.0
- phalconPHP >= 3.2.4
How to use
Just install via composer
composer require biganfa/phalconphp-logger-adapters:^1.0
And configure your Phalcon's built-in logger appropriately
//somewhere in services.php $di->setShared('logger', function() use($config) { $logger = new \Phalcon\Logger\Multiple(); $logger->push(new LogglyAdapter(new LogglyClient())); $logger->push(new TelegramAdapter(new TelegramClient())); }