-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 973 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
{
"name": "sturents/sentry-light",
"description": "Lightweight alternative to the official Sentry client for PHP. Forked from kodus/sentry",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rasmus Schultz",
"email": "rasc@jfmedier.dk"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"psr/http-message": "^1 | ^2",
"psr/log": "^1 | ^2 | ^3"
},
"require-dev": {
"nyholm/psr7": "^1.0",
"codeception/codeception": "^5.0",
"codeception/module-asserts": "*",
"vimeo/psalm": "^5"
},
"autoload": {
"psr-4": {
"Kodus\\Sentry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/Support",
"Tests\\Mocks\\": "tests/Mocks",
"Tests\\Fixtures\\": "tests/Fixtures",
"Tests\\Unit\\": "tests/Unit"
}
}
}