-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.18 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
48
49
50
51
52
{
"name": "aranyasen/laravel-env-sync",
"description": "A package that makes sure that your .env file is in sync with your .env.example",
"type": "library",
"license": "MIT",
"keywords": ["Laravel", "dotenv", "diff", "sync"],
"authors": [
{
"name": "Aranya Sen",
"email": "[email protected]",
"role": "Owner"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"vlucas/phpdotenv": "^5",
"illuminate/console": "^10|^11",
"illuminate/support": "^10|^11",
"illuminate/events": "^10|^11"
},
"require-dev": {
"orchestra/testbench": "^9",
"mockery/mockery": "^1.5",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"Aranyasen\\LaravelEnvSync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aranyasen\\LaravelEnvSync\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests/ --coverage-text",
"lint": "vendor/bin/phpcs"
},
"extra": {
"laravel": {
"providers": [
"Aranyasen\\LaravelEnvSync\\EnvSyncServiceProvider"
]
},
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}