-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
32 lines (32 loc) · 874 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
{
"name": "amamarul/integer-hashids",
"type": "package",
"description": "Laravel Integers Hashids Generator. Encode and decode ids to Integers. Also generate prefixed hashids",
"keywords": ["laravel","laravel 5.4","Laravel Integers Hashids", "Laravel 5.4 hashids", "Integers Hashids", "Prefixed hashids", "Prefixed integer hashids"],
"license": "MIT",
"authors": [
{
"name": "Maru Amallo-amamarul",
"email": "ama_marul@hotmail.com"
}
],
"autoload":{
"psr-4": {
"Amamarul\\Hashids\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Amamarul\\Hashids\\HashidsServiceProvider"
],
"aliases": {
}
}
},
"minimum-stability": "stable",
"require": {},
"config": {
"preferred-install": "dist"
}
}