-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 994 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
40
41
42
43
44
45
46
{
"name": "eliurkis/laravel-env-sync",
"description": "A package that makes sure that your .env file is in sync with your .env.example",
"type": "library",
"autoload": {
"psr-4": {
"Eli\\LaravelEnvSync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Eli\\LaravelEnvSync\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3",
"vlucas/phpdotenv": "^5",
"illuminate/console": "^7|^8",
"illuminate/support": "^7|^8",
"illuminate/events": "^7|^8"
},
"require-dev": {
"phpunit/phpunit": "^9",
"mikey179/vfsstream": "^1",
"mockery/mockery": "^1",
"orchestra/testbench": "^6"
},
"license": "MIT",
"authors": [
{
"name": "Eliurkis Diaz",
"email": "eliurkis@gmail.com"
}
],
"extra": {
"laravel": {
"providers": [
"Eli\\LaravelEnvSync\\EnvSyncServiceProvider"
]
},
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"minimum-stability": "stable"
}