forked from jacquestvanzuydam/laravel-firebird
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 935 Bytes
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 935 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "https://getcomposer.org/schema.json",
"name": "harrygulliford/laravel-firebird",
"description": "Firebird database driver for the Laravel Framework",
"license": "MIT",
"require": {
"php": "^8.2",
"illuminate/support": "^12.17|^13.0",
"illuminate/container": "^12.17|^13.0",
"illuminate/database": "^12.17|^13.0",
"illuminate/events": "^12.17|^13.0"
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^11.5|^12.0",
"orchestra/testbench": "^10.3|^11.0",
"fakerphp/faker": "^1.24"
},
"archive": {
"exclude": [
"/tests"
]
},
"autoload": {
"psr-4": {
"HarryGulliford\\Firebird\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HarryGulliford\\Firebird\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"HarryGulliford\\Firebird\\FirebirdServiceProvider"
]
}
}
}