summaryrefslogtreecommitdiff
path: root/composer.json
blob: 21946f234308d9b79edea1cfe3a3348e52b273af (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
26
{
  "name": "lsces/illuminate-firebird",
  "description": "Firebird database driver for the illuminate database package of the Laravel Framework",
  "license": "MIT",
  "require": {
    "php": "^8.3",
    "illuminate/support": "^12.0 || ^13.0",
    "illuminate/container": "^12.0 || ^13.0",
    "illuminate/database": "^12.0 || ^13.0",
    "illuminate/events": "^12.0 || ^13.0",
    "ext-pdo": "*",
	"ext-pdo_firebird": "*"
  },
  "autoload": {
    "psr-4": {
      "Firebird\\Illuminate\\": "src/illuminate/"
    }
  },
  "extra": {
    "laravel": {
      "providers": [
        "Firebird\\Illuminate\\FirebirdServiceProvider"
      ]
    }
  }
}