railt/parser

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "railt/parser",
    "license": "MIT",
    "type": "library",
    "homepage": "http://railt.org",
    "description": "Syntactic LL(k) parser-analyzer implementation",
    "keywords": [
        "parser",
        "llk",
        "ll1",
        "lr",
        "slr",
        "language",
        "php",
        "ast"
    ],
    "authors": [
        {
            "name": "Kirill Nesmeyanov",
            "email": "nesk@xakep.ru"
        },
        {
            "name": "Ivan Enderlin",
            "email": "ivan.enderlin@hoa-project.net"
        },
        {
            "name": "Hoa community",
            "homepage": "https://hoa-project.net/"
        }
    ],
    "support": {
        "issues": "https://github.com/railt/railt/issues",
        "source": "https://github.com/railt/parser"
    },
    "require": {
        "php": ">=7.1.3",
        "ext-spl": "*",
        "ext-pcre": "*",
        "ext-mbstring": "*",
        "railt/io": "1.4.*|1.4.x-dev",
        "railt/lexer": "1.4.*|1.4.x-dev"
    },
    "autoload": {
        "psr-4": {
            "Railt\\Component\\": "src/"
        }
    },
    "require-dev": {
        "phpunit/phpunit": "^7.5"
    },
    "autoload-dev": {
        "psr-4": {
            "Railt\\Tests\\Parser\\": "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"
}