forked from jakubkulhan/chrome-devtools-protocol
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.07 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "jakubkulhan/chrome-devtools-protocol",
"type": "library",
"description": "Chrome Devtools Protocol client for PHP",
"keywords": [
"chrome",
"chrome-devtools",
"chrome-devtools-protocol",
"headless-chrome",
"web",
"automation"
],
"license": "MIT",
"authors": [
{
"name": "Jakub Kulhan",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|^7.0",
"php": "~7.1",
"symfony/filesystem": ">=2.3",
"symfony/process": ">=3.3",
"wrench/wrench": "~2.0.10"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "~1.0.0",
"nette/php-generator": "~2.1|~3.0",
"phpstan/phpstan": "^0.11.4",
"phpunit/phpunit": "~6.4"
},
"autoload": {
"psr-4": {
"ChromeDevtoolsProtocol\\": [
"src/ChromeDevtoolsProtocol/",
"gen-src/ChromeDevtoolsProtocol/"
]
}
},
"autoload-dev": {
"psr-4": {
"ChromeDevtoolsProtocol\\": [
"test/ChromeDevtoolsProtocol/"
]
}
}
}