| 12345678910111213141516171819202122232425 |
- {
- "name": "michel/psr3-logger",
- "description": "A straightforward logging library for PHP that implements PSR-3, making it easy to integrate logging into your project.",
- "type": "library",
- "license": "MIT",
- "authors": [
- {
- "name": "F. Michel"
- }
- ],
- "autoload": {
- "psr-4": {
- "Michel\\Log\\": "src",
- "Test\\Michel\\Log\\": "tests"
- }
- },
- "minimum-stability": "alpha",
- "require": {
- "php": ">=7.4",
- "psr/log": "^1.1|^2.0"
- },
- "require-dev": {
- "michel/unitester": "^1.0.0"
- }
- }
|