-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.76 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
59
60
61
62
63
64
65
66
67
{
"name": "kafkiansky/service-locator-interrupter",
"description": "Psalm plugin for Laravel that interrupt service locator calls.",
"license": "MIT",
"type": "psalm-plugin",
"keywords": [
"laravel",
"psalm",
"plugin"
],
"authors": [
{
"name": "v.zanfir",
"email": "[email protected]",
"role": "maintainer"
}
],
"require": {
"php": "^8.2",
"ext-simplexml": "*",
"vimeo/psalm": "^5.12"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.31",
"laravel/framework": "^11.0",
"phpunit/phpunit": "^10.2",
"squizlabs/php_codesniffer": "^3.7",
"weirdan/codeception-psalm-module": "^0.14.0"
},
"autoload": {
"psr-4": {
"Kafkiansky\\ServiceLocatorInterrupter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kafkiansky\\ServiceLocatorInterrupter\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true
},
"process-timeout": 0,
"sort-packages": true
},
"extra": {
"psalm": {
"pluginClass": "Kafkiansky\\ServiceLocatorInterrupter\\Plugin"
}
},
"scripts": {
"codeception": [
"codecept build",
"codecept run -v -g laravel-interrupter"
],
"phpcbf": "./vendor/bin/phpcbf -p --standard=phpcs.xml src",
"phpcs": "./vendor/bin/phpcs --standard=phpcs.xml",
"psalm": "./vendor/bin/psalm --no-cache",
"test": [
"@codeception",
"@psalm",
"@phpcs"
]
}
}