From 7e4979ec0976b6ee1b469898f738b1e67fee301b Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Fri, 16 Feb 2018 13:44:24 -0800 Subject: [PATCH] Set phan-taint-check-plugin version in composer.json We cannot set this in the normal "require-dev" because the plugin depends on exactly PHP 7.0, preventing running tests on any other PHP version. Instead, CI will read the version number out of the "extra" field to figure out what version to install. Bug: T187497 Change-Id: Iaf8ac7bfde148db48bb0cc83edd2f5e506a9ef06 --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index 03040d3b..ae4039fa 100644 --- a/composer.json +++ b/composer.json @@ -15,5 +15,8 @@ "phpcs -p -s", "minus-x check ." ] + }, + "extra": { + "phan-taint-check-plugin": "1.1.0" } }