-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.65 KB
/
Copy pathcomposer.json
File metadata and controls
71 lines (71 loc) · 1.65 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "codepower/anybase",
"description": "Convert integers between arbitrary bases with custom alphabets, salt, padding, and big-integer support.",
"type": "library",
"keywords": [
"base-convert",
"base-converter",
"base16",
"base32",
"base36",
"base58",
"base62",
"base64",
"crockford",
"obfuscation",
"id-obfuscation",
"hashids",
"encode",
"decode"
],
"homepage": "https://github.com/codepower-tw/anybase-php",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Gasol Wu",
"email": "gasol.wu@gmail.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/codepower-tw/anybase-php/issues",
"source": "https://github.com/codepower-tw/anybase-php"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"pestphp/pest": "^2.0,<2.33",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5,<10.5.62"
},
"suggest": {
"ext-gmp": "Required for big integers > PHP_INT_MAX (preferred).",
"ext-bcmath": "Fallback for big integers when ext-gmp is unavailable."
},
"autoload": {
"psr-4": { "Anybase\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Anybase\\Tests\\": "tests/" }
},
"scripts": {
"test": "pest",
"cs": "php-cs-fixer fix",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"stan": "phpstan analyse"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"audit": {
"ignore": ["PKSA-z3gr-8qht-p93v"]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}