-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.3 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": "ecphp/doctrine-oci8",
"description": "Doctrine's OCI8 (Oracle) driver with cursor support.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"doctrine",
"oci8",
"oci",
"oracle",
"database",
"cursor"
],
"homepage": "https://github.com/ecphp/doctrine-oci8",
"require": {
"php": ">= 7.4",
"ext-oci8": "*",
"ext-pdo": "*",
"doctrine/dbal": "^2.6"
},
"require-dev": {
"ecphp/php-conventions": "^1",
"phpunit/phpunit": "^9",
"symfony/dotenv": "^5"
},
"autoload": {
"psr-4": {
"EcPhp\\DoctrineOci8\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\EcPhp\\DoctrineOci8\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"phpspec": "./vendor/bin/phpspec run"
}
}