wp-cli / php-cli-tools

A collection of tools to help with PHP command line utilities
MIT License
672 stars 118 forks source link

v0.9.4 removed from packagist? #47

Closed jeremykendall closed 10 years ago

jeremykendall commented 10 years ago

My Travis builds errored this morning because it couldn't find v0.9.4 when running composer update --prefer-source. I may be misreading something, but it looks like v0.9.4 is no longer available on the php-cli-tools Packagist page. Any ideas?

Here is the error from Travis:

$ composer update --prefer-source
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 wp-cli/php-cli-tools could not be found in any version, there may be a typo in the package name.
  Problem 2
    - Installation request for jeremykendall/slim-auth dev-develop -> satisfiable by jeremykendall/slim-auth[dev-develop].
    - jeremykendall/slim-auth dev-develop requires wp-cli/php-cli-tools v0.9.4 -> no matching package found.
  Problem 3
    - jeremykendall/password-validator dev-master requires wp-cli/php-cli-tools v0.9.4 -> no matching package found.
    - jeremykendall/password-validator dev-feature/coveralls requires wp-cli/php-cli-tools v0.9.4 -> no matching package found.
    - jeremykendall/password-validator dev-dead-feature/phpass-implementation requires wp-cli/php-cli-tools v0.9.4 -> no matching package found.
    - jeremykendall/password-validator 2.0.2-beta requires wp-cli/php-cli-tools v0.9.4 -> no matching package found.
    - jeremykendall/password-validator 2.0.1-beta requires wp-cli/php-cli-tools v0.9.4 -> no matching package found.
    - jeremykendall/password-validator 2.0.0-beta requires wp-cli/php-cli-tools v0.9.4 -> no matching package found.
    - jeremykendall/password-validator 1.1.0-beta requires wp-cli/php-cli-tools v0.9.4 -> no matching package found.
    - jeremykendall/password-validator 1.0.0-beta requires wp-cli/php-cli-tools v0.9.4 -> no matching package found.
    - jeremykendall/password-validator dev-develop requires wp-cli/php-cli-tools v0.9.4 -> no matching package found.
    - Installation request for jeremykendall/password-validator @dev -> satisfiable by jeremykendall/password-validator[1.0.0-beta, 1.1.0-beta, 2.0.0-beta, 2.0.1-beta, 2.0.2-beta, dev-dead-feature/phpass-implementation, dev-develop, dev-feature/coveralls, dev-master].

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.

Read <http://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.

The command "composer update --prefer-source" failed and exited with 2 during before_script.

Your build has been stopped.

Here is a copy of my composer.json:

{
    "name": "jeremykendall/flaming-archer",
    "description": "A photo 365 project application. Requires user to have a Flickr API key",
    "license": "MIT",
    "authors": [
        {
            "name": "Jeremy Kendall",
            "homepage": "http://about.me/jeremykendall",
            "role": "Developer"
        }
    ],
    "keywords": [
        "photography",
        "flickr",
        "photo-a-day",
        "photo 365"
    ],
    "repositories": [
        {
            "type": "composer",
            "url": "http://packages.zendframework.com/"
        }
    ],
    "require": {
        "php": ">=5.4",
        "ext-mcrypt": "*",
        "doctrine/common": "~2.4",
        "guzzle/guzzle": "~3.8",
        "ircmaxell/password-compat": "1.*",
        "jeremykendall/slim-auth": "dev-develop",
        "jeremykendall/password-validator": "@dev",
        "monolog/monolog": "1.*",
        "pimple/pimple": "v1.0.2",
        "slim/slim": "~2.4",
        "slim/views": "0.1.*",
        "symfony/event-dispatcher": "2.3.*",
        "twig/twig": "1.13.*",
        "wp-cli/php-cli-tools": "v0.9.4",
        "zendframework/zend-authentication": "2.2.*",
        "zendframework/zend-cache": "2.2.*",
        "zendframework/zend-config": "2.2.*",
        "zendframework/zend-feed": "2.2.*",
        "zendframework/zend-inputfilter": "2.2.*",
        "zendframework/zend-paginator": "2.2.*",
        "zendframework/zend-serializer": "2.2.*",
        "zendframework/zend-session": "2.2.*"
    },
    "require-dev": {
        "composer/composer": "1.0.*@dev",
        "mikey179/vfsStream": "1.2.*",
        "mockery/mockery": "0.8.0",
        "jeremykendall/phpctagger": "dev-master",
        "phpunit/phpunit": "3.7.*",
        "whatthejeff/nyancat-phpunit-resultprinter": "v1.2.0"
    },
    "autoload": {
        "psr-0": {
            "FA": "src/"
        }
    },
    "scripts": {
        "post-install-cmd": [
            "FA\\Composer\\Script\\SQLite::prepare"
        ],
        "post-update-cmd": [
            "rm -rf templates/cache/*"
        ]
    }
}
danielbachhuber commented 10 years ago

Seems to be fine:

image