-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.13 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
{
"name": "dzunke/panaly-json-timeline-storage",
"description": "A Panaly plugin that implements a JSON Timeline Storage to handle a history of analyzer runs.",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"DZunke\\PanalyJsonTimelineStorage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DZunke\\PanalyJsonTimelineStorage\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Denis Zunke",
"email": "denis.zunke@gmail.com"
}
],
"require": {
"dzunke/panaly": "dev-main",
"php": "^8.2"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^11.1",
"symfony/var-dumper": "^7.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}