-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
31 lines (31 loc) · 868 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
{
"name": "optimus/heimdal",
"autoload": {
"psr-4": {
"Optimus\\Heimdal\\": "src/"
}
},
"autoload-dev": {
"files": [
"tests/helpers.php"
]
},
"require": {
"laravel/framework": "~7.0|~8.0|~9.0|~10.0"
},
"require-dev": {
"mockery/mockery": "1.3.*",
"orchestra/testbench": "4.*",
"phpunit/phpunit": "~8.0",
"php-coveralls/php-coveralls": "2.2.*",
"bugsnag/bugsnag-laravel": "^2.4"
},
"suggest": {
"asm89/stack-cors": "Needed to add CORS headers if add_cors_headers configuration is true",
"sentry/sentry": "Needed to report exceptions to Sentry.io",
"rollbar/rollbar": "Needed to report exceptions to Rollbar.com"
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT"
}