From 982fe18d432da87da8998f7b9c8215c04c62187a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1gi-Kaz=C3=A1r=20M=C3=A1rk?= Date: Thu, 17 Dec 2015 08:38:26 +0100 Subject: [PATCH] Add puli binding types Update binding types --- .gitignore | 1 + puli.json | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 puli.json diff --git a/.gitignore b/.gitignore index 7608c4b..da734f1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.puli/ build/ vendor/ composer.lock diff --git a/puli.json b/puli.json new file mode 100644 index 0000000..aa3375b --- /dev/null +++ b/puli.json @@ -0,0 +1,29 @@ +{ + "version": "1.0", + "binding-types": { + "Http\\Message\\MessageFactory": { + "description": "PSR-7 Message Factory", + "parameters": { + "depends": { + "description": "Optional class dependency which can be checked by consumers" + } + } + }, + "Http\\Message\\StreamFactory": { + "description": "PSR-7 Stream Factory", + "parameters": { + "depends": { + "description": "Optional class dependency which can be checked by consumers" + } + } + }, + "Http\\Message\\UriFactory": { + "description": "PSR-7 URI Factory", + "parameters": { + "depends": { + "description": "Optional class dependency which can be checked by consumers" + } + } + } + } +}