{
    "name": "bmltenabled/mayo",
    "description": "A WordPress plugin for managing events",
    "type": "wordpress-plugin",
    "license": "GPL-2.0-or-later",
    "require": {
        "php": ">=7.4",
        "composer/installers": "^2.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.6",
        "mockery/mockery": "^1.5",
        "brain/monkey": "^2.6",
        "squizlabs/php_codesniffer": "^3.7",
        "wp-coding-standards/wpcs": "^3.0"
    },
    "autoload": {
        "psr-4": {
            "BmltEnabled\\Mayo\\": "includes/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "BmltEnabled\\Mayo\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "test": "phpunit",
        "test:unit": "phpunit --testsuite Unit",
        "lint": "phpcs *.php",
        "lint:fix": "phpcbf *.php",
        "lint:esc-url": "bash scripts/check-esc-url.sh",
        "lint:all": ["@lint", "@lint:esc-url"]
    },
    "config": {
        "allow-plugins": {
            "composer/installers": true,
            "dealerdirect/phpcodesniffer-composer-installer": true
        }
    }
}
