-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
56 lines (56 loc) · 1.44 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
{
"name": "weirdan/psalm-plugin-skeleton",
"description": "Template to create psalm-plugin projects from",
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Bruce Weirdan",
"email": "[email protected]"
}
],
"require": {
"vimeo/psalm": "dev-master"
},
"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": "Weirdan\\PsalmPluginSkeleton\\Plugin"
}
},
"autoload": {
"psr-4": {
"Weirdan\\PsalmPluginSkeleton\\": [
"."
]
}
},
"autoload-dev": {
"psr-4": {
"Weirdan\\PsalmPluginSkeleton\\Tests\\": [
"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"
}
}