├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── event_thing ├── Helper │ └── VirtualPlugins.php ├── Observer │ ├── AbstractObserver.php │ ├── GenericObserver.php │ └── OncePerEventObserver.php ├── Plugin │ ├── GenericPlugin.php │ └── OncePerEntityPlugin.php ├── Transport │ ├── DummyTransport.php │ ├── Rest.php │ └── TransportInterface.php ├── etc │ ├── config.xml │ ├── di.xml │ └── module.xml └── registration.php ├── framework └── Interception │ └── Definition │ └── Runtime.php └── gnu-gpl-v3.0.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/composer.json -------------------------------------------------------------------------------- /event_thing/Helper/VirtualPlugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/Helper/VirtualPlugins.php -------------------------------------------------------------------------------- /event_thing/Observer/AbstractObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/Observer/AbstractObserver.php -------------------------------------------------------------------------------- /event_thing/Observer/GenericObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/Observer/GenericObserver.php -------------------------------------------------------------------------------- /event_thing/Observer/OncePerEventObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/Observer/OncePerEventObserver.php -------------------------------------------------------------------------------- /event_thing/Plugin/GenericPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/Plugin/GenericPlugin.php -------------------------------------------------------------------------------- /event_thing/Plugin/OncePerEntityPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/Plugin/OncePerEntityPlugin.php -------------------------------------------------------------------------------- /event_thing/Transport/DummyTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/Transport/DummyTransport.php -------------------------------------------------------------------------------- /event_thing/Transport/Rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/Transport/Rest.php -------------------------------------------------------------------------------- /event_thing/Transport/TransportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/Transport/TransportInterface.php -------------------------------------------------------------------------------- /event_thing/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/etc/config.xml -------------------------------------------------------------------------------- /event_thing/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/etc/di.xml -------------------------------------------------------------------------------- /event_thing/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/etc/module.xml -------------------------------------------------------------------------------- /event_thing/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/event_thing/registration.php -------------------------------------------------------------------------------- /framework/Interception/Definition/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/framework/Interception/Definition/Runtime.php -------------------------------------------------------------------------------- /gnu-gpl-v3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmtickle/module-event-thing/HEAD/gnu-gpl-v3.0.md --------------------------------------------------------------------------------