mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
42 lines
656 B
Plaintext
42 lines
656 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pecl
|
|
|
|
> Manage PHP extensions from the PHP Extension Community Library.
|
|
> More information: <https://manned.org/pecl>.
|
|
|
|
- Display a list of available commands:
|
|
|
|
`pecl`
|
|
|
|
- Install a package:
|
|
|
|
`pecl install {{package}}`
|
|
|
|
- List installed packages:
|
|
|
|
`pecl list`
|
|
|
|
- Upgrade all packages:
|
|
|
|
`pecl upgrade`
|
|
|
|
- Upgrade a specific package:
|
|
|
|
`pecl upgrade {{package}}`
|
|
|
|
- Uninstall a specific package:
|
|
|
|
`pecl uninstall {{package}}`
|
|
|
|
- Display information about a specific package:
|
|
|
|
`pecl info {{package}}`
|
|
|
|
- Update the available package sources:
|
|
|
|
`pecl update-channels`
|