forked from jmoo/chrome-reactphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.02 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
{
"name": "jmoo/chrome-react",
"description": "Async, low-level client for the Chrome DevTools Protocol using ReactPHP",
"keywords": ["ReactPHP", "async", "chrome", "cdp", "browser", "headless", "client"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "John D. Moore",
"email": "me@jmoo.io"
}
],
"support": {
"issues": "https://github.com/jmoo/chrome-reactphp/issues",
"source": "https://github.com/jmoo/chrome-reactphp"
},
"require": {
"php": "^7.1|^8",
"ratchet/pawl": "^0.3.2",
"clue/block-react": "^1.3",
"clue/buzz-react": "^2.3",
"react/promise": "^2.7",
"react/event-loop": "^0.4.3||^0.5.2||^1.0"
},
"autoload": {
"psr-4": {
"Jmoo\\React\\Chrome\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jmoo\\React\\Chrome\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "^6.3",
"monolog/monolog": "^1.23",
"amphp/amp": "^2.0",
"amphp/react-adapter": "^1.1"
}
}