Skip to content

Commit b12544c

Browse files
committed
init package
1 parent ea2b72e commit b12544c

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

composer.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "php-monsters/laravel-otp",
3+
"description": "Laravel OTP generator and validation",
4+
"homepage": "https://github.com/php-monsters/laravel-otp",
5+
"keywords": [
6+
"laravel",
7+
"otp",
8+
"one time password",
9+
"mobile otp",
10+
"email otp",
11+
"one time pin",
12+
"email validation",
13+
"mobile validation"
14+
],
15+
"license": "MIT",
16+
"authors": [
17+
{
18+
"name": "Aboozar Ghaffari",
19+
"email": "aboozar.ghf@gmail.com"
20+
}
21+
],
22+
"extra": {
23+
"laravel": {
24+
"providers": [
25+
"PhpMonsters\\Otp\\OtpServiceProvider"
26+
],
27+
"aliases": {
28+
"Otp": "PhpMonsters\\Otp\\OtpFacade"
29+
}
30+
}
31+
},
32+
"require": {
33+
"php": "^8.0",
34+
"illuminate/support": "^11.0"
35+
},
36+
"autoload": {
37+
"psr-4": {
38+
"PhpMonsters\\Otp\\": "src"
39+
}
40+
}
41+
}

0 commit comments

Comments
 (0)