0

我使用 sylius 作为电子商务平台,并通过创建自己的网站来开发它。

经过 4 个月的工作后,我想使用 composer.json 再扩展我的系统。但是当我想通过 json 更新作曲家时出现问题,sylius 捆绑包会出现问题,就像 sylius 捆绑包发生变化一样,我无法再更新旧的 sylius 作曲家,似乎我过去 4 个月使用 sylius 所做的工作不见了?

任何人都可以帮助有什么解决方案可以继续我与旧 sylius 的工作composer.json吗?

库存捆绑包的问题是 0.1.* 现在是该版本已删除,并且有 1.0 版本对于我的其余捆绑包(如 omnipay 、 flow bundle 等)无法满足......当我解决其中一个进入时下一对像有没有解决办法?

错误:

Problem 1
    - The requested package sylius/installer-bundle 0.1.* could not be found.
  Problem 2
    - The requested package sylius/omnipay-bundle 0.9.*@dev could not be found.
  Problem 3
    - Installation request for sylius/flow-bundle 0.1.* -> satisfiable by sylius/flow-bundle[v0.1.0].
    - sylius/flow-bundle v0.1.0 requires sylius/installer-bundle 0.1.* -> no matching package found.


    "php":                                  ">=5.3.3",
    "symfony/symfony":                      ">=2.2,<2.3-dev",
    "doctrine/orm":                         ">=2.2.3,<2.4-dev",
    "doctrine/doctrine-bundle":             "1.2.*",
    "doctrine/doctrine-fixtures-bundle":    "*",
    "twig/extensions":                      "1.0.*",
    "symfony/assetic-bundle":               "2.3.*",
    "symfony/swiftmailer-bundle":           "2.2.*",
    "symfony/monolog-bundle":               "2.2.*",
    "sensio/distribution-bundle":           "2.2.*",
    "sensio/generator-bundle": "2.2.*",
    "incenteev/composer-parameter-handler": "~2.0",
    "mathiasverraes/money":                 "dev-master@dev",
    "jms/translation-bundle":               "1.1.*",
    "sylius/installer-bundle":              "0.1.*",
    "sylius/assortment-bundle":             "0.1.*",
    "sylius/cart-bundle":                   "0.3.*",
    "sylius/money-bundle":                  "0.1.*",
    "sylius/taxation-bundle":               "0.1.*",
    "sylius/shipping-bundle":               "0.1.*",
    "sylius/addressing-bundle":             "0.1.*",
    "sylius/sales-bundle":                  "0.1.*",
    "sylius/promotions-bundle":             "0.1.*",
    "sylius/inventory-bundle":              "0.1.*",
    "sylius/taxonomies-bundle":             "0.1.*",
    "sylius/settings-bundle":               "0.1.*",
    "sylius/payments-bundle":               "0.1.*",
    "sylius/flow-bundle":                   "0.1.*",
    "sylius/resource-bundle":               "0.1.*",
    "sylius/omnipay-bundle":                "0.9.*@dev",
    "jms/serializer-bundle":                "0.11.*",
    "friendsofsymfony/user-bundle":         "1.3.1",
    "fsc/hateoas-bundle":                   "0.3.x-dev",
    "knplabs/knp-gaufrette-bundle":         "0.2.*",
    "fzaninotto/faker":                     "1.1.*",
    "knplabs/knp-menu-bundle":              "2.0.*",
    "liip/imagine-bundle":                  "0.9.*",
    "athari/yalinqo":                       "*",
    "friendsofsymfony/facebook-bundle": "1.1.*",
    "doctrine/migrations": "dev-master",
    "doctrine/doctrine-migrations-bundle": "dev-master",
    "friendsofsymfony/elastica-bundle": "3.0.*@dev",
    "excelwebzone/recaptcha-bundle": "dev-master",
    "knplabs/knp-paginator-bundle": "dev-master",
    "knplabs/knp-snappy-bundle": "dev-master",
    "paypal/adaptivepayments-sdk-php": "dev-master",
    "mandrill/mandrill":                     "1.0.*"
4

1 回答 1

0

根据您的最低稳定性设置,您应该需要“1.0. ”或“1.0. @dev”。您还可以锁定特定标签。

于 2013-10-10T20:49:38.327 回答