Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/micro-php/plugin-logger
https://github.com/micro-php/plugin-logger
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/micro-php/plugin-logger
- Owner: Micro-PHP
- License: mit
- Created: 2022-02-09T09:34:42.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-06T20:51:55.000Z (6 months ago)
- Last Synced: 2024-11-08T16:50:10.526Z (2 months ago)
- Language: PHP
- Size: 43.9 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Micro Framework - The minimum kernel for application initialization.
### Requirements
PHP >= 8.0.0
### How to use the library
Add the latest version of micro/kernel into your project by using Composer or manually:
__Using Composer (Recommended)__
Or require the package inside the composer.json of your project:
```
"require": {
"micro/kernel": "^1"
},
```### Example
After adding the library to your project, include the file autoload.php found in root of the library.
```html
include 'vendor/autoload.php';
```#### Configuration
#### Simple usage:
```php
$plugins = [
\Micro\Plugin\Logger\LoggerPlugin::class,
];
```## License
[MIT](LICENSE)