-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (34 loc) · 1.1 KB
/
Copy pathcomposer.json
File metadata and controls
35 lines (34 loc) · 1.1 KB
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
35
{
"name": "jeromeerasmus/selenium-automate",
"description": "PHP bindings for BrowserStack Local",
"type": "library",
"license": "MIT",
"require": {
"facebook/webdriver": "^1.6",
"browserstack/browserstack-local": "^1.1.0",
"symfony/dotenv": "^3.2",
"guzzlehttp/guzzle": "^6.3",
"behat/behat": "^3.4",
"behat/mink": "^1.7",
"behat/mink-extension": "^2.3",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "^1.3",
"peridot-php/webdriver-manager": "^1.3.1"
},
"config": {
"bin-dir": "bin/"
},
"scripts": {
"capabilities": "ENV_FILE=/../../.env METHOD=capabilities php app/lib/BrowserStackMethods.php",
"start-selenium": "bin/manager start",
"run-selenium": "bin/behat --config=conf.selenium.yml -f pretty -o std -f junit -o results",
"run-bs": "ENV_FILE=/../../.env ./bin/behat --config=conf.browserstack.yml",
"run-bs-parallel": "ENV_FILE=/../../.env CONFIG_FILE=./conf.browserstack-parallel.yml /usr/bin/env php app/lib/parallel.php"
},
"autoload": {
"classmap": ["app/lib/"]
},
"bin": [
"app/lib/"
]
}