-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
47 lines (47 loc) · 1.15 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
{
"name": "jacknoordhuis/laravel-database-hashing",
"description": "A package for automatically hashing Eloquent attributes in Laravel 5.5+.",
"homepage": "https://github.com/JackNoordhuis/laravel-database-hashing",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Jack Noordhuis",
"email": "[email protected]",
"homepage": "https://github.com/JackNoordhuis",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.0",
"laravel/framework": "5.5.*|5.6.*|5.7.*|5.8.*"
},
"require-dev": {
"phpunit/phpunit": "~6.0|^7.0|^8",
"orchestra/testbench": "^3.8"
},
"autoload": {
"psr-4": {
"jacknoordhuis\\database\\hashing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"jacknoordhuis\\tests\\database\\hashing\\": "tests/hashing"
},
"files": [
"tests/TestCase.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"jacknoordhuis\\database\\hashing\\HashingServiceProvider"
],
"aliases": {
"DatabaseHashing": "jacknoordhuis\\database\\hashing\\HashingFacade"
}
}
}
}