forked from psalm/psalm-plugin-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.66 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
53
54
55
56
57
58
59
{
"name": "luckyru/doctrine-psalm-plugin",
"description": "Stubs to let Psalm understand Doctrine better",
"keywords": ["php", "code", "inspection", "doctrine", "orm", "doctrine2", "dbal", "psalm", "plugin", "psalm-plugin", "static analysis", "static-analysis", "extension"],
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Bruce Weirdan",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8",
"vimeo/psalm": "^4.3.2 || dev-master",
"doctrine/collections": "^1.0",
"doctrine/orm": "^2.6",
"composer/semver": "^1.4 || ^2.0 || ^3.0"
},
"conflict": {
"slevomat/coding-standard": "6.1.1"
},
"extra": {
"psalm" : {
"pluginClass": "Weirdan\\DoctrinePsalmPlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
"Weirdan\\DoctrinePsalmPlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Weirdan\\DoctrinePsalmPlugin\\Tests\\": [
"tests/_support",
"tests/acceptance"
]
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"codeception/codeception": "^4.0",
"weirdan/codeception-psalm-module": "^0.13.1",
"doctrine/doctrine-bundle": "^1.11 || ^2.0",
"phly/keep-a-changelog": "^2.1",
"doctrine/coding-standard": "^8.1"
},
"scripts": {
"check": [
"@phpcs",
"@test",
"@psalm"
],
"test": "codecept --colors run -v",
"psalm": "psalm",
"phpcs": "phpcs --colors"
}
}