forked from chrome-php/chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.16 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
{
"name": "chrome-php/chrome",
"description": "Instrument headless chrome/chromium instances from PHP",
"keywords": ["chrome", "chromium", "crawl", "browser", "headless", "screenshot", "pdf", "puppeteer"],
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]"
},
{
"name": "Enrico Dias",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"apix/log": "^1.2",
"chrome-php/wrench": "^1.0",
"evenement/evenement": "^3.0.1",
"psr/log": "^1.1",
"symfony/filesystem": "^4.4 || ^5.0 || ^6.0",
"symfony/process": "^4.4 || ^5.0 || ^6.0"
},
"require-dev":{
"bamarni/composer-bin-plugin": "^1.4.1",
"phpunit/phpunit": "^9.5.9",
"symfony/var-dumper": "^4.4 || ^5.0 || ^6.0"
},
"autoload":{
"psr-4" : {
"HeadlessChromium\\": "src/"
}
},
"autoload-dev":{
"psr-4" : {
"HeadlessChromium\\Test\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
}
}