-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 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
43
{
"name": "matchory/id-mask",
"description": "IDMask is a PHP library for masking internal ids (e.g. from your DB) when they need to be published to hide their actual value and to prevent forging. It has support for optional randomisation. This library bases its security on strong cryptographic primitives.",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.23"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Matchory\\IdMask\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Matchory\\IdMask\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Moritz Friedrich",
"email": "[email protected]"
}
],
"require": {
"ramsey/uuid": "^4.3",
"ext-openssl": "*"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"check": "psalm --report=test-reports/psalm.junit.xml --report=test-reports/psalm.txt"
}
}