forked from yajra/laravel-oci8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.21 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "yajra/laravel-oci8",
"description": "Oracle DB driver for Laravel 4|5 via OCI8",
"keywords" : ["laravel4","laravel5","laravel","oracle","oci8","pdo_oci"],
"license": "MIT",
"authors": [
{
"name": "Arjay Angeles",
"email": "aqangeles@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"ext-oci8": ">=2.0.0",
"illuminate/support": "5.5.*",
"illuminate/database": "5.5.*",
"yajra/laravel-pdo-via-oci8": "^1.3.1"
},
"require-dev": {
"mockery/mockery": "~1.0",
"scrutinizer/ocular": "~1.1",
"phpunit/phpunit": "~6.0"
},
"autoload": {
"files": [
"src/helper.php"
],
"psr-4": {
"Yajra\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.5-dev"
},
"laravel": {
"providers": [
"Yajra\\Oci8\\Oci8ServiceProvider"
]
}
},
"scripts": {
"docker": "docker run -d -p 49160:22 -p 49161:1521 wnameless/oracle-xe-11g"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}