-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathcomposer.json
53 lines (53 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "godruoyi/php-snowflake",
"description": "An ID Generator for PHP based on Snowflake Algorithm (Twitter announced).",
"license": "MIT",
"keywords": [
"unique id",
"snowflake algorithm",
"php snowflake",
"laravel snowflake",
"order id",
"unique order id",
"php unique id",
"sonyflake",
"php sonyflake"
],
"homepage": "https://github.com/godruoyi/php-snowflake",
"authors": [{
"name": "Godruoyi",
"email": "[email protected]"
}],
"require": {
"php-64bit": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10",
"laravel/pint": "^1.10",
"phpstan/phpstan": "^1.10",
"illuminate/contracts": "^10.0 || ^11.0",
"predis/predis": "^2.0",
"ext-redis": "*",
"ext-swoole": "*"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"autoload": {
"psr-4": {
"Godruoyi\\Snowflake\\": "src"
}
},
"scripts": {
"test": "vendor/bin/phpunit --display-incomplete --display-skipped --display-deprecations --display-errors --display-notices --display-warnings",
"phpstan": "vendor/bin/phpstan",
"pint": "vendor/bin/pint --config pint.json"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}