GrafiteInc/Charts

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "grafite/charts",
    "description": "An easy way to integrate Charts in Laravel",
    "license": "MIT",
    "authors": [
        {
            "name": "Matt Lantz",
            "email": "mattlantz@gmail.com"
        }
    ],
    "require": {
        "php": ">=7.3",
        "illuminate/support": "^7.0|^8.0",
        "matthiasmullie/minify": "^1.3"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.0",
        "mockery/mockery": "^1.0",
        "orchestra/testbench": "^5.0"
    },
    "autoload": {
        "psr-4": {
            "Grafite\\Charts\\": "src/"
        }
    },
    "autoload-dev": {
        "classmap": [
            "tests/ExampleChart.php",
            "tests/TestCase.php"
        ]
    },
    "extra": {
        "laravel": {
            "providers": [
                "Grafite\\Charts\\GrafiteChartsProvider"
            ]
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}