-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
58 lines (58 loc) · 1.71 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
50
51
52
53
54
55
56
57
58
{
"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]"
},
{
"name": "Marcin Michalski",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/mgrajcarek/uuid-shortener/issues",
"source": "https://github.com/mgrajcarek/uuid-shortener"
},
"require": {
"php": "^8.1",
"brick/math": "^0.11 || ^0.12"
},
"require-dev": {
"ext-gmp": "^8.1",
"phpunit/phpunit": "^10.5.38",
"vimeo/psalm": "^5.26.1",
"phpbench/phpbench": "^1.1.1",
"rector/rector": "^1.2",
"php-cs-fixer/shim": "^3.65.0"
},
"suggest": {
"ramsey/uuid": "A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID)",
"ext-gmp": "If you want to use the Keiko\\Uuid\\Shortener\\GMPShortener and benefit from much improved performance"
},
"autoload": {
"psr-4": {"Keiko\\Uuid\\Shortener\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"Benchmark\\Keiko\\Uuid\\Shortener\\": "benchmark/",
"Test\\Keiko\\Uuid\\Shortener\\": "tests/"
}
},
"config": {
"platform": {
"php": "8.1.26"
}
},
"scripts": {
"code-style:check": "php-cs-fixer fix --dry-run --diff --ansi",
"code-style:fix": "php-cs-fixer fix --diff --ansi",
"rector:check": "rector --dry-run --ansi",
"rector:fix": "rector --ansi"
}
}