stylers-llc/laravel-ban

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "stylers/laravel-ban",
  "description": "Laravel Ban",
  "homepage": "https://github.com/stylers-llc/laravel-ban",
  "keywords": [
    "stylers",
    "laravel",
    "ban"
  ],
  "type": "library",
  "license": "MIT",
  "minimum-stability": "dev",
  "prefer-stable": true,
  "authors": [
    {
      "name": "Szilveszter Nagy",
      "email": "developer@stylersonline.com",
      "homepage": "http://stylers.hu",
      "role": "Developer"
    }
  ],
  "require": {
    "php": ">=8.1",
    "illuminate/broadcasting": "~10",
    "illuminate/database": "~10",
    "illuminate/queue": "~10",
    "illuminate/support": "~10",
    "laravel/legacy-factories": "~1.3.2"
  },
  "require-dev": {
    "mockery/mockery": "^1.6",
    "orchestra/testbench": "^8.0",
    "phpmd/phpmd": "^2.15",
    "phpunit/phpunit": "^7.5.15 || ^8.4 || ^9.5.4 || ^10.5.5"
  },
  "autoload": {
    "classmap": [
      "database",
      "config"
    ],
    "psr-4": {
      "Stylers\\LaravelBan\\": "src"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Stylers\\LaravelBan\\Tests\\": "tests",
      "Stylers\\LaravelBan\\Tests\\Fixtures\\": "tests/fixtures"
    }
  },
  "scripts": {
    "test": "vendor/bin/phpunit"
  },
  "config": {
    "sort-packages": true
  },
  "extra": {
    "laravel": {
      "providers": [
        "Stylers\\LaravelBan\\Providers\\BanServiceProvider"
      ]
    }
  }
}