composer.json 2.37 KB
{
  "name": "roots/acorn",
  "license": "MIT",
  "description": "Framework for Roots WordPress projects built with Laravel components.",
  "homepage": "https://roots.io/acorn/",
  "authors": [
    {
      "name": "QWp6t",
      "email": "hi@qwp6t.me"
    },
    {
      "name": "Brandon Nifong",
      "email": "brandon@tendency.me"
    }
  ],
  "keywords": [
    "wordpress",
    "sage"
  ],
  "support": {
    "issues": "https://github.com/roots/acorn/issues",
    "forum": "https://discourse.roots.io/"
  },
  "autoload": {
    "psr-4": {
      "Roots\\": "src/Roots/",
      "Illuminate\\": "src/Illuminate/"
    },
    "files": [
      "src/Roots/helpers.php",
      "src/Roots/globals.php"
    ]
  },
  "autoload-dev": {
    "psr-4": {
      "Roots\\Acorn\\Tests\\": "tests"
    }
  },
  "require": {
    "php": "^7.3|^8.0",
    "ext-json": "*",
    "ext-mbstring": "*",
    "illuminate/cache": "^8.70",
    "illuminate/config": "^8.70",
    "illuminate/console": "^8.70",
    "illuminate/container": "^8.70",
    "illuminate/contracts": "^8.70",
    "illuminate/events": "^8.70",
    "illuminate/filesystem": "^8.70",
    "illuminate/http": "^8.70",
    "illuminate/log": "^8.70",
    "illuminate/support": "^8.70",
    "illuminate/view": "^8.70",
    "league/flysystem": "^1.1",
    "ramsey/uuid": "^4.1",
    "roots/support": "^1.0",
    "symfony/error-handler": "^5.2",
    "symfony/var-dumper": "^5.2",
    "vlucas/phpdotenv": "^5.2"
  },
  "require-dev": {
    "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
    "filp/whoops": "^2.9",
    "pestphp/pest": "^1.0",
    "pestphp/pest-plugin-mock": "^1.0",
    "phpcompatibility/php-compatibility": "^9.3",
    "roave/security-advisories": "dev-master",
    "spatie/pest-plugin-snapshots": "^1.0",
    "spatie/temporary-directory": "^1.3",
    "squizlabs/php_codesniffer": "^3.5",
    "tmarsteel/mockery-callable-mock": "^2.1",
    "wp-cli/wp-cli": "^2.5"
  },
  "suggest": {
    "filp/whoops": "Required for friendly error pages in development (^2.9)."
  },
  "config": {
    "sort-packages": true,
    "allow-plugins": {
      "pestphp/pest-plugin": true,
      "dealerdirect/phpcodesniffer-composer-installer": true
    }
  },
  "minimum-stability": "dev",
  "prefer-stable": true,
  "scripts": {
    "lint": "phpcs",
    "lint:fix": "phpcbf",
    "test": "pest",
    "coverage": "XDEBUG_MODE=coverage pest --coverage --coverage-html=coverage"
  }
}