This repository was archived by the owner on Dec 13, 2019. It is now read-only.
Description composer install give me this errors:
Problem 1 - Installation request for phpunit/php-code-coverage 1.3.x-dev -> satisfiable by phpunit/php-code-coverage[1.3.x-dev]. - phpunit/php-code-coverage 1.3.x-dev requires php >=5.4.7 -> no matching package found. Problem 2 - Installation request for phpunit/php-code-coverage dev-master -> satisfiable by phpunit/php-code-coverage[dev-master]. - phpunit/php-code-coverage dev-master requires php >=5.4.7 -> no matching package found. Problem 3 - Installation request for phpunit/phpunit 3.8.x-dev -> satisfiable by phpunit/phpunit[3.8.x-dev]. - phpunit/phpunit 3.8.x-dev requires php >=5.4.7 -> no matching package found. Problem 4 - Installation request for phpunit/phpunit dev-master -> satisfiable by phpunit/phpunit[dev-master]. - phpunit/phpunit dev-master requires php >=5.4.7 -> no matching package found. Problem 5 - Installation request for phpunit/phpunit-mock-objects 1.3.x-dev -> satisfiable by phpunit/phpunit-mock-objects[1.3.x-dev]. - phpunit/phpunit-mock-objects 1.3.x-dev requires php >=5.4.7 -> no matching package found. Problem 6 - Installation request for phpunit/phpunit-mock-objects dev-master -> satisfiable by phpunit/phpunit-mock-objects[dev-master]. - phpunit/phpunit-mock-objects dev-master requires php >=5.4.7 -> no matching package found.
After change from
"require-dev": {
"phpunit/phpunit": "dev-master"
}
to
require-dev": {
"phpunit/phpunit": "3.7.*"
}
it works - maybe the composer.json should updated?
Reactions are currently unavailable
composer install give me this errors:
Problem 1 - Installation request for phpunit/php-code-coverage 1.3.x-dev -> satisfiable by phpunit/php-code-coverage[1.3.x-dev]. - phpunit/php-code-coverage 1.3.x-dev requires php >=5.4.7 -> no matching package found. Problem 2 - Installation request for phpunit/php-code-coverage dev-master -> satisfiable by phpunit/php-code-coverage[dev-master]. - phpunit/php-code-coverage dev-master requires php >=5.4.7 -> no matching package found. Problem 3 - Installation request for phpunit/phpunit 3.8.x-dev -> satisfiable by phpunit/phpunit[3.8.x-dev]. - phpunit/phpunit 3.8.x-dev requires php >=5.4.7 -> no matching package found. Problem 4 - Installation request for phpunit/phpunit dev-master -> satisfiable by phpunit/phpunit[dev-master]. - phpunit/phpunit dev-master requires php >=5.4.7 -> no matching package found. Problem 5 - Installation request for phpunit/phpunit-mock-objects 1.3.x-dev -> satisfiable by phpunit/phpunit-mock-objects[1.3.x-dev]. - phpunit/phpunit-mock-objects 1.3.x-dev requires php >=5.4.7 -> no matching package found. Problem 6 - Installation request for phpunit/phpunit-mock-objects dev-master -> satisfiable by phpunit/phpunit-mock-objects[dev-master]. - phpunit/phpunit-mock-objects dev-master requires php >=5.4.7 -> no matching package found.After change from
to
it works - maybe the composer.json should updated?