-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
34 lines (34 loc) · 941 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
{
"name": "shakahl/laravel-eloquent-mysqli",
"type": "library",
"description": "MySQLi driver (connector) for Laravel 8.x Eloquent database",
"keywords": ["Laravel", "Lumen", "MySQL", "mysqli", "driver", "connector"],
"homepage": "http://github.com/shakahl/laravel-eloquent-mysqli",
"license": "MIT",
"authors": [
{
"name": "Soma Szelpal",
"email": "[email protected]",
"homepage": "https://github.com/shakahl"
}
],
"require": {
"php": ">=7.2",
"illuminate/contracts": "8.*",
"illuminate/database": "8.*",
"illuminate/support": "8.*"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
},
"autoload": {
"psr-4": {
"LaravelEloquentMySQLi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaravelEloquentMySQLi\\Tests\\": "tests/"
}
}
}