1
0
Fork 0
composer/tests/Composer/Test/Fixtures/installer/github-issues-4319.test

46 lines
1006 B
Plaintext
Raw Normal View History

2016-02-05 10:39:14 +00:00
--TEST--
See Github issue #4319 ( github.com/composer/composer/issues/4319 ).
Present a clear error message when config.platform.php version results in a conflict rule.
--CONDITION--
!defined('HHVM_VERSION')
--COMPOSER--
{
"repositories": [
{
"type": "package",
"package": [
{ "name": "a/a", "version": "1.0.0", "require": { "php": "5.5" } }
2016-02-05 10:39:14 +00:00
]
}
],
"require": {
"a/a": "~1.0"
2016-02-05 10:39:14 +00:00
},
"config": {
"platform": {
"php": "5.3"
}
}
}
--RUN--
install
--EXPECT-OUTPUT--
Loading composer repositories with package information
Updating dependencies
2016-02-05 10:39:14 +00:00
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for a/a ~1.0 -> satisfiable by a/a[1.0.0].
- a/a 1.0.0 requires php 5.5 -> your PHP version (%s) overridden by "config.platform.php" version (5.3) does not satisfy that requirement.
2016-02-05 10:39:14 +00:00
--EXPECT--
--EXPECT-EXIT-CODE--
2