forked from titomiguelcosta/BehatContexts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 855 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "zorbus/behat-contexts",
"type": "library",
"description": "Contexts for functional testing with behat",
"keywords": ["BDD", "Behat", "Symfony2", "Context"],
"require": {
"doctrine/orm": "~2.4",
"doctrine/migrations": "~1.0",
"doctrine/data-fixtures": "~1.0"
},
"require-dev": {
"behat/behat": "~3.0"
},
"autoload": {
"psr-0": {
"Zorbus\\Behat\\": "src/",
"Zorbus\\Behat\\Test\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Tito Miguel Costa",
"email": "titomiguelcosta@gmail.com"
}
],
"homepage": "http://www.titomiguelcosta.com",
"minimum-stability": "alpha",
"extra": {
"branch-alias": {
"dev-master": "0.1.0-dev"
}
}
}