{
    "name": "elula/elex-woocommerce-name-your-price",
    "description": "The plugin allows the customer to give his own price and proceed with the checkout. You can easily set the minimum price for your woocommerce products both globally and individually.",
    "type": "wordpress-plugin",
    "license": "GPL",
    "autoload": {
        "psr-4": {
            "ELEX\\NYP\\": "includes/"
        }
    },
    "authors": [
        {
            "name": "Ankit",
            "email": "ankit@elula.tech"
        }
    ],
    "minimum-stability": "dev",
    "require": {
        "php": ">=7.1"
    },
    "require-dev": {
        "woocommerce/woocommerce-sniffs": "^0.1.0",
        "woocommerce/woocommerce-git-hooks": "^1.0"
    
    },
    "scripts": {
        "pre-update-cmd": [
          "WooCommerce\\GitHooks\\Hooks::preHooks"
        ],
        "pre-install-cmd": [
          "WooCommerce\\GitHooks\\Hooks::preHooks"
        ],
        "post-install-cmd": [
          "WooCommerce\\GitHooks\\Hooks::postHooks"
        ],
        "post-update-cmd": [
          "WooCommerce\\GitHooks\\Hooks::postHooks"
        ],
        "phpcs": [
          "phpcs --warning-severity=0 -s --ignore-annotations --extensions=php,html ."
        ],
        "phpcbf": [
          "phpcbf --warning-severity=0 -s --ignore-annotations --extensions=php,html ."
        ]
      },
    "extra": {
        "scripts-description": {
          "test": "Run unit tests",
          "phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
          "phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
        }
  },
    "config": {
        "allow-plugins": {
            "dealerdirect/phpcodesniffer-composer-installer": true
        }
    }
}