PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Michael Cummings   PHP Event Mediator   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Event Mediator
Emit and listen to events using a mediator object
Author: By
Last change: Added global NS to build-in functions and constants using PHP BackSlasher for possible performance gain. See https://veewee.github.io/blog/optimizing-php-performance-by-fq-function-calls/ and https://github.com/nilportugues/php-backslasher for details.
Date: 6 years ago
Size: 1,292 bytes
 

Contents

Class file image Download
{ "name": "dragonrun1/event-mediator", "description": "A general event mediator (dispatcher) which has minimal dependencies so it is easy to drop in and use.", "license": "GPL-2.0", "authors": [ { "name": "Michael Cummings", "email": "mgcummings@yahoo.com", "role": "Developer" } ], "autoload": { "psr-0": { "Spec\\": "specs/" }, "psr-4": { "EventMediator\\": [ "src/" ] } }, "config": { "optimize-autoloader": true }, "extra": { "branch-alias": { "dev-master": "2.*-dev" } }, "homepage": "https://github.com/Dragonrun1/event-mediator", "minimum-stability": "dev", "prefer-stable": true, "require": { "ext-SPL": "*", "php": ">=7.0, <7.2", "pimple/pimple": "~3.0" }, "require-dev": { "henrikbjorn/phpspec-code-coverage": "dev-master", "phpspec/nyan-formatters": "~2.0.0", "phpspec/phpspec": "~3.1.0", "phpunit/php-code-coverage": "~4.0", "symfony/console": "~2.8", "nilportugues/php_backslasher": "^1.1" }, "replace": { "dragonrun1/event-mediator": "2.0.*" } }