-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
37 lines (37 loc) · 870 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
34
35
36
37
{
"name": "riipandi/laravel-optikey",
"description": "Use UUID, Ulid, or nanoid as optional or primary key in Laravel.",
"keywords": [
"laravel",
"uuid",
"ulid",
"nanoid"
],
"type": "library",
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "^5.8|^6.0|^7.0|^8.0|^8.1|^9.0|^10.0|^11.0",
"hidehalo/nanoid-php": "^1.1",
"robinvdvleuten/ulid": "^5.0"
},
"license": "MIT",
"authors": [
{
"name": "Aris Ripandi",
"email": "aris@ripandi.id"
}
],
"autoload": {
"psr-4": {
"Riipandi\\LaravelOptiKey\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Riipandi\\LaravelOptiKey\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": ">5.0"
}
}