generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.46 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
{
"name": "graxmonzo/laravel-one-time-password",
"description": "One time password (OTP) generation trait for Laravel",
"keywords": [
"laravel",
"laravel-one-time-password",
"otp",
"one time password"
],
"homepage": "https://github.com/graxmonzo/laravel-one-time-password",
"license": "MIT",
"authors": [
{
"name": "Beka",
"email": "[email protected]",
"homepage": "https://graxmonzo.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"christian-riesen/base32": "^1.5.2",
"spomky-labs/otphp": "10.0.1"
},
"require-dev": {
"orchestra/testbench": "^6.9.0",
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "^4.4"
},
"autoload": {
"psr-4": {
"GraxMonzo\\OneTimePassword\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GraxMonzo\\OneTimePassword\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "phpunit --colors=always --testdox"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/graxmonzo"
},
{
"type": "paypal",
"url": "https://paypal.me/bkzts"
}
]
}