-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
65 lines (65 loc) · 1.35 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "bitfumes/api-auth",
"description": "Your Package Description here",
"type": "library",
"license": "MIT",
"keywords": [
"laravel multiauth",
"api auth",
"bitfumes",
"api auth",
"jwt auth",
"auth for api"
],
"authors": [
{
"name": "sarthaksavvy",
"email": "sarthak@bitfumes.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"intervention/image": "^2.7",
"laravel/sanctum": "^3",
"laravel/socialite": "^5.6",
"laravel/ui": "^4.2",
"tymon/jwt-auth": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^8",
"illuminate/support": "^10",
"fakerphp/faker": "^1.9.1",
"laravel/legacy-factories": "^1.0@dev"
},
"autoload": {
"psr-4": {
"Bitfumes\\ApiAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bitfumes\\ApiAuth\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"extra": {
"laravel": {
"providers": [
"Bitfumes\\ApiAuth\\ApiAuthServiceProvider"
],
"aliases": {
"Bitfumes": "Bitfumes\\ApiAuth\\ApiAuthFacade"
}
}
}
}