blob: 78b146a45a778467ece758f4870a682a66f5687b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"name": "xgrz/firebird-support",
"description": "Firebird database driver for the Laravel Framework",
"license": "MIT",
"require": {
"php": "^8.2",
"illuminate/support": "^12.0",
"illuminate/container": "^12.0",
"illuminate/database": "^12.0",
"illuminate/events": "^12.0"
},
"autoload": {
"psr-4": {
"Xgrz\\Firebird\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Xgrz\\Firebird\\FirebirdServiceProvider"
]
}
}
}
|