mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
610 B
Plaintext
34 lines
610 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pie
|
|
|
|
> The PHP Installer for Extensions.
|
|
> More information: <https://github.com/php/pie/blob/1.4.x/docs/usage.md>.
|
|
|
|
- Install or update an extension:
|
|
|
|
`pie install {{vendor}}/{{extension}}`
|
|
|
|
- List installed extensions and their versions:
|
|
|
|
`pie show`
|
|
|
|
- Display information about a specific package:
|
|
|
|
`pie info {{vendor}}/{{extension}}`
|
|
|
|
- List the configured repositories:
|
|
|
|
`pie repository:list`
|
|
|
|
- Add a repository:
|
|
|
|
`pie repository:add {{type}} {{url}}`
|
|
|
|
- Remove a repository:
|
|
|
|
`pie repository:remove {{url}}`
|