-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
executable file
·58 lines (58 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
58
{
"name": "psalm/plugin-mockery",
"description": "Psalm plugin for Mockery",
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Matt Brown",
"email": "[email protected]"
}
],
"require": {
"php": "~7.4 || ~8.0 || ~8.1 || ~8.2",
"composer/package-versions-deprecated": "^1.10",
"composer/semver": "^1.4 || ^2.0 || ^3.0",
"mockery/mockery": "^1.0",
"vimeo/psalm": "dev-master || ^5.0@rc || ^5.0"
},
"require-dev": {
"codeception/codeception": "^4.1.9",
"squizlabs/php_codesniffer": "^3.3.1",
"weirdan/codeception-psalm-module": "^0.13.1",
"phpunit/phpunit": "^9.0"
},
"extra": {
"psalm": {
"pluginClass": "Psalm\\MockeryPlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
"Psalm\\MockeryPlugin\\": ["."]
}
},
"autoload-dev": {
"psr-4": {
"Psalm\\MockeryPlugin\\Tests\\": ["tests/_support"]
}
},
"scripts" : {
"check": [
"@cs-check",
"@test",
"@analyze"
],
"analyze": "psalm",
"cs-check": "phpcs -s",
"cs-fix": "phpcbf",
"test": "codecept run -v"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"optimize-autoloader": true,
"sort-packages": true
}
}