| {
    "name": "odan/struct",
    "type": "project",
    "description": "Struct type for PHP",
    "keywords": [
        "struct",
        "value type"
    ],
    "homepage": "http://github.com/odan/struct",
    "license": "MIT",
    "authors": [
        {
            "name": "odan",
            "email": "[email protected] ",
            "homepage": "https://github.com/odan/struct",
            "role": "Developer"
        }
    ],
    "require": {
        "php": "^5.6 || ^7.0"
    },
    "require-dev": {
        "phpunit/phpunit": "5.7"
    },
    "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 -n --no-patch 1 src tests"
    },
    "autoload": {
        "psr-4": {
            "Odan\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Odan\\Test\\": "tests"
        }
    },
    "config": {
        "sort-packages": true
    }
}
 |