-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
composer.json
42 lines (42 loc) · 1.06 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
{
"name": "jenssegers/optimus",
"description": "Id obfuscation based on Knuth's integer hash method",
"keywords": ["obfuscation", "ids", "optimus", "hashids", "id obfuscation"],
"homepage": "https://github.com/jenssegers/optimus",
"license": "MIT",
"authors": [
{
"name": "Jens Segers",
"homepage": "https://jenssegers.com"
}
],
"require": {
"php": "^7.4||^8.0",
"phpseclib/phpseclib": "^3.0",
"symfony/console": "^5.0||^6.0||^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4": {
"Jenssegers\\Optimus\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jenssegers\\Optimus\\Tests\\": "tests"
}
},
"suggest": {
"ext-gmp": "Required for 32bit systems"
},
"bin": ["bin/optimus"],
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"scripts": {
"test": "vendor/bin/phpunit --testdox --color=always"
}
}