forked from jacquestvanzuydam/laravel-firebird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 990 Bytes
/
composer.json
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
{
"name": "harrygulliford/laravel-firebird",
"description": "Firebird database driver for the Laravel Framework",
"license": "MIT",
"require": {
"php": ">=7.1",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/container": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/events": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
},
"require-dev": {
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~7.0|^8.0",
"orchestra/testbench": "~3.7|^4.0"
},
"archive": {
"exclude": ["/tests"]
},
"autoload":{
"psr-4": {
"Firebird\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Firebird\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Firebird\\FirebirdServiceProvider"
]
}
}
}