{
    "name":        "yohang/finite",
    "description": "A simple PHP5.3+ Finite State Machine",
    "keywords":    ["statemachine", "workflow", "state", "transition", "symfony", "bundle"],
    "homepage":    "https://github.com/yohang/Finite",
    "type":        "library",
    "license":     "MIT",
    "authors": [
        {
            "name":     "Yohan Giarelli",
            "email":    "yohan@giarel.li",
            "homepage": "http://yohan.giarel.li"
        },
        {
            "name":     "Finite contributors",
            "homepage": "https://github.com/yohang/Finite/graphs/contributors"
        }
    ],
    "require": {
        "php":                      ">=5.5",
        "symfony/options-resolver": "^2.6|^3.0|^4.0",
        "symfony/event-dispatcher": "^2.6|^3.0|^4.0",
        "symfony/property-access":  "^2.6|^3.0|^4.0"
    },
    "require-dev": {
        "phpunit/phpunit":              "^4.0",
        "pimple/pimple":                "^1.0",
        "symfony/dependency-injection": "^2.6|^3.0|^4.0",
        "symfony/framework-bundle":     "^2.6|^3.0|^4.0",
        "symfony/security":             "^2.6|^3.0|^4.0",
        "twig/twig":                    "^1.13"
    },
    "suggest": {
        "pimple/pimple":    "Needed for use with PimpleFactory",
        "symfony/security": "Needed for using SecurityAwareStateMachine",
        "symfony/yaml":     "Yaml allows you to define your State graph in YAML"
    },
    "autoload": {
        "psr-0": { "Finite": "src/" }
    },
    "config": {
        "bin-dir":"bin"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.1.x-dev"
        }
    }
}