Is Symfony Flex available? Create a crontab with this script to be executed every minute and stay tuned!
#!/bin/bash
result=`curl -sI https://github.com/symfony/flex | grep -Fi 'HTTP/1.1'`
if [[ $result == *"200"* ]]; then
echo "Flex is available right now !!!" | mail -s "Flex available" my@email.c
fi