Lumen-passport/composer.json

28 lines
680 B
JSON
Raw Normal View History

2021-03-01 09:04:25 +00:00
{
2021-03-01 09:15:40 +00:00
"name": "fufle/lumen-passport",
2021-03-01 09:04:25 +00:00
"description": "Lumen porting of Laravel Passport",
"keywords": ["php","lumen","laravel passport"],
"homepage": "https://github.com/nomadnt/lumen-passport",
"license": "MIT",
"authors": [
{
"name": "Filippo Sallemi",
"email": "fsallemi@nomadnt.com",
"homepage": "https://nomadnt.com"
}
],
"type": "library",
"require": {
2021-03-01 09:06:03 +00:00
"php": "^7.3.0|^8.0",
2021-03-01 09:04:25 +00:00
"laravel/passport": "^10.1.0"
},
"autoload": {
"psr-4": {
"Nomadnt\\LumenPassport\\": "src/"
},
"files": [
"src/helpers.php"
]
}
}