aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/plugin/plugin_events.rs
blob: ea7ad1091afdacea9789c9a773659005a1648a2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! ref: composer/src/Composer/Plugin/PluginEvents.php

pub struct PluginEvents;

impl PluginEvents {
    pub const INIT: &'static str = "init";
    pub const COMMAND: &'static str = "command";
    pub const PRE_FILE_DOWNLOAD: &'static str = "pre-file-download";
    pub const POST_FILE_DOWNLOAD: &'static str = "post-file-download";
    pub const PRE_COMMAND_RUN: &'static str = "pre-command-run";
    pub const PRE_POOL_CREATE: &'static str = "pre-pool-create";
}