-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
40 lines (40 loc) · 1.18 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
{
"name": "madmatt/silverstripe-encrypt-at-rest",
"type": "silverstripe-vendormodule",
"description": "Enable encryption of data at rest (in database)",
"keywords": [ "silverstripe", "encryption", "decryption", "encrypt-at-rest" ],
"homepage": "https://github.com/madmatt/silverstripe-encrypt-at-rest",
"license": "WTFPL",
"authors": [
{
"name": "Matt Peel",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/madmatt/silverstripe-encrypt-at-rest/issues",
"source": "https://github.com/madmatt/silverstripe-encrypt-at-rest"
},
"require": {
"php": "^8.0",
"silverstripe/framework": "^5",
"defuse/php-encryption": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Madmatt\\EncryptAtRest\\": "src/",
"Madmatt\\EncryptAtRest\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}