-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.3 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "co-stack/reversible-halite",
"type": "library",
"description": "Provides portable reversible encryption functions based on paragonie/halite, an advanced security library",
"keywords": [
"reversible",
"reversible queue",
"reversible functions",
"undo",
"security",
"encryption"
],
"homepage": "https://co-stack.com/",
"license": "MIT",
"authors": [
{
"name": "Oliver Eglseder",
"email": "oliver.eglseder@co-stack.com"
}
],
"require": {
"php": "^7.2 || ^8.0 <8.4",
"ext-sodium": "*",
"co-stack/reversible": "^v1.7.0",
"paragonie/halite": "^v4.8.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ocramius/package-versions": true,
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"CoStack\\ReversibleHalite\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CoStack\\ReversibleHaliteTests\\": "tests"
}
},
"support": {
"email": "support@co-stack.com",
"issues": "https://gitlab.com/co-stack.com/co-stack.com/php-packages/reversible_halite/-/issues",
"source": "https://gitlab.com/co-stack.com/co-stack.com/php-packages/reversible_halite"
},
"require-dev": {
"infection/infection": "^0.25.3",
"phpunit/phpunit": "^9.5"
}
}