-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.58 KB
/
Copy pathcomposer.json
File metadata and controls
57 lines (57 loc) · 1.58 KB
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
{
"name": "script-development/kendo-error-tracker",
"description": "Laravel client library that reports scrubbed exceptions into kendo's error-tracking endpoint.",
"license": "MIT",
"type": "library",
"keywords": [
"laravel",
"error-tracking",
"kendo",
"exception-reporting"
],
"require": {
"php": "^8.4",
"illuminate/contracts": "^11.0 || ^12.0 || ^13.0",
"illuminate/support": "^11.0 || ^12.0 || ^13.0",
"illuminate/http": "^11.0 || ^12.0 || ^13.0",
"illuminate/bus": "^11.0 || ^12.0 || ^13.0",
"illuminate/queue": "^11.0 || ^12.0 || ^13.0"
},
"require-dev": {
"laravel/pint": "^1.18",
"orchestra/testbench": "^9.0 || ^10.0 || ^11.0",
"pestphp/pest": "^3.0 || ^4.0",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"ScriptDevelopment\\KendoErrorTracker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ScriptDevelopment\\KendoErrorTracker\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"ScriptDevelopment\\KendoErrorTracker\\ErrorTrackerServiceProvider"
]
}
},
"scripts": {
"test": "pest",
"phpstan": "phpstan analyse",
"format": "pint",
"format:check": "pint --test"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}