Composer not finding packages that exist
The group you are posting to is a
Usenet group . Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
From:
adeduke <adrian.d... @openeyes.org.uk>
Date: Fri, 6 Jul 2012 06:52:31 -0700 (PDT)
Local: Fri, Jul 6 2012 9:52 am
Subject: Composer not finding packages that exist
Hi All,
Just started using composer to install Behat and Mink. Its giving me problems on Mink about packages it can't find but I can see they are there on both packagist and git. Its "Composer version 6adc81c", the ouput is:
[ade:mink]((no branch))$ composer install
> Installing dependencies
> Your requirements could not be solved to an installable set of packages.
>> Problem 1
> - Installation request for behat/mink-zombie-driver * -> satisfiable >> by behat/mink-zombie-driver v1.0.0.
> - behat/mink-zombie-driver v1.0.0 requires symfony/process >> >=2.1.0,<2.2.0-dev -> no matching package found.
> Problem 2
> - behat/mink-goutte-driver v1.0.3 requires fabpot/goutte @dev -> no >> matching package found.
> - behat/mink-goutte-driver v1.0.2 requires fabpot/goutte 1.0.*@dev -> >> no matching package found.
> - behat/mink-goutte-driver v1.0.1 requires fabpot/goutte 1.0.x-dev -> >> no matching package found.
> - behat/mink-goutte-driver v1.0.0 requires fabpot/goutte 1.0.* -> no >> matching package found.
> - Installation request for behat/mink-goutte-driver * -> satisfiable >> by behat/mink-goutte-driver v1.0.0, behat/mink-goutte-driver v1.0.1, >> behat/mink-goutte-driver v1.0.2, behat/mink-goutte-driver v1.0.3.
>> Potential causes:
> - A typo in the package name
> - The package is not available in a stable-enough version according to >> your minimum-stability setting
> see >> https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion for >> more details.
the require section of my composer.json is:
"require": {
"php": ">=5.3.1",
"symfony/css-selector": ">=2.0.0,<2.2.0-dev",
"behat/mink-goutte-driver": "*",
"behat/mink-sahi-driver": "*",
"behat/mink-selenium-driver": "*",
"behat/mink-selenium2-driver": "*",
"behat/mink-zombie-driver": "*",
"symfony/finder": ">=2.0.0,<2.2.0-dev"
},
I'm sure I am doing something stupid but not sure what. Any help is appreciated. Thanks
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
Marco Zanzottera <zanz... @gmail.com>
Date: Fri, 6 Jul 2012 15:58:12 +0200
Local: Fri, Jul 6 2012 9:58 am
Subject: Re: [composer-dev] Composer not finding packages that exist
Same problem for me:
How to replicate my problem:
*I add to composer.json*
"pickle/blog-bundle": "dev-master"
*Then, composer.phar update returns*
Updating dependencies
Your requirements could not be solved to an installable set of packages.
Problem 1
- Installation request for pickle/blog-bundle dev-master -> satisfiable
by pickle/blog-bundle dev-master.
- pickle/blog-bundle dev-master requires pickle/admin-bundle dev-master
-> no matching package found.
*But if I add to composer.json*
"pickle/admin-bundle": "dev-master",
"pickle/blog-bundle": "dev-master"
*all works fine.*
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
Nils Adermann <nader... @naderman.de>
Date: Fri, 06 Jul 2012 16:04:57 +0200
Local: Fri, Jul 6 2012 10:04 am
Subject: Re: [composer-dev] Composer not finding packages that exist
Hey,
Please see this previous announcement about minimum stability:
https://groups.google.com/d/msg/composer-dev/_g3ASeIFlrc/Lu537ZXuOLgJ
You are both installing packages with dependencies on dev packages. You
need to either change your minimum-stability to dev (old behaviour) or
explicitly mark packages you would like to install in a dev version.
This happens automatically be requiring a dev version, e.g. dev-master,
and can alternatively be done by adding @dev to the version constraint.
The default behaviour is now to ignore unstable packages, hence you are
getting those errors.
Documentation of minimum-stability is available at
http://getcomposer.org/doc/04-schema.md#minimum-stability
Cheers,
Nils
On 07/06/2012 03:58 PM, Marco Zanzottera wrote:
> Same problem for me:
> How to replicate my problem:
> *I add to composer.json*
> "pickle/blog-bundle": "dev-master"
> *Then, composer.phar update returns*
> Updating dependencies
> Your requirements could not be solved to an installable set of packages.
> Problem 1
> - Installation request for pickle/blog-bundle dev-master ->
> satisfiable by pickle/blog-bundle dev-master.
> - pickle/blog-bundle dev-master requires pickle/admin-bundle
> dev-master -> no matching package found.
> *But if I add to composer.json*
> "pickle/admin-bundle": "dev-master",
> "pickle/blog-bundle": "dev-master"
> *all works fine.*
> -- > You received this message because you are subscribed to the
> "composer-dev" group.
> To post to this group, send email to composer-dev@googlegroups.com
> To unsubscribe from this group, send email to
> composer-dev+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/composer-dev?hl=en
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
Marco Zanzottera <zanz... @gmail.com>
Date: Fri, 6 Jul 2012 16:21:31 +0200
Local: Fri, Jul 6 2012 10:21 am
Subject: Re: [composer-dev] Composer not finding packages that exist
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
adeduke <adrian.d... @openeyes.org.uk>
Date: Fri, 6 Jul 2012 07:31:54 -0700 (PDT)
Local: Fri, Jul 6 2012 10:31 am
Subject: Re: Composer not finding packages that exist
Thanks Nils. If anyone has issues with Mink try the follow composer.json:
{
> "name": "behat/mink",
> "version": "1.4.0",
> "description": "Web acceptance testing framework for PHP 5.3",
> "keywords": ["web", "testing", "browser"],
> "homepage": "http://mink.behat.org/ ",
> "type": "library",
> "license": "MIT",
>> "authors": [
> {
> "name": "Konstantin Kudryashov",
> "email": "ever.... @gmail.com",
> "homepage": "http://everzet.com "
> }
> ],
>> "require": {
> "php": ">=5.3.1",
> "symfony/css-selector": ">=2.0.0,<2.2.0-dev"
> },
>> "require-dev": {
>> "behat/mink-sahi-driver": "*",
> "behat/mink-selenium-driver": "*",
> "behat/mink-selenium2-driver": "*",
> "behat/mink-zombie-driver": "*",
> "symfony/finder": ">=2.0.0,<2.2.0-dev"
> },
>> "minimum-stability" : "dev",
>> "suggest": {
> "behat/mink-goutte-driver": "to enable Goutte support",
> "behat/mink-sahi-driver": "to enable Sahi.JS support",
> "behat/mink-selenium-driver": "to enable Selenium1 support",
> "behat/mink-selenium2-driver": "to enable Selenium2 (webdriver >> support)",
> "behat/mink-zombie-driver": "to enable Zombie.js support"
> },
>> "autoload": {
> "psr-0": {
> "Behat\\Mink": "src/"
> }
> }
> }
Was unable to get goutte to install, but I only really needed web-driver.
On Friday, July 6, 2012 2:52:31 PM UTC+1, adeduke wrote:
> Hi All,
> Just started using composer to install Behat and Mink. Its giving me > problems on Mink about packages it can't find but I can see they are there > on both packagist and git. Its "Composer version 6adc81c", the ouput is:
> [ade:mink]((no branch))$ composer install
>> Installing dependencies
>> Your requirements could not be solved to an installable set of packages.
>>> Problem 1
>> - Installation request for behat/mink-zombie-driver * -> satisfiable >>> by behat/mink-zombie-driver v1.0.0.
>> - behat/mink-zombie-driver v1.0.0 requires symfony/process >>> >=2.1.0,<2.2.0-dev -> no matching package found.
>> Problem 2
>> - behat/mink-goutte-driver v1.0.3 requires fabpot/goutte @dev -> no >>> matching package found.
>> - behat/mink-goutte-driver v1.0.2 requires fabpot/goutte 1.0.*@dev -> >>> no matching package found.
>> - behat/mink-goutte-driver v1.0.1 requires fabpot/goutte 1.0.x-dev -> >>> no matching package found.
>> - behat/mink-goutte-driver v1.0.0 requires fabpot/goutte 1.0.* -> no >>> matching package found.
>> - Installation request for behat/mink-goutte-driver * -> satisfiable >>> by behat/mink-goutte-driver v1.0.0, behat/mink-goutte-driver v1.0.1, >>> behat/mink-goutte-driver v1.0.2, behat/mink-goutte-driver v1.0.3.
>>> Potential causes:
>> - A typo in the package name
>> - The package is not available in a stable-enough version according to >>> your minimum-stability setting
>> see >>> https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussionfor more details.
> the require section of my composer.json is:
> "require": {
> "php": ">=5.3.1",
> "symfony/css-selector": ">=2.0.0,<2.2.0-dev",
> "behat/mink-goutte-driver": "*",
> "behat/mink-sahi-driver": "*",
> "behat/mink-selenium-driver": "*",
> "behat/mink-selenium2-driver": "*",
> "behat/mink-zombie-driver": "*",
> "symfony/finder": ">=2.0.0,<2.2.0-dev"
> },
> I'm sure I am doing something stupid but not sure what. Any help is > appreciated. Thanks
You must
Sign in before you can post messages.
You do not have the permission required to post.