Skip to content
This repository was archived by the owner on Mar 2, 2023. It is now read-only.

Commit a7ce39f

Browse files
committed
master - update dependencies
1 parent e0a8bb2 commit a7ce39f

File tree

7 files changed

+1268
-561
lines changed

7 files changed

+1268
-561
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
language: php
22

33
php:
4-
- 7.3
5-
- 7.4
4+
- 7.3
5+
- 7.4
66

77
before_script:
8-
- composer self-update
9-
- composer install --no-interaction
8+
- composer self-update
9+
- composer install --no-interaction
1010

1111
script:
12-
- vendor/bin/phpunit
12+
- vendor/bin/phpunit

composer.json

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
11
{
2-
"name": "ionghitun/laravel-lumen-mysql-encryption",
3-
"description": "Database fields encryption in laravel and lumen for mysql databases with native search and anonymize data for gdpr.",
4-
"keywords": [
5-
"ionghitun",
6-
"laravel",
7-
"lumen",
8-
"mysql",
9-
"encryption",
10-
"anonymize",
11-
"gdpr"
12-
],
13-
"license": "MIT",
14-
"authors": [
15-
{
16-
"name": "Ion Ghitun",
17-
"email": "ionghitun@gmail.com"
2+
"name": "ionghitun/laravel-lumen-mysql-encryption",
3+
"description": "Database fields encryption in laravel and lumen for mysql databases with native search and anonymize data for gdpr.",
4+
"keywords": [
5+
"ionghitun",
6+
"laravel",
7+
"lumen",
8+
"mysql",
9+
"encryption",
10+
"anonymize",
11+
"gdpr"
12+
],
13+
"license": "MIT",
14+
"authors": [
15+
{
16+
"name": "Ion Ghitun",
17+
"email": "ionghitun@gmail.com"
18+
}
19+
],
20+
"homepage": "https://github.com/ionghitun/laravel-lumen-mysql-encryption",
21+
"type": "library",
22+
"require": {
23+
"php": ">=7.3",
24+
"illuminate/database": ">=7.0",
25+
"ext-openssl": "*",
26+
"fzaninotto/faker": "^1.0"
27+
},
28+
"require-dev": {
29+
"phpunit/phpunit": "^9.0",
30+
"mockery/mockery": "^1.0"
31+
},
32+
"minimum-stability": "stable",
33+
"autoload": {
34+
"psr-4": {
35+
"IonGhitun\\MysqlEncryption\\": "src/"
36+
}
37+
},
38+
"autoload-dev": {
39+
"psr-4": {
40+
"IonGhitun\\MysqlEncryption\\Tests\\": "tests/"
41+
}
42+
},
43+
"extra": {
44+
"laravel": {
45+
"providers": [
46+
"IonGhitun\\MysqlEncryption\\MysqlEncryptionServiceProvider"
47+
]
48+
}
1849
}
19-
],
20-
"homepage": "https://github.com/ionghitun/laravel-lumen-mysql-encryption",
21-
"type": "library",
22-
"require": {
23-
"php": ">=7.2",
24-
"illuminate/database": ">=5.8",
25-
"ext-openssl": "*",
26-
"fzaninotto/faker": "^1.9"
27-
},
28-
"require-dev": {
29-
"phpunit/phpunit": "^8.5",
30-
"mockery/mockery": "^1.3"
31-
},
32-
"minimum-stability": "stable",
33-
"autoload": {
34-
"psr-4": {
35-
"IonGhitun\\MysqlEncryption\\": "src/"
36-
}
37-
},
38-
"autoload-dev": {
39-
"psr-4": {
40-
"IonGhitun\\MysqlEncryption\\Tests\\": "tests/"
41-
}
42-
},
43-
"extra": {
44-
"laravel": {
45-
"providers": [
46-
"IonGhitun\\MysqlEncryption\\MysqlEncryptionServiceProvider"
47-
]
48-
}
49-
}
5050
}

0 commit comments

Comments
 (0)