-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.27 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
{
"name": "facile-it/psalm-psr-log-plugin",
"description": "Psalm plugin for psr/log (PSR-3)",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Thomas Vargiu",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"facile-it/facile-coding-standard": true
}
},
"extra": {
"psalm": {
"pluginClass": "Facile\\Psalm\\PsrLogPlugin\\Plugin"
}
},
"minimum-stability": "stable",
"require": {
"php": "^7.2 || ^8.0",
"ext-simplexml": "*",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"vimeo/psalm": "^4.7 || ^5.0"
},
"require-dev": {
"codeception/codeception": "^4.1",
"facile-it/facile-coding-standard": "^0.5.2",
"weirdan/codeception-psalm-module": "^0.13.0"
},
"autoload": {
"psr-4": {
"Facile\\Psalm\\PsrLogPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facile\\Psalm\\PsrLogPlugin\\Test\\": "tests/"
}
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix --diff",
"test": "codecept run -v"
}
}