This repository has been archived by the owner on Apr 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
composer.json
86 lines (86 loc) · 2.24 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
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
79
80
81
82
83
84
85
86
{
"name": "austinheap/laravel-database-encryption",
"description": "A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.",
"keywords": [
"laravel",
"encrypt",
"database",
"eloquent",
"model",
"attribute",
"decrypt",
"encryption",
"decryption",
"db",
"aes",
"laravel5",
"laravel55",
"laravel56",
"laravel57",
"laravel58",
"l5",
"laravel encryption",
"laravel5 encryption",
"laravel55 encryption",
"laravel56 encryption",
"laravel57 encryption",
"laravel58 encryption",
"eloquent encryption",
"model encryption",
"attribute encryption",
"database encryption",
"laravel5 aes",
"eloquent aes",
"elocrypt",
"elocryptfive"
],
"homepage": "https://github.com/austinheap/laravel-database-encryption",
"license": "MIT",
"authors": [
{
"name": "Austin Heap",
"email": "me@austinheap.com",
"homepage": "https://github.com/austinheap",
"role": "Developer"
}
],
"replace": {
"delatbabel/elocryptfive": "*",
"dtisgodsson/elocrypt": "*"
},
"conflict": {
"delatbabel/elocryptfive": "*",
"dtisgodsson/elocrypt": "*"
},
"require": {
"php": ">=7.1.0",
"laravel/framework": "5.5.*|5.6.*|5.7.*|5.8.*"
},
"require-dev": {
"codeclimate/php-test-reporter": "dev-master",
"phpunit/phpunit": "~6.0|~7.0",
"orchestra/testbench": "^3.5"
},
"autoload": {
"psr-4": {
"AustinHeap\\Database\\Encryption\\": "src"
},
"files": [
"src/helpers.php"
]
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"AustinHeap\\Database\\Encryption\\EncryptionServiceProvider"
],
"aliases": {
"DatabaseEncryption": "AustinHeap\\Database\\Encryption\\EncryptionFacade"
}
}
},
"config": {
"discard-changes": true
}
}