-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 923 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 923 Bytes
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
{
"name": "mantraideas/laravel-env-doctor",
"description": "LaravelEnvDoctor is a developer-friendly CLI tool for Laravel that checks your .env variables, validates the current environment, and ensures directory permissions are correctly set — helping you catch misconfigurations before they become problems.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Mantraideas\\LaravelEnvDoctor\\": "src/"
}
},
"authors": [
{
"name": "Dipesh Khanal",
"email": "dipeshkhanal79@gmail.com",
"homepage": "https://www.khanaldipesh.com.np",
"role": "Maintainer"
}
],
"minimum-stability": "dev",
"require": {},
"extra": {
"laravel": {
"providers": [
"Mantraideas\\LaravelEnvDoctor\\LaravelEnvDoctorServiceProvider"
]
}
}
}