forked from dusterio/lumen-passport
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
31 lines (31 loc) · 941 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": "kayrules/lumen-passport-mongodb",
"type": "library",
"description": "Making Laravel Passport work with Lumen and MongoDB",
"keywords": ["php","lumen","laravel passport", "mongodb"],
"homepage": "https://github.com/kayrules/lumen-passport-mongodb",
"license": "MIT",
"authors": [
{
"name": "Mohd Khairulnizam Md Dahari",
"email": "[email protected]",
"homepage": "http://www.kayrules.com"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/database": "~5.3|~5.4",
"illuminate/support": "~5.3|~5.4",
"lucas-cardial/laravel-passport-mongodb": "^0.1.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~5.0",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"Kayrules\\LumenPassport\\": "src/"
}
}
}