-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 946 Bytes
/
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
{
"name": "hilalahmad/php-uuid",
"description": "UUIDs are used to create unique identifiers that are often used in distributed systems, databases, and various software applications to ensure the uniqueness of data elements. In PHP, packages related to UUIDs typically provide functions or classes for generating, parsing, and manipulating UUIDs. These packages can be useful in scenarios where unique identifiers are needed to avoid conflicts or ensure data integrity.",
"type": "library",
"version": "1.1.0",
"keywords": [
"uuid",
"uniqueid",
"identifier",
"guid"
],
"require": {
"php": "^8.2"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Hilalahmad\\PhpUuid\\": "src/"
}
},
"authors": [
{
"name": "fullstack124",
"email": "stackf64@gmail.com"
}
],
"minimum-stability": "dev"
}