-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 895 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
29
30
31
32
33
34
{
"name": "mediagone/small-uid",
"type": "library",
"description": "Small Unique Identifier - Quite like an ULID, but half smaller (64 bits).",
"keywords": ["uid", "uuid", "ulid", "guid", "primary key", "entity", "database"],
"license": "MIT",
"authors": [
{"name": "Bruce Suire", "role": "Developer"}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Mediagone\\SmallUid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Mediagone\\SmallUid\\": "tests/"
}
},
"require": {
"php-64bit": "^7.4|^8.0",
"ext-gmp": "*",
"mediagone/types-common": "^0.5.1|^0.6|^0.7"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"scripts": {
"tests": "phpunit -c phpunit.xml.dist --testsuite Unit_Tests"
}
}