From 742b16ec5c6f1618fb9dee9a989aa0f53a531b87 Mon Sep 17 00:00:00 2001 From: renanbr Date: Mon, 3 Feb 2020 21:24:52 +0100 Subject: [PATCH] Initial Composer setup --- .gitignore | 2 +- composer.json | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 composer.json diff --git a/.gitignore b/.gitignore index 3e7e969..fcad8de 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ **/*.pyc .pydevproject - +/vendor/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..ea892d7 --- /dev/null +++ b/composer.json @@ -0,0 +1,7 @@ +{ + "name": "vishnubob/wait-for-it", + "description": "Pure bash script to test and wait on the availability of a TCP host and port", + "type": "library", + "license": "MIT", + "bin": ["wait-for-it.sh"] +}