summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..667a714
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,26 @@
+{
+ "name": "psr/event-dispatcher",
+ "description": "Standard interfaces for event handling.",
+ "type": "library",
+ "keywords": ["psr", "psr-14", "events"],
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "require": {
+ "php": ">=7.2.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\EventDispatcher\\": "src/"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ }
+}