Skip to content
composer.json 1.11 KiB
Newer Older
Pavel's avatar
Pavel committed
{
  "name": "iqdev/search-es",
  "description": "Search by elasticsearch",
  "minimum-stability": "stable",
  "license": "proprietary",
  "authors": [
    {
      "name": "Pavel Piligrimov",
      "email": "p.piligrimov@iqdev.digital"
    }
  ],
  "type": "library",
  "keywords": [
    "search",
    "elasticsearch",
    "php"
  ],
  "require": {
    "php": ">=7.4",
    "ramsey/collection": "^1.2",
Pavel's avatar
Pavel committed
    "elasticsearch/elasticsearch": "^8.5",
    "vlucas/phpdotenv": "^5.4.1"
  },
  "autoload": {
    "psr-4": {
      "IQDEV\\ElasticSearch\\": "src/ElasticSearch/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "IQDEV\\ElasticSearchTests\\": "tests/"
    }
  },
Pavel's avatar
Pavel committed
    }
  "require-dev": {
    "phpunit/phpunit": "^9.5",
    "symfony/var-dumper": "^5.4"
  },
  "scripts": {
    "tests": "php ./vendor/bin/phpunit --testdox --verbose"
  },
Pavel's avatar
Pavel committed
  "config": {
    "allow-plugins": {
      "php-http/discovery": true
Pavel's avatar
Pavel committed
  }
Pavel's avatar
Pavel committed
}