-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.35 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.35 KB
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
53
54
55
{
"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": "development@artemeon.de"
}
],
"require": {
"php": ">=8.4",
"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": {
"laravel/pint": "^1.20.0",
"phpstan/phpstan": "^2.1.2",
"phpstan/phpstan-phpunit": "^2.0.4",
"phpstan/extension-installer": "^1.3",
"rector/rector": "2.0.7",
"pestphp/pest": "^3.7",
"mockery/mockery": "^1.6",
"pestphp/pest-plugin-watch": "^3.0",
"pestphp/pest-plugin-type-coverage": "^3.2",
"phpstan/phpstan-mockery": "^2.0"
},
"autoload": {
"psr-4": {
"Artemeon\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Artemeon\\Database\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"allow-plugins": {
"phpstan/extension-installer": true,
"pestphp/pest-plugin": true
}
}
}