You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'The PIE package name and version constraint to use, in the format {vendor/package}{?:{?version-constraint}{?@stability}}, for example `xdebug/xdebug:^3.4@alpha`, `xdebug/xdebug:@alpha`, `xdebug/xdebug:^3.4`, etc.',
82
-
);
79
+
if ($withRequestedPackageAndVersion) {
80
+
$command->addArgument(
81
+
self::ARG_REQUESTED_PACKAGE_AND_VERSION,
82
+
InputArgument::OPTIONAL,
83
+
'The PIE package name and version constraint to use, in the format {vendor/package}{?:{?version-constraint}{?@stability}}, for example `xdebug/xdebug:^3.4@alpha`, `xdebug/xdebug:@alpha`, `xdebug/xdebug:^3.4`, etc.',
84
+
);
85
+
}
86
+
83
87
$command->addOption(
84
88
self::OPTION_MAKE_PARALLEL_JOBS,
85
89
'j',
@@ -99,6 +103,13 @@ public static function configureDownloadBuildInstallOptions(Command $command): v
99
103
'To attempt to install a version that doesn\'t match the version constraints from the meta-data, for instance to install an older version than recommended, or when the signature is not available.',
100
104
);
101
105
106
+
$command->addOption(
107
+
self::OPTION_WORKING_DIRECTORY,
108
+
'd',
109
+
InputOption::VALUE_REQUIRED,
110
+
'The working directory to use, where applicable. If not specified, the current working directory is used. Only used in certain contexts.',
0 commit comments