-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.4 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
{
"name": "dzunke/panaly",
"description": "Project Analyzer Tool - Get different sources of quality tools together into a single source of results",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Panaly\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Panaly\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Denis Zunke",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"bin": [
"panaly"
],
"require": {
"php": "^8.2",
"psr/log": "^3.0",
"symfony/console": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/yaml": "^7.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"dzunke/panaly-files": "dev-main",
"dzunke/panaly-json-timeline-storage": "dev-main",
"dzunke/panaly-markdown-report": "dev-main",
"dzunke/panaly-symfony-dump": "dev-main",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^11.0",
"symfony/var-dumper": "^7.0"
}
}