-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 879 Bytes
/
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
{
"name": "crhg/laravel-sqlite-named-memory-connection",
"description": "SQLite connector which supports named in-memory database connection",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Manabu Matsui",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Crhg\\SQLiteNamedMemoryConnection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Crhg\\SQLiteNamedMemoryConnection\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.0.0",
"ext-PDO": "*",
"illuminate/support": "^5.5 || ^6.0 || ^7.0",
"illuminate/database": "^5.5 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^7.3"
},
"extra": {
"laravel": {
"providers": [
"Crhg\\SQLiteNamedMemoryConnection\\Providers\\SQLiteNamedMemoryConnectionServiceProvider"
]
}
}
}