hnhdigital-os/laravel-seed-from-file

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "hnhdigital-os/laravel-seed-from-file",
    "description": "Provides the ability to import a file or files from a folder into your database.",
    "keywords": ["laravel", "php", "db", "seed"],
    "license": "MIT",
    "authors": [
        {
            "name": "Rocco Howard",
            "email": "rocco@hnh.digital"
        }
    ],
    "require": {
        "php" : ">=7.0.10",
        "league/csv": "^9.0"
    },
    "require-dev": {
        "phpunit/phpunit": "5.7",
        "illuminate/database": "4.*|5.*",
        "symfony/process": "~2.3",
        "codeclimate/php-test-reporter": "dev-master"
    },
    "autoload": {
        "psr-4": {
            "HnhDigital\\LaravelSeedFomFile\\": "src/"
        }
    },
    "scripts": {
      "test": "composer phpunit && composer phpcs",
      "phpcs": "./vendor/bin/phpcs -p -s --standard=PSR2 ./src ./tests",
      "phpunit": "phpunit",
      "hhvm": "hhvm ./vendor/phpunit/phpunit/phpunit"
    },
    "extra": {
        "laravel": {
            "providers": [
                "HnhDigital\\LaravelSeedFomFile\\ServiceProvider"
            ]
        }
    }
}