{
    "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.0",
        "laravel/framework": ">=8.0"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^3",
        "nunomaduro/larastan": "^1|^2",
        "orchestra/testbench": ">=7"
    },
    "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",
        "test": "./vendor/bin/phpunit",
        "cs": "./vendor/bin/php-cs-fixer fix -vvv --show-progress=dots --config=ruleset-php_cs.php",
        "test-all": [
            "@test",
            "@phpstan",
            "@cs"
        ]
    },
    "extra": {
        "laravel": {
            "providers": [
                "GeoSot\\EnvEditor\\ServiceProvider"
            ],
            "aliases": {
                "EnvEditor": "GeoSot\\EnvEditor\\Facades\\EnvEditor"
            }
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "sort-packages": true
    }
}
