2022-06-28 09:14:15 +02:00
|
|
|
[![deutsche Version](https://logos.oxidmodule.com/de2_xs.svg)](README.de.md)
|
|
|
|
[![english version](https://logos.oxidmodule.com/en2_xs.svg)](README.md)
|
2021-01-21 21:46:29 +01:00
|
|
|
|
2022-06-28 09:14:15 +02:00
|
|
|
# permanently removing the developer package when they aren't needed
|
2021-01-21 21:46:29 +01:00
|
|
|
|
2022-06-28 09:14:15 +02:00
|
|
|
This package removes the unused OXID development package from the shop and prevents conflicts in later updates or installations.
|
|
|
|
|
|
|
|
Even if the --no-dev/--update-no-dev parameters are forgotten, no developer packages will be installed.
|
2021-01-21 21:46:29 +01:00
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
if the development tools are not used and should be removed from the shop installation
|
|
|
|
|
2022-06-28 09:14:15 +02:00
|
|
|
* Run these composer commands in the console of your shop project. Adjust this instruction if your installation requires it.
|
2021-01-21 21:46:29 +01:00
|
|
|
|
2021-01-22 11:44:01 +01:00
|
|
|
```
|
2021-08-11 15:15:24 +02:00
|
|
|
composer require d3/oxid-dev-replacement --no-scripts --no-plugins
|
2021-01-22 11:44:01 +01:00
|
|
|
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
|
|
|
|
|
2022-06-28 09:14:15 +02:00
|
|
|
* Run this composer command in the console of your shop project. Adjust this instruction if your installation requires it.
|
2021-01-21 21:46:29 +01:00
|
|
|
|
2021-01-27 16:52:56 +01:00
|
|
|
`composer remove d3/oxid-dev-replacement`
|