PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Filip Štamcar   PHPMailer Logging with Monolog   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHPMailer Logging with Monolog
Log email sent via PHPMailer using Monolog
Author: By
Last change:
Date: 5 years ago
Size: 1,913 bytes
 

Contents

Class file image Download
{ "name": "filips123/monolog-phpmailer", "description": "PHPMailer handler for Monolog", "keywords": [ "log", "logging", "psr-3", "email", "monolog", "phpmailer" ], "homepage": "https://github.com/filips123/MonologPHPMailer/", "readme": "README.md", "type": "library", "license": "MIT", "authors": [ { "name": "Filip ?", "email": "projects@filips.si", "homepage": "https://projects.filips.si/" } ], "support": { "email": "projects+monolog-phpmailer@filips.si", "issues": "https://github.com/filips123/MonologPHPMailer/issues/", "source": "https://github.com/filips123/MonologPHPMailer/", "docs": "https://github.com/filips123/MonologPHPMailer/wiki/" }, "minimum-stability": "RC", "prefer-stable": true, "require": { "php": ">= 5.5.0", "monolog/monolog": "^1.0|^2.0@dev", "phpmailer/phpmailer": "^6.0" }, "require-dev": { "phpunit/phpunit": ">= 4.8.36", "phpunit/phpcov": ">= 2.0.0", "squizlabs/php_codesniffer": "^3.0" }, "autoload": { "psr-4": { "MonologPHPMailer\\": "src/" } }, "autoload-dev": { "psr-4": { "MonologPHPMailer\\Tests\\": "tests/" } }, "scripts": { "test": [ "@phpcs", "@phpunit" ], "phpcs": "phpcs", "phpcbf": "phpcbf", "phpunit": "phpunit" }, "scripts-descriptions": { "test": "Checks the coding standard with PHP CodeSniffer and launches the PHPUnit tests.", "phpcs": "Checks the coding standard with PHP CodeSniffer.", "phpcbf": "Fixes the coding standard errors with PHP Code Beautifier and Fixer.", "phpunit": "Launches the PHPUnit tests." } }