-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.09 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "adambean/randflake-id-php",
"description": "A distributed, uniform, unpredictable, unique random ID generator: PHP implementation of Randflake ID and Sparx 64-bit.",
"type": "library",
"license": "MIT",
"keywords": [
"randflake",
"randflake-id",
"sparx64"
],
"require": {
"php": "^8.1",
"paragonie/constant_time_encoding": "^3.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.93",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^9.6"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Adambean\\RandflakeId\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Adambean\\RandflakeId\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs:fix": "php-cs-fixer fix",
"stan": "phpstan analyse"
},
"minimum-stability": "stable",
"prefer-stable": true
}