Initial commit

This commit is contained in:
Kamil Kokot
2016-07-23 01:19:00 +02:00
commit ef4928c2ee
11 changed files with 442 additions and 0 deletions

26
composer.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "friends-of-behat/symfony-extension",
"description": "Allows to overwrite suites' default settings.",
"license": "MIT",
"authors": [
{
"name": "Kamil Kokot",
"email": "kamil@kokot.me",
"homepage": "http://kamil.kokot.me"
}
],
"require": {
"php": "^5.6|^7.0",
"behat/behat": "^3.1",
"symfony/http-kernel": "^2.7|^3.0"
},
"require-dev": {
"behat/mink": "^1.7",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.2"
},
"autoload": {
"psr-4": { "FriendsOfBehat\\SymfonyExtension\\": "src/" }
}
}