-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.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": "webgriffe/in-memory-repository",
"description": "A Doctrine repository implementation with in-memory storage.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Webgriffe\\InMemoryRepository\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webgriffe\\InMemoryRepository\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Webgriffe SRL",
"email": "support@webgriffe.com"
}
],
"require": {
"php": "^8.0",
"doctrine/persistence": "^2.3|^3.2",
"doctrine/collections": "^1.8|^2.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/extension-installer": "^1.3",
"vimeo/psalm": "^4.30"
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse -l max src/ tests/",
"psalm": "vendor/bin/psalm",
"phpunit": "vendor/bin/phpunit tests/",
"test": [
"@phpstan",
"@psalm",
"@phpunit"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"composer/package-versions-deprecated": true
}
}
}