-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
40 lines (40 loc) · 1.01 KB
/
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
35
36
37
38
39
40
{
"name": "phoneburner/int-to-uuid",
"description": "Utility for Bidirectional Conversion of Integer Ids to UUIDs",
"type": "library",
"require": {
"php": "^8.2",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"phpbench/phpbench": "^1.2",
"slevomat/coding-standard": "^8.9",
"psy/psysh": "@stable"
},
"license": "MIT",
"autoload": {
"psr-4": {
"PhoneBurner\\IntToUuid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhoneBurner\\Benchmarks\\IntToUuid\\": "benchmarks/",
"PhoneBurner\\Tests\\IntToUuid\\": "tests/"
}
},
"authors": [
{
"name": "Andy Snell",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}