Skip to content

Commit 4c2142f

Browse files
committed
Add Encryptable
1 parent e2b9a75 commit 4c2142f

File tree

4 files changed

+516
-0
lines changed

4 files changed

+516
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vendor/
2+
.idea/
3+
index.php

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "code-orange/encryptable",
3+
"description": "Encryptable trait for Laravel models",
4+
"type": "library",
5+
"license": "UNLICENSED",
6+
"authors": [
7+
{
8+
"name": "Yoran Sturkenboom",
9+
"email": "yoran@code-orange.nl"
10+
}
11+
],
12+
"autoload": {
13+
"psr-4": {
14+
"CodeOrange\\Encryptable\\": "src/"
15+
}
16+
},
17+
"require": {
18+
"illuminate/support": "^5.6"
19+
}
20+
}

0 commit comments

Comments
 (0)