summaryrefslogtreecommitdiff
path: root/composer.json
blob: 9437101a0ece5c5b873af78b2ed50602a03f1605 (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
25
{
  "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",
    "ext-pdo": "*"
  },
  "autoload": {
    "psr-4": {
      "Xgrz\\Firebird\\": "src/"
    }
  },
  "extra": {
    "laravel": {
      "providers": [
        "Xgrz\\Firebird\\FirebirdServiceProvider"
      ]
    }
  }
}