-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 745 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 745 Bytes
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
{
"name": "dustingraham/react-mysql",
"description": "Non-blocking MySQLi database access with PHP. Designed to work with reactphp/react.",
"keywords": ["mysql", "react", "asynchronous"],
"license": "MIT",
"authors": [
{"name": "Dustin Graham", "email": "github@dustingraham.com"}
],
"require": {
"php": ">=5.4.0",
"ext-mysqli": "*",
"react/event-loop": "^0.4.2",
"react/promise": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"DustinGraham\\ReactMysql\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DustinGraham\\ReactMysql\\Tests\\": "tests/"
}
}
}