back to working

This commit is contained in:
2024-09-30 20:56:51 -04:00
commit 031aeeb4b3
7 changed files with 1171 additions and 0 deletions

28
composer.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "siteworxpro/monolog-handlers",
"homepage": "https://github.com/maxbanton/cwh",
"type": "library",
"description": "AWS CloudWatch Handler for Monolog library",
"license": "MIT",
"authors": [],
"version": "1.0.0",
"require": {
"php": "^8",
"monolog/monolog": "^3.7.0",
"aws/aws-sdk-php": "^3.322.8"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.4",
"squizlabs/php_codesniffer": "^3.10.3"
},
"scripts": {
"unit": "phpunit"
},
"autoload": {
"psr-4": {
"Siteworx\\MonologHandlers\\": "src",
"Siteworx\\MonologHandlers\\Test\\": "tests"
}
},
"minimum-stability": "stable"
}