-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 932 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
{
"name": "mamitech/tikus",
"description": "An abstract layer for remote error reporting",
"keywords": ["mamikos", "tikus", "mamiteam", "mamitech"],
"license": "MIT",
"type": "project",
"require": {
"php": "~7.4.0|^8",
"bugsnag/bugsnag": "^3.0",
"bugsnag/bugsnag-laravel": "^2.0",
"illuminate/support": "^6|^7|^8|^9|^10|^11",
"laravel/framework": "^6|^7|^8|^9|^10|^11",
"sentry/sentry-laravel": "^2|^3|^4"
},
"require-dev": {
"phpunit/phpunit": "^10",
"mockery/mockery": "^1.5"
},
"autoload": {
"psr-4": {
"Mamikos\\Tikus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}