-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 889 Bytes
/
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
{
"name": "contributte/sentry-skeleton",
"description": "Example of first class integration of Sentry to Nette (@nette) by @f3l1x",
"keywords": [
"nette",
"skeleton",
"project",
"sentry",
"logging"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.1",
"contributte/nella": "^0.2",
"contributte/sentry": "^0.3"
},
"require-dev": {
"contributte/qa": "^0.3",
"contributte/dev": "^0.5",
"contributte/tester": "^0.3",
"contributte/phpstan": "^0.2"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}