-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 1.08 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
{
"name": "abellion/xenus-laravel",
"description": "Xenus integration for the Laravel and Lumen frameworks",
"keywords": ["mongodb", "laravel", "lumen", "odm", "xenus"],
"type": "library",
"license": "MIT",
"require": {
"php": "^7.1.3 || ^8.0",
"abellion/xenus": "^0.18.0 || ^0.19.0",
"illuminate/contracts": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/support": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/queue": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/database": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"require-dev": {
"illuminate/container": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.0 || ^9.0",
"illuminate/config": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/events": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
"Xenus\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xenus\\Laravel\\Tests\\": "tests/"
}
}
}