-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1008 Bytes
/
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
{
"name": "artemeon/orm",
"license": "MIT",
"type": "library",
"description": "",
"scripts": {
"phpstan": "php ./vendor/bin/phpstan analyse --memory-limit=4G"
},
"authors": [
{
"name": "ARTEMEON Management Partner GmbH",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Artemeon\\Orm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Artemeon\\Orm\\Tests\\": "tests/"
}
},
"require": {
"artemeon/database": "^3.1",
"psr/simple-cache": "^3.0",
"doctrine/collections": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"symfony/cache": "^6.0",
"phpstan/phpstan": "^1.10.59",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-phpunit": "^1.3"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}