forked from contributte/logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.71 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
{
"name": "contributte/logging",
"description": "Plug-in support logging for Tracy / Nette Framework",
"keywords": ["nette", "logging", "tracy", "monolog", "plugins"],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/contributte/logging",
"authors": [
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": ">= 7.1",
"tracy/tracy": "~2.5.5"
},
"require-dev": {
"ext-json": "*",
"ninjify/qa": "^0.8.0",
"ninjify/nunjuck": "^0.2.0",
"nette/di": "^2.4.14 || ^3.0.0",
"sentry/sentry": "^1.9.2"
},
"conflict": {
"nette/di": "<2.4.14"
},
"suggest": {
"nette/di": "to use TracyLoggingExtension",
"sentry/sentry": "to use SentryLoggingExtension"
},
"autoload": {
"psr-4": {
"Contributte\\Logging\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"qa": [
"linter src tests",
"codesniffer src tests"
],
"tests": [
"tester -s -p php --colors 1 -C tests/cases"
],
"coverage": [
"tester -s -p phpdbg --colors 1 -C --coverage ./coverage.xml --coverage-src ./src tests/cases"
],
"phpstan-install": [
"mkdir -p temp/phpstan",
"composer require -d temp/phpstan phpstan/phpstan:^0.10",
"composer require -d temp/phpstan phpstan/phpstan-deprecation-rules:^0.10",
"composer require -d temp/phpstan phpstan/phpstan-nette:^0.10",
"composer require -d temp/phpstan phpstan/phpstan-strict-rules:^0.10"
],
"phpstan": [
"temp/phpstan/vendor/bin/phpstan analyse -l max -c phpstan.neon src"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}