https://github.com/pimcore/pimcore-cli
A collection of command line tools for migrating from Pimcore 4 to Pimcore 5
https://github.com/pimcore/pimcore-cli
cli migration pimcore upgrade
Last synced: 5 months ago
JSON representation
A collection of command line tools for migrating from Pimcore 4 to Pimcore 5
- Host: GitHub
- URL: https://github.com/pimcore/pimcore-cli
- Owner: pimcore
- License: other
- Archived: true
- Created: 2017-04-14T13:08:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-01-27T08:29:06.000Z (over 6 years ago)
- Last Synced: 2023-08-21T13:45:01.641Z (almost 3 years ago)
- Topics: cli, migration, pimcore, upgrade
- Language: PHP
- Homepage:
- Size: 236 KB
- Stars: 9
- Watchers: 16
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Pimcore v4 to v5 Migration Tools
[](https://travis-ci.org/pimcore/pimcore-cli)
## Download
You can download the latest release as PHAR from the [Releases Page](https://github.com/pimcore/pimcore-cli/releases).
## Documentation
* [Pimcore 5 Migration](./doc/pimcore_5_migration.md)
## Shell completion
The package is using [stecman/symfony-console-completion](https://github.com/stecman/symfony-console-completion) to provide
shell completion. To have your shell complete commands, arguments and options, you need to run the following in your
shell:
```
# BASH ~4.x, ZSH
source <(pimcore.phar _completion --generate-hook)
# BASH ~3.x, ZSH
pimcore.phar _completion --generate-hook | source /dev/stdin
# BASH (any version)
eval $(pimcore.phar _completion --generate-hook)
```