orkhanahmadov/content-migrations

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "orkhanahmadov/content-migrations",
    "description": "Content migrations package for Laravel",
    "keywords": [
        "laravel",
        "migrations",
        "content-migrations"
    ],
    "homepage": "https://github.com/orkhanahmadov/content-migrations",
    "license": "MIT",
    "type": "library",
    "authors": [
        {
            "name": "Orkhan Ahmadov",
            "email": "orkhan@fastmail.com",
            "role": "Developer"
        }
    ],
    "require": {
        "php": "^7.2",
        "illuminate/contracts": "^6.0|^7.0|^8.0",
        "illuminate/database": "^6.0|^7.0|^8.0",
        "illuminate/support": "^6.0|^7.0|^8.0"
    },
    "require-dev": {
        "orchestra/testbench": "^4.0|^5.0|^6.0",
        "phpunit/phpunit": "^8.0|^9.0"
    },
    "autoload": {
        "psr-4": {
            "Orkhanahmadov\\ContentMigrations\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Orkhanahmadov\\ContentMigrations\\Tests\\": "tests"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit",
        "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "Orkhanahmadov\\ContentMigrations\\ContentMigrationsServiceProvider"
            ]
        }
    }
}