forked from Naugrimm/laravel-sentry-tunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.17 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
{
"name": "naugrim/laravel-sentry-tunnel",
"description": "Provides an endpoint to use the `tunnel`-parameter of the Sentry SDK",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Naugrim\\LaravelSentryTunnel\\": "src/"
}
},
"authors": [
{
"name": "Erik Anders",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/routing": "^8.0|^9.0|^10.0|^11.0",
"illuminate/http": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"larastan/larastan": "^2.4",
"symplify/easy-coding-standard": "^10.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"orchestra/testbench": "^8.0|^9.0"
},
"scripts": {
"phpstan": [
"Composer\\Config::disableProcessTimeout",
"@php -dmemory_limit=1G ./vendor/bin/phpstan analyse"
]
},
"extra": {
"laravel": {
"providers": [
"Naugrim\\LaravelSentryTunnel\\Provider"
]
}
}
}