forked from laravel-rocket/service-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "laravel-rocket/service-auth",
"description": "Service Authentication for Laravel Rocket",
"type": "library",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/laravel-rocket/foundation"
},
{
"type": "vcs",
"url": "https://github.com/laravel-rocket/generator"
}
],
"license": "MIT",
"authors": [
{
"name": "Takaaki Mizuno",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"fideloper/proxy": "~4.0",
"laravel/framework": "^6.0",
"laravel/tinker": "^1.0",
"laravel-rocket/foundation": "^2.7.0",
"laravel-rocket/generator": "^2.7.0",
"laravel/passport": "^7.4",
"facebook/graph-sdk": "^5.6"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^2.15",
"fzaninotto/faker": "^1.8",
"laravel/laravel": "^6.0",
"laravel/browser-kit-testing": "^5.1"
},
"autoload": {
"psr-4": {
"LaravelRocket\\ServiceAuthentication\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests"
]
}
}