-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
42 lines (42 loc) · 1.03 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": "rootpd/nette-sentry",
"description": "Nette Sentry logger library",
"license": "MIT",
"keywords": ["nette", "sentry", "errorlogger", "errors"],
"authors": [
{
"name": "Peter Dulacka",
"email": "[email protected]"
}
],
"type": "library",
"require": {
"php": "^8.1",
"nette/di": "^3.0",
"nette/http": "^3.0",
"nette/security": "^3.0",
"sentry/sentry": "^4.0",
"tracy/tracy": "^2.4"
},
"require-dev": {
"ninjify/nunjuck": "^0.3",
"squizlabs/php_codesniffer": "~3.5"
},
"autoload": {
"psr-4": {
"Rootpd\\NetteSentry\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"cs": "phpcs --standard=PSR2 --extensions=php,phpt src tests --ignore=tests/tmp",
"cs-fix": "phpcbf --standard=PSR2 --extensions=php,phpt src tests --ignore=tests/tmp",
"test": "tester -C tests",
"coverage": "tester -p phpdbg -C --coverage coverage.xml --coverage-src src tests"
}
}