-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 785 Bytes
/
Copy pathcomposer.json
File metadata and controls
29 lines (29 loc) · 785 Bytes
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
{
"name": "pascaldevink/shortuuid",
"description": "PHP 7.1+ library that generates concise, unambiguous, URL-safe UUIDs",
"type": "library",
"keywords": ["uuid", "identifier", "guid"],
"license": "MIT",
"authors": [
{
"name": "Pascal de Vink",
"email": "pascal@ticketswap.com"
}
],
"require": {
"php": "^7.1",
"ramsey/uuid": "^3.0",
"moontoast/math": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"php-coveralls/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {"PascalDeVink\\ShortUuid\\": "src/"}
},
"autoload-dev": {
"psr-4": {"PascalDeVink\\ShortUuid\\Test\\": "tests/"}
},
"minimum-stability": "stable"
}