-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
39 lines (39 loc) · 906 Bytes
/
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
{
"name": "elgibor-solution/laravel-database-encryption",
"description": "Auto Encrypt and Decrypt Database through Eloquent",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "E-Solution",
"email": "[email protected]"
}
],
"require": {},
"autoload": {
"psr-4": {
"ESolution\\DBEncryption\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ESolution\\DBEncryption\\Tests\\": "tests",
"ESolution\\DBEncryption\\Tests\\Database\\Factories\\": "tests/database/factories"
}
},
"require-dev": {
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.4"
},
"extra": {
"laravel": {
"providers": [
"ESolution\\DBEncryption\\Providers\\DBEncryptionServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-f": "vendor/bin/phpunit --filter"
}
}