-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 825 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 825 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
30
31
32
33
34
35
{
"name": "pikaid/pikaid-php",
"version": "1.1.1",
"description": "Small · Sortable · Secure IDs",
"type": "library",
"license": "LGPL-3.0-or-later",
"autoload": {
"psr-4": {
"Pikaid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pikaid\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3"
},
"require-dev": {
"php": ">=8.3",
"phpunit/phpunit": "^12.1.5",
"ramsey/uuid": "^4.7.6",
"robinvdvleuten/ulid": "^5.0.0",
"hidehalo/nanoid-php": "^2.0"
},
"suggest": {
"ext-gmp": "Fastest Base36 conversions (recommended for best performance)",
"ext-bcmath": "Faster than pure-PHP fallback if GMP is unavailable"
},
"scripts": {
"test": "phpunit --configuration phpunit.xml.dist",
"bench": "php benchmarks/PerformanceTest.php"
}
}