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
|
{
"name": "lizhineng/snowflake",
"description": "Build your own Snowflake.",
"type": "library",
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"friendsofphp/php-cs-fixer": "^3.92",
"phpstan/phpstan": "^2.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Zhineng\\Snowflake\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zhineng\\Snowflake\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Zhineng Li",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"test": "phpunit --testdox",
"format": "php-cs-fixer fix",
"lint": "phpstan analyse",
"all": [
"@format",
"@lint",
"@test"
]
},
"config": {
"sort-packages": true
}
}
|