{
  "name": "qcod/laravel-settings",
  "description": "Store key value pair in database as settings",
  "homepage": "https://github.com/qcod/laravel-settings",
  "type": "library",
  "license": "MIT",
  "keywords": [
    "qcod",
    "laravel",
    "database settings",
    "db settings",
    "eloquent"
  ],
  "authors": [
    {
      "name": "Mohd Saqueib Ansari",
      "email": "saquibweb@gmail.com"
    }
  ],
  "require": {
    "php": "^7.3|^8.0",
    "laravel/framework": "^6.0|^7.0|^8.0|^9.0|^10.0"
  },
  "require-dev": {
    "orchestra/testbench": "4.*|5.*|6.*",
    "mockery/mockery": "^0.9.4 || ~1.0",
    "phpunit/phpunit": "^8.5"
  },
  "autoload": {
    "classmap": [
      "src/migrations"
    ],
    "psr-4": {
      "QCod\\Settings\\": "src/"
    },
    "files": [
      "src/helpers.php"
    ]
  },
  "autoload-dev": {
    "psr-4": {
      "QCod\\Settings\\Tests\\": "tests/"
    }
  },
  "extra": {
    "laravel": {
      "providers": [
        "QCod\\Settings\\SettingsServiceProvider"
      ],
      "aliases": {
        "Settings": "QCod\\Settings\\Facade"
      }
    }
  },
  "scripts": {
    "test": "vendor/bin/phpunit"
  }
}
