diff options
Diffstat (limited to 'vendor/gipfl/protocol/composer.json')
-rw-r--r-- | vendor/gipfl/protocol/composer.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/gipfl/protocol/composer.json b/vendor/gipfl/protocol/composer.json new file mode 100644 index 0000000..4c204f3 --- /dev/null +++ b/vendor/gipfl/protocol/composer.json @@ -0,0 +1,26 @@ +{ + "name": "gipfl/protocol", + "description": "Base library for some network protocol implementations", + "type": "library", + "license": "MIT", + "authors": [ + { + "name": "Thomas Gelf", + "email": "thomas@gelf.net" + } + ], + "config": { + "sort-packages": true + }, + "autoload": { + "psr-4": { + "gipfl\\Protocol\\Exception\\": "src/Exception", + "gipfl\\Protocol\\Generic\\": "src/Generic" + } + }, + "require": { + "php": ">=5.4.0", + "evenement/evenement": "^2", + "react/stream": "^1.0" + } +} |