-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.54 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
51
52
{
"name": "ecphp/doctrine-oci8-bundle",
"description": "Doctrine OCI8 (Oracle) bundle",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"keywords": [
"bundle",
"oci",
"oci8",
"oracle",
"symfony"
],
"require": {
"php": ">= 7.4",
"ext-oci8": "*",
"ecphp/doctrine-oci8": "^1",
"symfony/dependency-injection": ">= 4.4"
},
"require-dev": {
"ecphp/php-conventions": "^1.0",
"friends-of-phpspec/phpspec-code-coverage": "^6.0",
"infection/infection": "^0.24.0",
"infection/phpspec-adapter": "^0.1.2",
"phpspec/phpspec": "^7.0",
"symfony/http-kernel": "^5.4"
},
"autoload": {
"psr-4": {
"EcPhp\\DoctrineOci8Bundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\EcPhp\\DoctrineOci8Bundle\\": "./spec/EcPhp/DoctrineOci8Bundle/",
"tests\\EcPhp\\DoctrineOci8Bundle\\": "./tests/src"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"changelog-unreleased": "docker-compose run auto_changelog -c .auto-changelog -u",
"changelog-version": "docker-compose run auto_changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run"
}
}