#!/usr/bin/expect -f
set timeout -1
spawn composer install --ignore-platform-reqs
expect "Continue as root*" {
    send "yes\r"
}
expect "Discard changes*" {
    send "y\r"
}
expect eof
