diff options
| author | Asko Nõmm <asko@nth.ee> | 2024-11-10 22:28:03 +0200 |
|---|---|---|
| committer | Asko Nõmm <asko@nth.ee> | 2024-11-10 22:28:03 +0200 |
| commit | 12b6c4b3008c2df545c537943d4e38323cfc174e (patch) | |
| tree | 11e427a794832ac73657da675f3d79949443a3f6 /composer.json | |
Initial commit
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4ee9199 --- /dev/null +++ b/composer.json @@ -0,0 +1,31 @@ +{ + "name": "asko/loggr", + "description": "An extendable logging utility class with built-in support for various logging formats.", + "type": "library", + "license": "MIT", + "autoload": { + "psr-4": { + "Asko\\Loggr\\": "src/" + }, + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "psr-4": { + "Asko\\Loggr\\Tests\\": "tests/" + } + }, + "authors": [ + { + "name": "Asko Nomm", + "email": "asko@faultd.com" + } + ], + "require": { + "php": "^8.3" + }, + "require-dev": { + "phpunit/phpunit": "11" + } +} |
