hnhdigital-os/laravel-console-self-update

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "hnhdigital-os/laravel-console-self-update",
  "description": "Provides a trait to use to self-update console binary.",
  "type": "project",
  "license": "MIT",
  "authors": [
    {
      "name": "Rocco Howard",
      "email": "rocco@hnh.digital",
      "role": "Developer"
    }
  ],
  "support": {
    "issues": "https://github.com/hnhdigital-os/laravel-console-self-update/issues",
    "source": "https://github.com/hnhdigital-os/laravel-console-self-update"
  },
  "require": {
    "php": "^7.1.3"
  },
  "require-dev": {
    "mockery/mockery": "^1.0",
    "phpunit/phpunit": "^7.3",
    "phpmd/phpmd" : "~2.0",
    "squizlabs/php_codesniffer" : "~3.0"
  },
  "autoload": {
    "psr-4": {
      "HnhDigital\\LaravelConsoleSelfUpdate\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "HnhDigital\\LaravelConsoleSelfUpdate\\Tests\\": "tests/"
    }
  },
  "scripts": {
    "test": [
      "@phpunit",
      "@phpcs",
      "@phpmd"
    ],
    "phpunit": "phpunit",
    "phpcs": "phpcs -p -s --standard=PSR2 ./src ./tests",
    "phpmd": "phpmd ./src text phpmd.xml"
  },
  "minimum-stability": "dev",
  "prefer-stable": true
}