{
  "name": "wegetfinancing/php-sdk",
  "description": "The WeGetFinancing PHP SDK provides convenient access to the WeGetFinancing API from applications written in the PHP language.",
  "minimum-stability": "stable",
  "prefer-stable": true,
  "license": "LGPL-3.0-only",
  "version": "2.7",
  "authors": [
    {
      "name": "Riccardo De Leo",
      "email": "riccardo.deleo@empaytech.com"
    }
  ],
  "require": {
    "php": ">=8.0",
    "ext-json": "*",
    "guzzlehttp/guzzle": "^7.0",
    "symfony/validator": "5.4.8",
    "doctrine/annotations": "^1.14.3",
    "symfony/serializer": "v4.4.47",
    "symfony/cache": "v5.4.9"
  },
  "require-dev": {
    "phpmd/phpmd": "^2",
    "phpstan/phpstan": "^1",
    "squizlabs/php_codesniffer": "^3",
    "friendsofphp/php-cs-fixer": "^3",
    "phpunit/phpunit": "^9"
  },
  "autoload": {
    "psr-4": {
      "WeGetFinancing\\SDK\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "Unit\\": "tests/Unit",
      "Functional\\": "tests/Functional",
      "Integration\\": "tests/Integration"
    }
  },
  "scripts": {
    "stan": [
      "php -d memory_limit=-1 vendor/bin/phpstan"
    ],
    "cs-fix": [
      "php -d memory_limit=-1 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php"
    ],
    "cs-fix-test": [
      "php -d memory_limit=-1 vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run"
    ],
    "phpmd": [
      "php -d memory_limit=-1 vendor/bin/phpmd src,tests text phpmd.ruleset.xml"
    ],
    "phpcs": [
      "php -d memory_limit=-1 vendor/bin/phpcs phpcs.xml src/"
    ],
    "test": [
      "php vendor/bin/phpunit"
    ]
  }
}
