-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
34 lines (34 loc) · 1 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
{
"name": "clue/reactphp-sqlite",
"description": "Async SQLite database, lightweight non-blocking process wrapper around file-based database extension (ext-sqlite3), built on top of ReactPHP.",
"keywords": ["SQLite", "database", "non-blocking", "async", "ReactPHP"],
"homepage": "https://github.com/clue/reactphp-sqlite",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"ext-sqlite3": "*",
"clue/ndjson-react": "^1.0",
"react/child-process": "^0.6.6",
"react/event-loop": "^1.2",
"react/promise": "^3.2 || ^2.7 || ^1.2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
},
"autoload": {
"psr-4": {
"Clue\\React\\SQLite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\SQLite\\": "tests/"
}
}
}