-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
63 lines (63 loc) · 1.47 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "revolt/event-loop",
"description": "Rock-solid event loop for concurrent PHP applications.",
"keywords": [
"async",
"asynchronous",
"concurrency",
"non-blocking",
"event",
"event-loop",
"scheduler"
],
"license": "MIT",
"authors": [
{
"name": "Aaron Piotrowski",
"email": "[email protected]"
},
{
"name": "Cees-Jan Kiewiet",
"email": "[email protected]"
},
{
"name": "Christian Lück",
"email": "[email protected]"
},
{
"name": "Niklas Keller",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"ext-json": "*",
"phpunit/phpunit": "^9",
"jetbrains/phpstorm-stubs": "^2019.3",
"psalm/phar": "^5.15"
},
"autoload": {
"psr-4": {
"Revolt\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Revolt\\EventLoop\\": "test"
}
},
"support": {
"issues": "https://github.com/revoltphp/event-loop/issues"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"scripts": {
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit",
"code-style": "@php tools/php-cs-fixer/vendor/bin/php-cs-fixer fix"
}
}