From 066d4687116a901c60a6be624dd1c2a5072e639e Mon Sep 17 00:00:00 2001 From: Mhd Zaher Ghaibeh Date: Sun, 11 Feb 2018 20:00:00 +0300 Subject: [PATCH 1/2] adding symfony 4.0 support --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 22b5336..55c3cf9 100644 --- a/composer.json +++ b/composer.json @@ -17,9 +17,9 @@ "require": { "ext-zip": "*", "guzzlehttp/guzzle": "~4.0|~5.0|~6.0", - "symfony/console": "~2.3|~3.0", - "symfony/filesystem": "~2.3|~3.0", - "symfony/process": "~2.3|~3.0" + "symfony/console": "~2.3|~3.0|~4.0", + "symfony/filesystem": "~2.3|~3.0|~4.0", + "symfony/process": "~2.3|~3.0|~4.0" }, "bin": [ "botman" From 8df4182baa7b12fdc6dd38e943dbf730345b1d18 Mon Sep 17 00:00:00 2001 From: Mhd Zaher Ghaibeh Date: Sun, 11 Feb 2018 20:18:41 +0300 Subject: [PATCH 2/2] Create README.md --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..f811a10 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Botman Studio installer + +First, download the BotMan installer using Composer: + +``` +composer global require "botman/installer" +``` + +Make sure to place the `$HOME/.composer/vendor/bin directory` +(or the equivalent directory for your OS) in your `$PATH` so the botman executable can be located by your system. + +Once installed, the botman new command will create a fresh BotMan Studio installation in the directory you specify. + +For instance, `botman new weatherbot` will create a directory named `weatherbot` containing a fresh BotMan Studio +installation with all of BotMan's dependencies already installed: + +``` +botman new weatherbot +``` + +Take a look at the [BotMan Studio documentation](https://botman.io/2.0/botman-studio), to learn more about how to add and configure messaging drivers.