hootlex/laravel-friendships

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "hootlex/laravel-friendships",
    "description": "This package gives Eloquent models the ability to manage their friendships.",
    "keywords": ["laravel", "friendships", "friend-system", "friends", "eloquent"],
    "license": "MIT",
    "authors": [
        {
            "name": "Hootlex",
            "email": "hootlex@icloud.com"
        }
    ],
    "autoload-dev": {
        "classmap": [
            "vendor/laravel/laravel/tests/TestCase.php"
        ],
        "files": [
            "tests/helpers.php"
        ],
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "require": {
        "php": ">=5.4.0"
    },
    "require-dev": {
        "phpunit/phpunit" : "5.*",
        "fzaninotto/faker": "~1.4",
        "laravel/laravel": "5.*",
        "codeclimate/php-test-reporter": "^0.3.2",
        "mockery/mockery": "^0.9.5",
        "doctrine/dbal": "^2.5"
    },
    "autoload": {
        "psr-4": {
            "Hootlex\\Friendships\\": "src/"
        }
    },
    "extra": {
        "laravel": {
            "providers": [
                "Hootlex\\Friendships\\FriendshipsServiceProvider"
            ]
        }
    },
    "minimum-stability": "stable"
}