An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Pimcore v4 to v5 Migration Tools

[![Build Status](https://travis-ci.org/pimcore/pimcore-cli.svg?branch=master)](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)
```