-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.33 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.33 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
72
73
74
75
76
77
78
{
"name": "muffin/obfuscate",
"description": "CakePHP support for ID obfuscation",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"muffin",
"obfuscate",
"hash"
],
"homepage": "https://github.com/usemuffin/obfuscate",
"license": "MIT",
"authors": [
{
"name": "Jad Bitar",
"homepage": "http://jadb.io",
"role": "Author"
},
{
"name": "ADmad",
"homepage": "https://github.com/ADmad",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/usemuffin/obfuscate/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/usemuffin/obfuscate/issues",
"source": "https://github.com/usemuffin/obfuscate"
},
"require": {
"cakephp/orm": "^5.0.0"
},
"require-dev": {
"cakephp/cakephp": "^5.0.0",
"phpunit/phpunit": "^10.1.0",
"cakephp/cakephp-codesniffer": "^5.0",
"jenssegers/optimus": "^1.1.1",
"hashids/hashids": "^1.0.5",
"tuupola/base62": "^2.1"
},
"suggest": {
"tuupola/base62": "Base62 encoder and decoder for arbitrary data",
"jenssegers/optimus": "Id obfuscation based on Knuth's multiplicative hashing method",
"hashids/hashids": "Generate hashids like YouTube or Bitly from numbers to obfuscate your database primary ids, or navigate to the right shard"
},
"autoload": {
"psr-4": {
"Muffin\\Obfuscate\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Muffin\\Obfuscate\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs-check": "phpcs --colors --parallel=16 -p src/ tests/",
"cs-fix": "phpcbf --colors --parallel=16 -p src/ tests/",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --show-info=false",
"stan": [
"@phpstan",
"@psalm"
],
"stan-baseline": "tools/phpstan --generate-baseline",
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
"stan-setup": "phive install",
"test": "phpunit"
}
}