-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
33 lines (33 loc) · 981 Bytes
/
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
{
"name": "irfa/php-sn-generator",
"description": "\"Serial number generator for web aplication\"",
"type": "package",
"license": "MIT",
"version": "v1.1",
"homepage": "https://github.com/irfaardy/php-sn-generator",
"keywords": ["laravel","randomized","security", "serial number","serial number generator", "decrypt", "secure","upload file"],
"authors": [
{
"name": "Irfa A",
"email": "irfa.backend@protonmail.com",
"homepage": "https://github.com/irfaardy"
}
],
"require": {
"php": ">=7.4",
"hidehalo/nanoid-php": "1.1.8",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Irfa\\SerialNumber\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Irfa\\SerialNumber\\SerialNumberGeneratorSeviceProvider::class"
]
}
}
}