-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.41 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
51
{
"name": "revolt/event-loop-adapter-react",
"description": "Makes any ReactPHP based library run on top of the Revolt event loop.",
"license": "MIT",
"authors": [
{
"name": "Niklas Keller",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/revoltphp/event-loop-adapter-react/issues"
},
"require": {
"php": ">=8.1",
"react/async": "^4",
"react/event-loop": "^1 || ^0.5",
"revolt/event-loop": "^1 || ^0.2.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5.21",
"psalm/phar": "^4.24"
},
"autoload": {
"psr-4": {
"Revolt\\EventLoop\\React\\": "src"
},
"files": [
"src/bootstrap.php",
"etc/Factory.php"
]
},
"autoload-dev": {
"psr-4": {
"Revolt\\EventLoop\\React\\": "test",
"React\\Tests\\Async\\": "vendor/react/async/tests",
"React\\Tests\\EventLoop\\": "vendor/react/event-loop/tests"
}
},
"config": {
"preferred-install": {
"react/async": "source",
"react/event-loop": "source"
}
},
"scripts": {
"test": "@php -dzend.assertions=1 -dassert.exception=1 vendor/bin/phpunit",
"code-style": "@php vendor/bin/php-cs-fixer fix"
}
}