-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.15 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
{
"name": "jiripudil/phpstan-sealed-classes",
"description": "Sealed classes support for PHPStan.",
"keywords": ["phpstan", "static analysis", "sealed class"],
"type": "phpstan-extension",
"license": "MIT",
"authors": [
{
"name": "Jiří Pudil",
"email": "[email protected]",
"homepage": "https://jiripudil.cz"
}
],
"require": {
"php": "^8.1",
"phpstan/phpstan": "^2.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^10.5 || ^11.4"
},
"autoload": {
"psr-4": {
"JiriPudil\\SealedClasses\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JiriPudil\\SealedClasses\\": "tests/"
}
},
"scripts": {
"tests": "phpunit",
"phpstan": "phpstan analyse -l max src",
"lint": "parallel-lint src tests"
},
"extra": {
"phpstan": {
"includes": ["extension.neon"]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}