-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 854 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 854 Bytes
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
{
"name": "samfrm/lumen-passport",
"type": "library",
"description": "Making Laravel Passport work with Lumen",
"keywords": ["php","lumen","laravel passport"],
"homepage": "https://github.com/samfrm/lumen-passport",
"license": "MIT",
"authors": [
{
"name": "Sam Farahmand",
"email": "hi@samfrmd.com",
"homepage": "https://samfrmd.com"
}
],
"require": {
"php": ">=8.0",
"illuminate/database": "^8.0|^9.5",
"illuminate/support": "^8.0|^9.5",
"laravel/passport": "^10.3"
},
"require-dev": {
"fakerphp/faker": "^1.19",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"Samfrm\\LumenPassport\\": "src/"
},
"files": [
"src/helpers.php"
]
}
}