-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
53 lines (53 loc) · 959 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "nextras/orm-phpstan",
"description": "PHPStan extension for Nextras Orm",
"type": "phpstan-extension",
"keywords": [
"dev",
"static analysis"
],
"license": [
"MIT"
],
"require": {
"php": ">=8.1",
"phpstan/phpstan": "^1.10.12 || ^2.0.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0 || ^2.0",
"nextras/orm": "~5.0",
"nette/tester": "^2.3.1"
},
"conflict": {
"nextras/orm": "<5.0"
},
"autoload": {
"psr-4": {
"Nextras\\OrmPhpStan\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"classmap": [
"tests/"
]
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"scripts": {
"phpstan": "phpstan analyze -c phpstan.neon",
"tests": "tester ./tests/test.php && phpstan analyze -c phpstan.neon"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}