Download the PHP package mepihindeveloper/php-event-dispatcher without Composer

On this page you can find all versions of the php package mepihindeveloper/php-event-dispatcher. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php-event-dispatcher

php-event-dispatcher

release Packagist Version PHP Version Require license

build codecov

Компонент для работы с событиями и слушателями

Структура

В директории interfaces хранятся необходимые интерфейсы, которые необходимо имплементировать в при реализации собственного класса Listener. Класс Listener выступает в качестве слушателя события и должен реализовать метод process. В директории exceptions хранятся необходимые исключения. Исключение EventNotFoundException необходимо для идентификации ошибки поиска события (когда событие не было найдено), аналогично и для ListenerNotFoundException.

Класс Event реализует само событие. Собственные события должны наследоваться от класса Event.

Класс EventDispatcher реализует диспетчер событий, который работает через ListenerProvider, выступая посредником.

Класс ListenerProvider реализует поставщика слушателей, где происходят все операции со слушателями и событиями.

Примерная реализация событий и слушателей:

Доступные методы

Event

Метод Аргументы Возвращаемые данные Исключения Описание
stopPropagation void Останавливает работу (распространение) события
isPropagationStopped bool См. Psr\EventDispatcher\StoppableEventInterface

EventDispatcher

Метод Аргументы Возвращаемые данные Исключения Описание
__construct(ListenerProviderInterface $listenerProvider Провайдер слушателей событий void
dispatch(object $event) Объект события bool EventNotFoundException Отправляет событие слушателям
getListenerProvider ListenerProviderInterface Получает провайдера слушателей событий

ListenerProvider

Метод Аргументы Возвращаемые данные Исключения Описание
addListenerForEventType(ListenerInterface $listener, string $eventType = self::DEFAULT_EVENT_TYPE) $listener - Слушатель; $eventType - Тип события ListenerProvider Добавляет слушателя
removeListenerFromEventType(ListenerInterface $listener, string $eventType = self::DEFAULT_EVENT_TYPE) $listener - Слушатель; $eventType - Тип события ListenerProvider EventNotFoundException; ListenerNotFoundException Удаляет слушателя события
hasListenerInEventType(ListenerInterface $listener, string $eventType = self::DEFAULT_EVENT_TYPE) $listener - Слушатель; $eventType - Тип события bool EventNotFoundException Проверяет наличие слушателя в событии
hasEventType(string $eventType = self::DEFAULT_EVENT_TYPE) Тип события bool Проверяет наличие типа события
removeListenersForEventType(string $eventType = self::DEFAULT_EVENT_TYPE) Тип события ListenerProvider EventNotFoundException Удаляет слушателей события
removeListeners ListenerProvider Удаляет всех слушателей всех событий
getListenersForEvent(object $event) См. Psr\EventDispatcher\ListenerProviderInterface iterable EventNotFoundException См. Psr\EventDispatcher\ListenerProviderInterface
getListenersForEventType(string $eventType) Тип события array EventNotFoundException Получает слушателей события
getListeners array Получает всех слушателей всех событий

Контакты

Вы можете связаться со мной в социальной сети ВКонтакте: ВКонтакте: Максим Епихин

Если удобно писать на почту, то можете воспользоваться этим адресом: [email protected]

Мой канал на YouTube, который посвящен разработке веб и игровых проектов: YouTube: Максим Епихин

Поддержать меня можно переводом на Яндекс.Деньги: Денежный перевод


All versions of php-event-dispatcher with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
psr/event-dispatcher Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mepihindeveloper/php-event-dispatcher contains the following files

Loading the files please wait ....