Skip to content

Instantly share code, notes, and snippets.

@dtrenz
Created March 3, 2014 20:49
Show Gist options
  • Save dtrenz/9334338 to your computer and use it in GitHub Desktop.
Save dtrenz/9334338 to your computer and use it in GitHub Desktop.
Laravel 4.1 + Behat/Mink
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"laravel/framework": "4.1.*"
},
"require-dev": {
"behat/behat": "2.5.*",
"behat/mink": "1.5.0",
"behat/mink-extension": "*",
"behat/mink-goutte-driver": "*",
"behat/mink-sahi-driver": "*"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment