generated from psalm/psalm-plugin-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.31 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
{
"name": "cspray/phinal",
"description": "Enforce final on your classes!",
"type": "psalm-plugin",
"license": "MIT",
"require": {
"php": "^8.0",
"ext-simplexml": "*",
"vimeo/psalm": "5.*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.5",
"squizlabs/php_codesniffer": "^3.3",
"psalm/plugin-phpunit": "^0.18",
"weirdan/prophecy-shim": "^2.0",
"weirdan/codeception-psalm-module": "^0.13.1",
"codeception/codeception": "^4.1",
"behat/behat": "^3.11"
},
"extra": {
"psalm": {
"pluginClass": "Cspray\\Phinal\\Plugin"
}
},
"autoload": {
"psr-4": {
"Cspray\\Phinal\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"Cspray\\Phinal\\": [
"tests/_support",
"tests"
]
}
},
"scripts": {
"check": [
"@analyze",
"@cs-check",
"@unit-tests",
"@acceptance-tests"
],
"analyze": "codecept build && psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"unit-tests": "phpunit --colors=always",
"acceptance-tests": "codecept build && codecept --ansi run acceptance"
}
}