Add post-autoload-dump event to docs/schema
parent
8d55b9cced
commit
8518cd1be8
|
@ -30,6 +30,8 @@ Composer fires the following named events during its execution process:
|
|||
- **post-package-update**: occurs after a package is updated.
|
||||
- **pre-package-uninstall**: occurs before a package has been uninstalled.
|
||||
- **post-package-uninstall**: occurs after a package has been uninstalled.
|
||||
- **post-autoload-dump**: occurs after the autoloader is dumped, either
|
||||
during `install`/`update`, or via the `dump-autoload` command.
|
||||
|
||||
|
||||
## Defining scripts
|
||||
|
|
|
@ -223,43 +223,47 @@
|
|||
"properties": {
|
||||
"pre-install-cmd": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs before the install command is executed, contains one or more Class::method callables."
|
||||
"description": "Occurs before the install command is executed, contains one or more Class::method callables or shell commands."
|
||||
},
|
||||
"post-install-cmd": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs after the install command is executed, contains one or more Class::method callables."
|
||||
"description": "Occurs after the install command is executed, contains one or more Class::method callables or shell commands."
|
||||
},
|
||||
"pre-update-cmd": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs before the update command is executed, contains one or more Class::method callables."
|
||||
"description": "Occurs before the update command is executed, contains one or more Class::method callables or shell commands."
|
||||
},
|
||||
"post-update-cmd": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs after the update command is executed, contains one or more Class::method callables."
|
||||
"description": "Occurs after the update command is executed, contains one or more Class::method callables or shell commands."
|
||||
},
|
||||
"pre-package-install": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs before a package is installed, contains one or more Class::method callables."
|
||||
"description": "Occurs before a package is installed, contains one or more Class::method callables or shell commands."
|
||||
},
|
||||
"post-package-install": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs after a package is installed, contains one or more Class::method callables."
|
||||
"description": "Occurs after a package is installed, contains one or more Class::method callables or shell commands."
|
||||
},
|
||||
"pre-package-update": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs before a package is updated, contains one or more Class::method callables."
|
||||
"description": "Occurs before a package is updated, contains one or more Class::method callables or shell commands."
|
||||
},
|
||||
"post-package-update": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs after a package is updated, contains one or more Class::method callables."
|
||||
"description": "Occurs after a package is updated, contains one or more Class::method callables or shell commands."
|
||||
},
|
||||
"pre-package-uninstall": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs before a package has been uninstalled, contains one or more Class::method callables."
|
||||
"description": "Occurs before a package has been uninstalled, contains one or more Class::method callables or shell commands."
|
||||
},
|
||||
"post-package-uninstall": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs after a package has been uninstalled, contains one or more Class::method callables."
|
||||
"description": "Occurs after a package has been uninstalled, contains one or more Class::method callables or shell commands."
|
||||
},
|
||||
"post-autoload-dump": {
|
||||
"type": ["array", "string"],
|
||||
"description": "Occurs after a the autoloader is dumped, contains one or more Class::method callables or shell commands."
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue