{
  "name": "intercom/intercom-php",

  "description": "Intercom API client.",
  "keywords": [
    "intercom",
    "api",
    "sdk"
  ],
  "license": "MIT",
  "require": {
    "php": "^8.1",
    "ext-json": "*",
    "guzzlehttp/guzzle": "^7.4"
  },
  "require-dev": {
    "phpunit/phpunit": "^9.0",
    "friendsofphp/php-cs-fixer": "3.5.0",
    "phpstan/phpstan": "^1.12"
  },
  "autoload": {
    "psr-4": {
      "Intercom\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Intercom\\Tests\\": "tests/"
    }
  },
  "scripts": {
    "build": [
      "@php -l src",
      "@php -l tests"
    ],
    "test": "phpunit",
    "analyze": "phpstan analyze src tests --memory-limit=1G"
  },
  "authors": [
    {
      "name": "Intercom Platform Team",
      "homepage": "https://www.intercom.com"
    }
  ],
  "homepage": "https://developers.intercom.com/docs"
}