generated from psalm/psalm-plugin-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.46 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
{
"name": "leighman/psalm-plugin-todo-by",
"description": "Support @todo-by docblock annotations",
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Jack Leigh",
"email": "jack.leigh@gmail.com"
}
],
"require": {
"vimeo/psalm": "^4.0 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.5",
"squizlabs/php_codesniffer": "^3.3",
"psalm/plugin-phpunit": "^0.16.0",
"weirdan/prophecy-shim": "^2.0",
"weirdan/codeception-psalm-module": "^0.13.1",
"codeception/codeception": "^4.1"
},
"extra": {
"psalm": {
"pluginClass": "Leighman\\PsalmPluginTodoBy\\Plugin"
}
},
"autoload": {
"psr-4": {
"Leighman\\PsalmPluginTodoBy\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"Leighman\\PsalmPluginTodoBy\\Tests\\": [
"tests/_support",
"tests"
]
}
},
"minimum-stability": "dev",
"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"
}
}