-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
50 lines (49 loc) · 1.04 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
{
"name": "voryx/pgasync",
"type": "library",
"description": "Async Reactive Postgres Driver for PHP (Non-blocking)",
"keywords": [
"async",
"postgresql",
"postgres",
"pgsql",
"react",
"reactive",
"driver",
"rx.php"
],
"license": "MIT",
"authors": [
{
"name": "Matt Bonneau", "email": "[email protected]", "role": "Developer"
},
{
"name": "David Dan", "email": "[email protected]", "role": "Developer"
}
],
"autoload": {
"psr-4": {
"PgAsync\\": "src/PgAsync/"
}
},
"autoload-dev": {
"psr-4": {
"PgAsync\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.0.0",
"voryx/event-loop": "^3.0 || ^2.0.2",
"reactivex/rxphp": "^2.0",
"react/socket": "^1.0 || ^0.8 || ^0.7",
"evenement/evenement": "^2.0 | ^3.0"
},
"require-dev": {
"phpunit/phpunit": ">=8.5.23 || ^6.5.5",
"react/dns": "^1.0"
},
"scripts": {
"docker-up": "cd docker && docker-compose up -d",
"docker-down": "cd docker && docker-compose down"
}
}