{
    "name": "bensampo/laravel-enum",
    "type": "library",
    "description": "This package adds support for creating enums in PHP and includes a generator for Laravel.",
    "keywords": [
        "bensampo",
        "enum",
        "laravel",
        "package",
        "validation"
    ],
    "homepage": "https://github.com/bensampo/laravel-enum",
    "license": "MIT",
    "authors": [
        {
            "name": "Ben Sampson",
            "homepage": "https://sampo.co.uk",
            "role": "Developer"
        }
    ],
    "require": {
        "illuminate/support": "~5.1",
        "php" : "~7.0"
    },
    "require-dev": {
        "phpunit/phpunit" : ">=5.4.3",
        "laravel/framework": "~5.1",
        "squizlabs/php_codesniffer": "^2.3"
    },
    "autoload": {
        "psr-4": {
            "BenSampo\\Enum\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "BenSampo\\Enum\\Tests\\": "tests"
        }
    },
    "scripts": {
        "test": "phpunit",
        "check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
        "fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.0-dev"
        },
        "laravel": {
            "providers": [
                "BenSampo\\Enum\\EnumServiceProvider"
            ]
        }
    },
    "config": {
        "sort-packages": true
    }
}
