-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.53 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.53 KB
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
59
60
61
62
63
64
65
66
67
{
"name": "infocyph/uid",
"description": "High-performance ID toolkit for PHP with UUID, ULID, TypeID, ObjectID, coordinated IDs, and compact ID utilities.",
"license": "MIT",
"type": "library",
"keywords": [
"uuid",
"uuidv7",
"typeid",
"objectid",
"ulid",
"snowflake",
"sonyflake",
"tbsl",
"ksuid",
"xid",
"nanoid",
"cuid2",
"random-id",
"sortable-id",
"id",
"key",
"unique",
"rfc4122",
"rfc9562"
],
"authors": [
{
"name": "abmmhasan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"php-64bit": "^8.2"
},
"require-dev": {
"infocyph/phpforge": "dev-main@dev",
"psr/simple-cache": "^3.0"
},
"replace": {
"abmmhasan/uuid": "self.version"
},
"suggest": {
"psr/simple-cache": "Required for the optional PSR-16 sequence provider."
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Infocyph\\UID\\": "src/"
},
"files": [
"src/functions.php"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infocyph/phpforge": true,
"pestphp/pest-plugin": true
},
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true
}
}