summaryrefslogtreecommitdiff
path: root/composer.json
blob: a2e71d3c852f3243475ebac92e59d6a180eb1467 (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",
    "illuminate/container": "^12.0",
    "illuminate/database": "^12.0",
    "illuminate/events": "^12.0",
    "ext-pdo": "*",
	"ext-pdo_firebird": "*"
  },
  "autoload": {
    "psr-4": {
      "Firebird\\Illuminate\\": "src/illuminate/"
    }
  },
  "extra": {
    "laravel": {
      "providers": [
        "Firebird\\Illuminate\\FirebirdServiceProvider"
      ]
    }
  }
}