2021-01-21 21:46:29 +01:00
|
|
|
# Development package replacement if dev tools are not used
|
|
|
|
|
|
|
|
This package removes the unused OXID development package from the shop and prevents conflicts in later updates.
|
|
|
|
|
|
|
|
Also, if the --no-dev/--update-no-dev parameter is forgotten, not all developer packages will be installed.
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
if the development tools are not used and should be removed from the shop installation
|
|
|
|
|
|
|
|
* Run this composer statement in your shop. Adjust this instruction if your installation requires it.
|
|
|
|
|
2021-01-22 11:44:01 +01:00
|
|
|
```
|
|
|
|
composer require d3/oxid-dev-replacement --dev
|
|
|
|
composer remove phpunit/phpcov pdepend/pdepend behat/mink-goutte-driver oxid-esales/mink-selenium-driver squizlabs/php_codesniffer mikey179/vfsstream
|
|
|
|
```
|
|
|
|
|
2021-01-21 21:46:29 +01:00
|
|
|
|
|
|
|
## Uninstall
|
|
|
|
|
|
|
|
if the dev tools are to be used again
|
|
|
|
|
|
|
|
* Run this composer statement in your shop. Adjust this instruction if your installation requires it.
|
|
|
|
|
2021-01-22 11:44:01 +01:00
|
|
|
`composer remove d3/oxid-dev-replacement --dev`
|