-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.08 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
{
"name": "artemeon/database",
"description": "Database access layer for the AGP@ARTEMEON software suite.",
"homepage": "https://github.com/artemeon/database#readme",
"license": "MIT",
"type": "library",
"scripts": {
"phpstan": "php ./vendor/bin/phpstan analyse --memory-limit=4G"
},
"authors": [
{
"name": "ARTEMEON Management Partner GmbH",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"psr/log": "^1|^2|^3",
"symfony/process": "^5.0|^6.0|^7.0",
"symfony/polyfill-mbstring": "^1.15"
},
"suggest": {
"ext-pgsql": "install for postgres.",
"ext-mysqli": "install for mysql."
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.10.59",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/extension-installer": "^1.3"
},
"autoload": {
"psr-4": {
"Artemeon\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Artemeon\\Database\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}