-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
44 lines (44 loc) · 1.17 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
{
"name": "mrgswift/laravel-encryptenv",
"type": "library",
"description": "Laravel Environment Variable Encryption",
"keywords": [
"mrgswift",
"laravel-encryptenv"
],
"homepage": "https://github.com/mrgswift/laravel-encryptenv",
"license": "MIT",
"authors": [
{
"name": "Matthew Guillot",
"email": "[email protected]",
"role": "Author"
}
],
"require": {
"php": ">=8.0",
"illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/encryption": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"mrgswift\\EncryptEnv\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"php artisan vendor:publish --provider=\"mrgswift\\EncryptEnv\\Provider\\EncryptEnvServiceProvider\""
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"laravel": {
"providers": []
}
}
}