-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
61 lines (61 loc) · 1.5 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
54
55
56
57
58
59
60
61
{
"name": "visus/cuid2",
"description": "A PHP library for generating collision-resistant ids (CUIDs).",
"license": "MIT",
"type": "library",
"keywords": [
"cuid",
"identifier"
],
"authors": [
{
"name": "Alan Brault",
"email": "alan.brault@visus.io"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"ext-ctype": "*",
"captainhook/captainhook-phar": "^5.23",
"captainhook/hook-installer": "^1.0",
"ergebnis/composer-normalize": "^2.29",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^10.5",
"ramsey/conventional-commits": "^1.5",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.4"
},
"suggest": {
"ext-gmp": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Visus\\Cuid2\\": "src/"
},
"files": [
"src/compat.php"
]
},
"autoload-dev": {
"psr-4": {
"Visus\\Cuid2\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"captainhook/captainhook-phar": true,
"captainhook/hook-installer": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"phpstan": [
"phpstan analyse -c phpstan.neon --no-progress --memory-limit=1G"
],
"psalm": "psalm --show-info=false --config=psalm.xml"
}
}