.multirepo/sdl/composer.json

Summary

Maintainability
Test Coverage
{
    "name": "railt/sdl",
    "license": "MIT",
    "type": "library",
    "homepage": "http://railt.org",
    "description": "The GraphQL RL/SDL grammar and compiler",
    "keywords": [
        "graphql",
        "idl",
        "sdl",
        "otd",
        "ast",
        "reflection",
        "compiler"
    ],
    "authors": [
        {
            "name": "Kirill Nesmeyanov",
            "email": "nesk@xakep.ru"
        }
    ],
    "support": {
        "issues": "https://github.com/railt/railt/issues",
        "source": "https://github.com/railt/sdl"
    },
    "require": {
        "php": ">=7.1.3",
        "ext-mbstring": "*",
        "railt/json": "1.4.*|1.4.x-dev",
        "phplrt/io": "~1.1",
        "phplrt/parser": "~1.1",
        "phplrt/lexer": "~1.1",
        "psr/simple-cache": "~1.0",
        "cache/array-adapter": "~1.0",
        "illuminate/support": "~5.5|~6.0"
    },
    "autoload": {
        "psr-4": {
            "Railt\\": "src/"
        },
        "files": [
            "./src/SDL/polyfill.php"
        ]
    },
    "require-dev": {
        "phpunit/phpunit": "^7.5",
        "phplrt/compiler": "1.4.*|1.4.x-dev",
        "symfony/finder": "~3.4|~4.0|~5.0",
        "cache/filesystem-adapter": "~1.0"
    },
    "autoload-dev": {
        "psr-4": {
            "Railt\\Tests\\SDL\\": "tests/"
        }
    },
    "extra": {
        "branch-alias": {
            "1.3.x": "1.3.x-dev",
            "1.4.x": "1.4.x-dev"
        }
    },
    "config": {
        "sort-packages": true
    },
    "prefer-stable": true,
    "minimum-stability": "dev"
}