但这些与您的要求或最低稳定性相冲突

Die*_*iro 7 php composer-php sparkpost

嗨,当我尝试安装SparkPost PHP库时,我遇到了这个问题:

问题1
- 请求的包sparkpost/sparkpost没有版本集(解析为1.0.0)可以通过sparkpost/sparkpost [没有版本集(解析为1.0.0)]来满足,但这些与您的要求或最小稳定性相冲突.

当我尝试执行此命令时出现:
composer require sparkpost/sparkpost


完整控制台输出:

You are running Composer with SSL/TLS protection disabled.
Using version ^2.0 for sparkpost/sparkpost
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - The requested package sparkpost/sparkpost No version set (parsed as 1.0.0) is satisfiable by sparkpost/sparkpost[No version set (parsed as 1.0.0)] but these conflict with your requirements or minimum-stability.


Installation failed, reverting ./composer.json to its original content.
Run Code Online (Sandbox Code Playgroud)

作曲家档案:

{
  "name": "sparkpost/sparkpost",
  "description": "Client library for interfacing with the SparkPost API.",
  "license": "Apache 2.0",
  "authors": [
    {
      "name": "SparkPost"
    }
  ],
  "minimum-stability": "stable",
  "scripts": {
    "post-install-cmd": "post-install.sh",
    "post-update-cmd": "post-install.sh",
    "test": "./vendor/bin/phpunit",
    "fix-style": "php-cs-fixer fix ."
  },
  "require": {
    "php": "^5.6 || ^7.0",
    "php-http/httplug": "^1.0",
    "php-http/message": "^1.0",
    "php-http/client-implementation": "^1.0",
    "php-http/discovery": "^1.0",
    "php-http/guzzle6-adapter": "^1.1",
    "guzzlehttp/guzzle": "^6.2"
  },
  "require-dev": {
    "phpunit/phpunit": "^4.8 || ^5.4",
    "mockery/mockery": "^0.9.4",
    "friendsofphp/php-cs-fixer": "^1.11",
    "nyholm/nsa": "^1.0",
    "satooshi/php-coveralls": "dev-master",
    "phpunit/phpcov": "2.*"
  },
  "autoload": {
    "psr-4": {
      "SparkPost\\": "lib/SparkPost"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "SparkPost\\Test\\": "test/unit"
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

有解决方案吗



PD:我试过设置"minimum-stability": "stable""dev",但我有同样的错误

Tob*_*ann 6

您可以将其定义为composer.json

"some-vendor/some-library": "@dev"
Run Code Online (Sandbox Code Playgroud)

这应该推翻稳定性设置。