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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
use clap::Args;
#[derive(Args)]
pub struct CreateProjectArgs {
/// Package name to install
pub package: Option<String>,
/// Directory to create the project in
pub directory: Option<String>,
/// Version constraint
pub version: Option<String>,
/// Minimum stability (stable, RC, beta, alpha, dev)
#[arg(short, long)]
pub stability: Option<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>,
/// Add a custom repository to discover the package
#[arg(long)]
pub repository: Vec<String>,
/// [Deprecated] Use --repository instead
#[arg(long)]
pub repository_url: Option<String>,
/// Add the repository to the composer.json
#[arg(long)]
pub add_repository: bool,
/// Install require-dev packages
#[arg(long)]
pub dev: bool,
/// Disables installation of require-dev packages
#[arg(long)]
pub no_dev: bool,
/// [Deprecated] Use --no-plugins instead
#[arg(long)]
pub no_custom_installers: bool,
/// Skips execution of scripts defined in composer.json
#[arg(long)]
pub no_scripts: bool,
/// Do not output download progress
#[arg(long)]
pub no_progress: bool,
/// Disable HTTPS and allow HTTP
#[arg(long)]
pub no_secure_http: bool,
/// Keep the VCS metadata
#[arg(long)]
pub keep_vcs: bool,
/// Force removal of the VCS metadata
#[arg(long)]
pub remove_vcs: bool,
/// Skip the install step after project creation
#[arg(long)]
pub no_install: bool,
/// Skip the audit step after installation
#[arg(long)]
pub no_audit: bool,
/// Audit output format
#[arg(long)]
pub audit_format: Option<String>,
/// Do not block on security advisories
#[arg(long)]
pub no_security_blocking: bool,
/// Ignore a specific platform requirement
#[arg(long)]
pub ignore_platform_req: Vec<String>,
/// Ignore all platform requirements
#[arg(long)]
pub ignore_platform_reqs: bool,
/// Interactive package resolution
#[arg(long)]
pub ask: bool,
}
pub fn execute(_args: &CreateProjectArgs) {
todo!()
}
|