summaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json13
1 files changed, 7 insertions, 6 deletions
diff --git a/composer.json b/composer.json
index 9437101..7ed6234 100644
--- a/composer.json
+++ b/composer.json
@@ -1,24 +1,25 @@
{
- "name": "xgrz/firebird-support",
- "description": "Firebird database driver for the Laravel Framework",
+ "name": "lsces/illuminate-firebird",
+ "description": "Firebird database driver for the illuminate database package of the Laravel Framework",
"license": "MIT",
"require": {
- "php": "^8.2",
+ "php": "^8.4",
"illuminate/support": "^12.0",
"illuminate/container": "^12.0",
"illuminate/database": "^12.0",
"illuminate/events": "^12.0",
- "ext-pdo": "*"
+ "ext-pdo": "*",
+ "ext-pdo_firebird": "*"
},
"autoload": {
"psr-4": {
- "Xgrz\\Firebird\\": "src/"
+ "Firebird\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
- "Xgrz\\Firebird\\FirebirdServiceProvider"
+ "Firebird\\Illuminate\\FirebirdServiceProvider"
]
}
}