-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "distortedfusion/laravel-env-management",
"description": "A collection of artisan commands for managing environment variables during CI/CD.",
"homepage": "https://distortedfusion.com/docs/distortedfusion/laravel-env-management",
"support": {
"issues": "https://github.com/distortedfusion/laravel-env-management/issues",
"source": "https://github.com/distortedfusion/laravel-env-management"
},
"license": "MIT",
"keywords": [
"distortedfusion",
"laravel",
"env",
"management"
],
"authors": [
{
"name": "Kevin Dierkx",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/distortedfusion/laravel-env-management/graphs/contributors"
}
],
"require": {
"php": "^8.1",
"illuminate/console": "^9.35|^10.0|^11.0"
},
"require-dev": {
"distortedfusion/php-cs-fixer-config": "^2.0",
"orchestra/testbench": "^7.0"
},
"autoload": {
"psr-4": {
"DistortedFusion\\Env\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DistortedFusion\\Env\\Tests\\": "tests/src/"
}
},
"scripts": {
"phpcs-fix" : "php-cs-fixer fix --using-cache=no --allow-risky=yes --ansi",
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes --ansi",
"phpunit": "phpunit --coverage-text",
"test": [
"@phpcs",
"@phpunit"
]
},
"scripts-descriptions": {
"phpcs": "Runs coding style test suite",
"phpunit": "Runs unit and function tests",
"test": "Runs all tests"
},
"extra": {
"laravel": {
"providers": [
"DistortedFusion\\Env\\EnvServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}