-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.23 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
{
"name": "phpexperts/conciseuuid",
"description": "An Eloquent model for using concise UUIDs (base62) as keys.",
"license": "MIT",
"authors": [
{
"name": "Theodore R. Smith",
"email": "theodore@phpexperts.pro",
"homepage": "https://www.phpexperts.pro/"
}
],
"homepage": "https://github.com/phpexperts/conciseuuid",
"keywords": ["Laravel", "ConciseUuid"],
"require": {
"php": ">=7.2.5",
"ramsey/uuid": "^4.0",
"tuupola/base62": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"phpexperts/dockerize": "*",
"symfony/var-dumper": "^5.3"
},
"suggest": {
"ext-gmp": "*",
"illuminate/support": "5.*|^6.0"
},
"autoload": {
"psr-4": {
"PHPExperts\\ConciseUuid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPExperts\\ConciseUuid\\Tests\\": "tests"
}
},
"config": {
"classmap-authoritative": true,
"preferred-install": "dist"
},
"extra": {
"laravel": {
"providers": [
"PHPExperts\\ConciseUuid\\ConciseUuidServiceProvider"
]
}
}
}