update composer.json

This commit is contained in:
Daniel Seifert 2024-11-03 20:43:45 +01:00
parent 0b9d82b3fb
commit fcc5a36879
Signed by: DanielS
GPG Key ID: 6A513E13AEE66170
2 changed files with 33 additions and 8 deletions

View File

@ -1,12 +1,14 @@
# Deployer recipe for OXID 6.5.x + 7.x # Deployer recipe for OXID 7.x
This project uses [Deployer](https://deployer.org/) for scripted installation This project uses [Deployer](https://deployer.org/) for scripted installation.
The project can usually also be used for projects based on OXID 6.4 and 6.5.
### Server setup ### Server setup
Install [Composer](https://getcomposer.org/). Install [Composer](https://getcomposer.org/).
Run the command `composer create-project --dev d3/oxid-deployer-project deployer ^1.0` Run the command `composer create-project --no-dev d3/oxid-deployer-project deployer ^1.0`
After that, add an alias for the deployer command: `alias dep='/usr/local/php8.2/bin/php /home/XXX/deployer/vendor/bin/dep'` and reload the changed configuration. After that, add an alias for the deployer command: `alias dep='/usr/local/php8.2/bin/php /home/XXX/deployer/vendor/bin/dep'` and reload the changed configuration.

View File

@ -1,8 +1,31 @@
{ {
"name": "d3/oxid-deployer-project", "name": "d3/oxid-deployer-project",
"description": "Deployer project for OXID eShop",
"keywords": [
"deployer",
"deployment",
"project",
"OXID",
"eShop",
"d3"
],
"type": "project", "type": "project",
"license": "MIT", "license": "MIT",
"require-dev": { "homepage": "https://d3data.de/",
"d3/oxid-deployer": "^1.1" "authors": [
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
"homepage": "https://www.d3data.de",
"role": "Owner"
}
],
"require": {
"d3/oxid-deployer": "^1.0"
},
"autoload": {
"psr-4": {
"D3\\OxidDeployerProject\\": "."
}
} }
} }