composer.json
{
"name": "geo-sot/laravel-env-editor",
"description": "A laravel Package that supports .Env File, editing and backup ",
"keywords": [
"geo-sot",
"laravel",
"laravel-env-editor",
"EnvEditor"
],
"license": "MIT",
"authors": [
{
"name": "Geo Sot",
"email": "geo.sotis@gmail.com"
}
],
"require": {
"php": ">=8.1",
"laravel/framework": ">=10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"larastan/larastan": "^2",
"orchestra/testbench": ">=9",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"GeoSot\\EnvEditor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GeoSot\\EnvEditor\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "php --version && php vendor/bin/phpstan --version && php -d memory_limit=1G vendor/bin/phpstan analyse -c ruleset-phpstan.neon -vvv",
"cs": "./vendor/bin/php-cs-fixer fix -vvv --show-progress=dots --config=ruleset-php_cs.php",
"test": "./vendor/bin/phpunit",
"rector": "./vendor/bin/rector process --config=rector.php",
"test-all": [
"@cs",
"@phpstan",
"@rector",
"@test"
]
},
"extra": {
"laravel": {
"providers": [
"GeoSot\\EnvEditor\\ServiceProvider"
],
"aliases": {
"EnvEditor": "GeoSot\\EnvEditor\\Facades\\EnvEditor"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}