This repository was archived by the owner on Aug 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.82 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.82 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "edno/codeception-browsermob",
"description": "Codeception extension providing BrowserMob Proxy capabilities",
"keywords": ["codeception", "extension", "proxy", "browsermob", "har"],
"homepage": "https://github.com/edno/codeception-browsermob",
"license": "MIT",
"authors": [
{
"name": "Gregory Heitz",
"email": "edno@edno.io"
}
],
"require": {
"php": ">=7.2",
"codeception/codeception": ">=2.2",
"chartjes/php-browsermob-proxy": "dev-master"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2",
"phpdocumentor/phpdocumentor": "^2",
"cvuorinen/phpdoc-markdown-public": "*",
"codeception/module-asserts": "^1"
},
"autoload": {
"psr-4": {
"Codeception\\Extension\\": "src/"
}
},
"config": {
"preferred-install": "dev",
"process-timeout": 5000
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"docker-build": "docker build -t codecept/browsermob tests/_data/docker/",
"docker-run": [
"docker run -d -p 9090-9189:9090-9189 --name codecept_browsermob codecept/browsermob",
"docker ps -a"
],
"docker-stop": "docker stop codecept_browsermob",
"docker-restart": [
"docker restart codecept_browsermob",
"sleep 5"
],
"docker-remove": [
"docker rm -f codecept_browsermob",
"docker rmi codecept/browsermob"
],
"phpdoc-md": [
"rm -rf docs",
"git clone https://github.com/edno/codeception-browsermob.wiki.git docs",
"./vendor/bin/phpdoc --quiet",
"mv docs/README.md docs/Codeception-BrowserMob-Proxy-extension-Documentation.md"
]
}
}