Skip to content

Instantly share code, notes, and snippets.

View achristodoulou's full-sized avatar

Andreas Christodoulou achristodoulou

View GitHub Profile
@achristodoulou
achristodoulou / behat_instructions.md
Last active March 15, 2016 21:25
Setting up behat and connecting with Symfony 2.8 and Mink
  • Install package and dependancies
    • Remember to set minimum-stability eq dev as there is no stable version of the package.
"require-dev": {
        "behat/mink-extension": "^2.1",
        "behat/mink-goutte-driver": "^1.2",
        "behat/mink-selenium2-driver": "^1.3",
        "phpunit/phpunit": "5.2.*",
        "behat/symfony2-extension": "^2.1"
@JeffreyWay
JeffreyWay / .bash_profile
Created July 31, 2015 19:20
Prettier git logs
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"