-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 755 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 755 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
{
"name": "yajra/laravel-pdo-via-oci8",
"description": "PDO userspace driver proxying calls to PHP OCI8 driver",
"license": "MIT",
"authors": [
{
"name": "Arjay Angeles",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-pdo": "*",
"ext-oci8": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.4|^9.0"
},
"autoload": {
"psr-4": {
"Yajra\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"docker": "docker run -d -p 49160:22 -p 1521:1521 deepdiver/docker-oracle-xe-11g"
},
"minimum-stability": "stable"
}