summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 9 insertions, 4 deletions
diff --git a/README.md b/README.md
index 7d8ade5..ea18c30 100644
--- a/README.md
+++ b/README.md
@@ -37,16 +37,17 @@ $log = new Logger('name');
$log->pushHandler(new StreamHandler('path/to/your.log', Logger::WARNING));
// add records to the log
-$log->addWarning('Foo');
-$log->addError('Bar');
+$log->warning('Foo');
+$log->error('Bar');
```
## Documentation
- [Usage Instructions](doc/01-usage.md)
- [Handlers, Formatters and Processors](doc/02-handlers-formatters-processors.md)
-- [Utility classes](doc/03-utilities.md)
+- [Utility Classes](doc/03-utilities.md)
- [Extending Monolog](doc/04-extending.md)
+- [Log Record Structure](doc/message-structure.md)
## Third Party Packages
@@ -58,7 +59,7 @@ can also add your own there if you publish one.
### Requirements
-- Monolog works with PHP 5.3 or above, and is also tested to work with HHVM.
+- Monolog works with PHP 7.0 or above, use Monolog `^1.0` for PHP 5.3+ support.
### Submitting bugs and feature requests
@@ -79,6 +80,10 @@ Bugs and feature request are tracked on [GitHub](https://github.com/Seldaek/mono
- [Aura.Web_Project](https://github.com/auraphp/Aura.Web_Project) comes out of the box with Monolog.
- [Nette Framework](http://nette.org/en/) can be used with Monolog via [Kdyby/Monolog](https://github.com/Kdyby/Monolog) extension.
- [Proton Micro Framework](https://github.com/alexbilbie/Proton) comes out of the box with Monolog.
+- [FuelPHP](http://fuelphp.com/) comes out of the box with Monolog.
+- [Equip Framework](https://github.com/equip/framework) comes out of the box with Monolog.
+- [Yii 2](http://www.yiiframework.com/) is usable with Monolog via the [yii2-monolog](https://github.com/merorafael/yii2-monolog) plugin.
+- [Hawkbit Micro Framework](https://github.com/HawkBitPhp/hawkbit) comes out of the box with Monolog.
### Author