composer.json added, folder structure changed
This commit is contained in:
parent
7d9c9a9837
commit
f9fd93c7e3
@ -1,16 +1,23 @@
|
||||
Hinweise zur Benutzung und Konfiguration sind in der Metadata-Modulbeschreibung enthalten.
|
||||
Diese können nach Installation im Backend des OXID-Shops unter "Erweiterungen -> Module" eingesehen werden.
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
=> 1.2.0.0
|
||||
- Dokuemntation ergänzt
|
||||
## Unreleased
|
||||
|
||||
## 1.2.0.0
|
||||
### Added
|
||||
- Mail-Anzeige fordert zusätzlich Authentfikation mit einem Shopadmin-Konto
|
||||
- Seitenencoding definiert
|
||||
|
||||
=> 1.1.0.0
|
||||
### Changed
|
||||
- Dokumentation ergänzt
|
||||
|
||||
## 1.1.0.0
|
||||
### Added
|
||||
- Mailversand übers Shopframework wird blockiert oder
|
||||
- Mails werden an alternative Mailadresse umgeleitet
|
||||
|
||||
=> 1.0.0.0
|
||||
## 1.0.0.0
|
||||
### Added
|
||||
- unterbindet das Löschen des Warenkorbs nach Bestellabschluss
|
||||
- Thankyou ist ohne Bestellabschluss aufrufbar (unter Angabe der Bestellnummer auch für eine bestimmte Bestellung)
|
||||
- Bestellbestätigungsmails und (sofern D3-Modul installiert) Anfragebestätigungsmails sind im Browser darstellbar (unter Angabe der Bestellnummer auch für eine bestimmte Bestellung)
|
41
composer.json
Normal file
41
composer.json
Normal file
@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "d3/devhelper",
|
||||
"description": "Manipulate shop standard processes for easier development",
|
||||
"type": "oxideshop-module",
|
||||
"keywords": [
|
||||
"oxid",
|
||||
"modules",
|
||||
"eShop",
|
||||
"d3",
|
||||
"devhelper",
|
||||
"developer",
|
||||
"development",
|
||||
"tools"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "D3 Data Development (Inh. Thomas Dartsch)",
|
||||
"email": "info@shopmodule.com",
|
||||
"homepage": "http://www.d3data.de"
|
||||
}
|
||||
],
|
||||
"homepage": "https://www.oxidmodule.com/",
|
||||
"license": [
|
||||
"proprietary"
|
||||
],
|
||||
"extra": {
|
||||
"oxideshop": {
|
||||
"source-directory": "/src",
|
||||
"target-directory": "d3/devhelper"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.6",
|
||||
"oxid-esales/oxideshop-ce": "6.0 - 6.1",
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"D3\\Devhelper\\": "../../../source/modules/d3/devhelper"
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 151 KiB After Width: | Height: | Size: 151 KiB |
Before Width: | Height: | Size: 145 KiB After Width: | Height: | Size: 145 KiB |
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 134 KiB |
@ -4,7 +4,7 @@ use OxidEsales\Eshop\Core\Registry;
|
||||
/**
|
||||
* Metadata version
|
||||
*/
|
||||
$sMetadataVersion = '1.1';
|
||||
$sMetadataVersion = '2.0';
|
||||
|
||||
$sStyle = class_exists('d3dev') ? "background-color: darkred; color: white; padding: 0 10px;" : "";
|
||||
|
||||
@ -59,8 +59,8 @@ $aModule = array(
|
||||
'oxbasket' => 'd3/d3dev/modules/models/d3_dev_oxbasket',
|
||||
'oxbasketitem' => 'd3/d3dev/modules/models/d3_dev_oxbasketitem',
|
||||
),
|
||||
'files' => array(
|
||||
'd3dev' => 'd3/d3dev/controllers/d3dev.php',
|
||||
'controllers' => array(
|
||||
'd3dev' => \D3\Devhelper\Application\Controller\d3dev,
|
||||
),
|
||||
'templates' => array(
|
||||
),
|
Loading…
Reference in New Issue
Block a user