forked from mgrajcarek/uuid-shortener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.02 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
{
"name": "keiko/uuid-shortener",
"description": "A simple shortener library for RFC 4122 compatible UUIDs. Change your 36 chars long UUID into it's shorter equivalent.",
"type": "library",
"keywords": ["uuid", "identifier", "guid", "short", "shortener"],
"homepage": "https://github.com/mgrajcarek/uuid-shortener",
"license": "MIT",
"authors": [
{
"name": "Maciej Grajcarek",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/mgrajcarek/uuid-shortener/issues",
"source": "https://github.com/mgrajcarek/uuid-shortener"
},
"require": {
"php": "^7.2",
"brick/math": "^0.8.14"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"vimeo/psalm": "^3.10"
},
"suggest": {
"ramsey/uuid": "A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID)"
},
"autoload": {
"psr-4": {"Keiko\\Uuid\\Shortener\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Test\\Keiko\\Uuid\\Shortener\\": "tests/"}
}
}