diff options
| author | xGrz <grzesiek.byskiniewicz@gmail.com> | 2025-10-01 11:56:48 +0200 |
|---|---|---|
| committer | xGrz <grzesiek.byskiniewicz@gmail.com> | 2025-10-01 11:56:48 +0200 |
| commit | 5af3375acd5611295c672aefa2392ab36fde8ec0 (patch) | |
| tree | bd194232c738cbbded2cd8e2be9b1157a633289e /composer.json | |
| download | illuminate-firebird-5af3375acd5611295c672aefa2392ab36fde8ec0.tar.gz illuminate-firebird-5af3375acd5611295c672aefa2392ab36fde8ec0.tar.bz2 illuminate-firebird-5af3375acd5611295c672aefa2392ab36fde8ec0.zip | |
[dev] Initial commit from HarryGulliford/laravel-firebird.
Added support for L12, handling search without a case-sensitive search at the database query level.
Changed namespaces to xgrz.
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..10367ac --- /dev/null +++ b/composer.json @@ -0,0 +1,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": { + "HarryGulliford\\Firebird\\": "src/" + } + }, + "extra": { + "laravel": { + "providers": [ + "Xgrz\\Firebird\\FirebirdServiceProvider" + ] + } + } +} |
