summaryrefslogtreecommitdiffstats
path: root/src/Event/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/Event/composer.json')
-rw-r--r--src/Event/composer.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/Event/composer.json b/src/Event/composer.json
new file mode 100644
index 0000000..e984d41
--- /dev/null
+++ b/src/Event/composer.json
@@ -0,0 +1,34 @@
+{
+ "name": "cakephp/event",
+ "description": "CakePHP event dispatcher library that helps implementing the observer pattern",
+ "type": "library",
+ "keywords": [
+ "cakephp",
+ "event",
+ "dispatcher",
+ "observer pattern"
+ ],
+ "homepage": "https://cakephp.org",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "CakePHP Community",
+ "homepage": "https://github.com/cakephp/event/graphs/contributors"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/cakephp/cakephp/issues",
+ "forum": "https://stackoverflow.com/tags/cakephp",
+ "irc": "irc://irc.freenode.org/cakephp",
+ "source": "https://github.com/cakephp/event"
+ },
+ "require": {
+ "php": ">=5.6.0",
+ "cakephp/core": "^3.6.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Cake\\Event\\": "."
+ }
+ }
+}