-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.12 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "slime-systems/object-id",
"description": "A feature-packed, BSON-compatible ObjectId implementation for PHP, similar to MongoDB's ObjectId, providing unique ID generation, conversions, and comparison utilities.",
"type": "library",
"license": "BSD-2-Clause",
"keywords": [
"objectid",
"object-id",
"id",
"unique-id",
"unique-identifier",
"bson",
"mongodb",
"timestamp",
"identifier",
"generation",
"sortable-id"
],
"scripts": {
"test": "vendor/bin/pest"
},
"autoload": {
"psr-4": {
"SlimeSystems\\": "src/",
"SlimeSystems\\ObjectId\\Exception\\": "src/exception/",
"SlimeSystems\\ObjectIdInternal\\": "src/_internal/"
}
},
"authors": [
{
"name": "Sarun Rattanasiri"
}
],
"require": {
"php": ">=8.0",
"nesbot/carbon": ">=3.8.4"
},
"require-dev": {
"pestphp/pest": "^4.1"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}