1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
use clap::Args;
#[derive(Args)]
pub struct InstallArgs {
/// Package(s) to install
pub packages: Vec<String>,
/// Forces installation from package sources when possible
#[arg(long)]
pub prefer_source: bool,
/// Forces installation from package dist
#[arg(long)]
pub prefer_dist: bool,
/// Forces usage of a specific install method (dist, source, auto)
#[arg(long)]
pub prefer_install: Option<String>,
/// Only output what would be changed, do not modify files
#[arg(long)]
pub dry_run: bool,
/// Only download packages, do not install
#[arg(long)]
pub download_only: bool,
/// [Deprecated] Enables installation of require-dev packages
#[arg(long)]
pub dev: bool,
/// Disables installation of require-dev packages
#[arg(long)]
pub no_dev: bool,
/// Do not block on security advisories
#[arg(long)]
pub no_security_blocking: bool,
/// Skips autoloader generation
#[arg(long)]
pub no_autoloader: bool,
/// Do not output download progress
#[arg(long)]
pub no_progress: bool,
/// Skip the install step
#[arg(long)]
pub no_install: bool,
/// [Deprecated] Do not show install suggestions
#[arg(long)]
pub no_suggest: bool,
/// Run audit after installation
#[arg(long)]
pub audit: bool,
/// Audit output format
#[arg(long)]
pub audit_format: Option<String>,
/// Optimizes PSR-0 and PSR-4 packages to be loaded with classmaps
#[arg(short, long)]
pub optimize_autoloader: bool,
/// Autoload classes from the classmap only
#[arg(short = 'a', long)]
pub classmap_authoritative: bool,
/// Use APCu to cache found/not-found classes
#[arg(long)]
pub apcu_autoloader: bool,
/// Use a custom prefix for the APCu autoloader cache
#[arg(long)]
pub apcu_autoloader_prefix: Option<String>,
/// Ignore a specific platform requirement
#[arg(long)]
pub ignore_platform_req: Vec<String>,
/// Ignore all platform requirements
#[arg(long)]
pub ignore_platform_reqs: bool,
}
pub fn execute(_args: &InstallArgs) {
todo!()
}
|