-
Notifications
You must be signed in to change notification settings - Fork 140
/
composer.json
51 lines (51 loc) · 1.25 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": "reactivex/rxphp",
"description": "Reactive extensions for php.",
"keywords": ["reactive", "extensions", "rx"],
"homepage": "https://github.com/ReactiveX/RxPHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander",
"email": "[email protected]"
},
{
"name": "David Dan",
"email": "[email protected]"
},
{
"name": "Matt Bonneau",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"react/promise": "^3 || ~2.2"
},
"require-dev": {
"satooshi/php-coveralls": "~1.0",
"phpunit/phpunit": "^8.5 || ^9",
"react/event-loop": "^1.0 || ^0.5 || ^0.4.2"
},
"suggest": {
"react/event-loop": "Used for scheduling async operations"
},
"autoload": {
"psr-4": { "Rx\\": "src" }
},
"autoload-dev": {
"files": [
"test/helper-functions.php"
],
"psr-4": {
"CustomOperatorTest\\Rx\\Operator\\": "test/CustomOperatorTest",
"Rx\\": "test/Rx"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}