diff --git a/run/scripts/start b/run/scripts/start
index fcd793d3bace84f77f065a40ee26ffe8ddf9aacd..98bf37a5b7b4a0c6bc360939790404a9e7d0a821 100755
--- a/run/scripts/start
+++ b/run/scripts/start
@@ -3,7 +3,7 @@
 function getConfig() {
   if [[ ! -n ${PHP_VERSION} ]]; then
     while true; do
-      read -p "Which PHP version is your project using? " PHP_VERSION
+      read -p "Which PHP version is your project using? [0=No, 1=Yes] " PHP_VERSION
       case ${PHP_VERSION} in
       7.0) break ;;
       7.1) break ;;
@@ -17,7 +17,7 @@ function getConfig() {
   fi
   if [[ ! -n ${COMPOSER_DOWNGRADE} ]]; then
     while true; do
-      read -p "Do you want to downgrade Composer to version 1? " COMPOSER_DOWNGRADE
+      read -p "Do you want to downgrade Composer to version 1? [0=No, 1=Yes] " COMPOSER_DOWNGRADE
       case ${COMPOSER_DOWNGRADE} in
       0) break ;;
       1) break ;;