-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (51 loc) · 1.13 KB
/
composer.json
File metadata and controls
52 lines (51 loc) · 1.13 KB
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
{
"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": "matt@bonneau.net", "role": "Developer"
},
{
"name": "David Dan", "email": "davidwdan@gmail.com", "role": "Developer"
}
],
"autoload": {
"psr-4": {
"PgAsync\\": "src/PgAsync/"
}
},
"autoload-dev": {
"psr-4": {
"PgAsync\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1.0",
"voryx/event-loop": "^3.0.2 || ^2.0.2",
"reactivex/rxphp": "^2.0.11",
"react/promise": "^2.7.1 || ^3",
"react/promise-stream": "^1.5",
"evenement/evenement": "^2.0 | ^3.0.2",
"wyrihaximus/react-opportunistic-tls": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": ">=8.5.23 || ^6.5.5",
"react/dns": "^1.12.0"
},
"scripts": {
"docker-up": "cd docker && docker-compose up -d",
"docker-down": "cd docker && docker-compose down"
}
}