{
  "name": "neilime/php-css-lint",
  "type": "library",
  "description": "Powerful & memory efficient CSS linter for PHP",
  "keywords": [
    "CSS",
    "lint",
    "linter",
    "syntax",
    "validation"
  ],
  "homepage": "https://neilime.github.io/php-css-lint/",
  "license": "MIT",
  "minimum-stability": "stable",
  "authors": [
    {
      "name": "Neilime",
      "homepage": "https://github.com/neilime",
      "role": "Developer"
    }
  ],
  "support": {
    "issues": "https://github.com/neilime/php-css-lint/issues"
  },
  "require": {
    "php": ">=8.0",
    "ext-json": "*"
  },
  "require-dev": {
    "mikey179/vfsstream": "^1.6",
    "pcov/clobber": "^2.0",
    "phpstan/extension-installer": "^1.1",
    "phpstan/phpstan": "^0.12",
    "phpstan/phpstan-phpunit": "^0.12",
    "phpunit/phpunit": "^9.5.27",
    "slam/phpstan-laminas-framework": "^0.12",
    "squizlabs/php_codesniffer": "^3.7"
  },
  "autoload": {
    "psr-4": {
      "CssLint\\": "src/CssLint"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "TestSuite\\": "tests/TestSuite"
    }
  },
  "bin": [
    "scripts/php-css-lint"
  ],
  "scripts": {
    "test": "phpunit --colors --configuration tests/phpunit.xml",
    "test:ci": "phpunit --colors --configuration tests/phpunit.xml -d pcov.enabled=1 -d max_execution_time=0 --coverage-text --coverage-clover ./build/logs/clover.xml --coverage-html ./build/coverage/",
    "cs": "phpcs",
    "cbf": "phpcbf",
    "stan": "phpstan analyse --level 5 src",
    "ci": [
      "@cs",
      "@stan",
      "@test:ci"
    ]
  },
  "config": {
    "optimize-autoloader": true,
    "sort-packages": true,
    "allow-plugins": {
      "phpstan/extension-installer": true
    }
  },
  "extra": {
    "branch-alias": {
      "dev-master": "1.0-dev"
    }
  }
}
