| {
  "name": "complex-heart/on-laravel",
  "description": "Domain driven design tools for Laravel.",
  "type": "library",
  "license": "Apache-2.0",
  "authors": [
    {
      "name": "Unay Santisteban",
      "email": "[email protected] "
    }
  ],
  "minimum-stability": "stable",
  "require": {
    "php": "^8.1.0",
    "complex-heart/sdk": "^1.0.0",
    "laravel/framework": "^10.0.0"
  },
  "require-dev": {
    "pestphp/pest": "*",
    "pestphp/pest-plugin-faker": "^2.0",
    "phpstan/phpstan": "*",
    "mockery/mockery": "^1.6"
  },
  "autoload": {
    "psr-4": {
      "ComplexHeart\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "ComplexHeart\\Tests\\": "tests/"
    }
  },
  "scripts": {
    "test": "vendor/bin/pest --configuration=phpunit.xml --coverage-clover=coverage.xml --log-junit=test.xml",
    "test-cov": "vendor/bin/pest --configuration=phpunit.xml --coverage-html=coverage",
    "analyse": "vendor/bin/phpstan analyse src --no-progress --level=8",
    "check": [
      "@analyse",
      "@test"
    ]
  },
  "config": {
    "allow-plugins": {
      "pestphp/pest-plugin": true
    }
  }
}
 |