Commits auf Quelle (172)
- 72 additional commits have been omitted to prevent performance issues.
- .gitattributes 15 Ergänzungen, 0 Löschungen.gitattributes
- .gitignore 8 Ergänzungen, 0 Löschungen.gitignore
- .gitlab-ci.yml 16 Ergänzungen, 2 Löschungen.gitlab-ci.yml
- .phive/phars.xml 8 Ergänzungen, 0 Löschungen.phive/phars.xml
- CONTRIBUTING.md 3 Ergänzungen, 0 LöschungenCONTRIBUTING.md
- bin/css/buttons.css 2 Ergänzungen, 7 Löschungenbin/css/buttons.css
- bin/css/form.css 22 Ergänzungen, 1 Löschungbin/css/form.css
- bin/css/frontend-users.css 36 Ergänzungen, 163 Löschungenbin/css/frontend-users.css
- bin/css/mini-basket.css 1 Ergänzung, 0 Löschungenbin/css/mini-basket.css
- bin/css/order.css 34 Ergänzungen, 79 Löschungenbin/css/order.css
- bin/css/style.css 14 Ergänzungen, 5 Löschungenbin/css/style.css
- bin/css/user-orders.css 0 Ergänzungen, 198 Löschungenbin/css/user-orders.css
- bin/css/variables.css 8 Ergänzungen, 0 Löschungenbin/css/variables.css
- bin/javascript/init.js 2 Ergänzungen, 2 Löschungenbin/javascript/init.js
- captainhook.json 13 Ergänzungen, 0 Löschungencaptainhook.json
- composer.json 79 Ergänzungen, 36 Löschungencomposer.json
- events.xml 1 Ergänzung, 0 Löschungenevents.xml
- index.html 10 Ergänzungen, 10 Löschungenindex.html
- index.php 13 Ergänzungen, 4 Löschungenindex.php
- layout/leftSidebar.html 2 Ergänzungen, 2 Löschungenlayout/leftSidebar.html
.gitattributes
0 → 100644
.gitignore
0 → 100644
.phive/phars.xml
0 → 100644
CONTRIBUTING.md
0 → 100644
bin/css/user-orders.css
gelöscht
100644 → 0
captainhook.json
0 → 100644
{ | ||
"name": "quiqqer/template-cologne", | ||
"type": "quiqqer-template", | ||
"description": "The QUIQQER Cologne E-Commerce Template", | ||
"license": "GPLv3", | ||
"authors": [ | ||
{ | ||
"name": "Henning Leutz", | ||
"email": "support@pcsg.de", | ||
"homepage": "https://www.pcsg.de", | ||
"role": "Developer" | ||
"name": "quiqqer/template-cologne", | ||
"type": "quiqqer-template", | ||
"description": "The QUIQQER Cologne E-Commerce Template", | ||
"license": "GPLv3", | ||
"authors": [ | ||
{ | ||
"name": "Henning Leutz", | ||
"email": "support@pcsg.de", | ||
"homepage": "https://www.pcsg.de", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"email": "support@pcsg.de", | ||
"url": "https://www.pcsg.de" | ||
}, | ||
"require": { | ||
"php": "^8.1", | ||
"quiqqer/core": "^2", | ||
"quiqqer/erp": "^3", | ||
"quiqqer/products": "^2", | ||
"quiqqer/order": "^2.7.24", | ||
"quiqqer/product-bricks": "^2", | ||
"quiqqer/frontend-users": "^2", | ||
"quiqqer/menu": "^3", | ||
"quiqqer/sitetypes": "^2", | ||
"quiqqer/unsemantic": "^2", | ||
"quiqqer-asset/fastclick": "^1", | ||
"quiqqer/tooltips": "^2", | ||
"quiqqer/currency": "^2", | ||
"quiqqer/smarty4": "^2.0.7" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"QUI\\TemplateCologne\\": "src/QUI/TemplateCologne" | ||
} | ||
}, | ||
"scripts": { | ||
"test": [ | ||
"@dev:lint", | ||
"@dev:phpunit" | ||
], | ||
"dev:phpunit": "./tools/phpunit", | ||
"dev:lint": [ | ||
"@dev:lint:phpstan", | ||
"@dev:lint:style" | ||
], | ||
"dev:lint:phpstan": "./tools/phpstan", | ||
"dev:lint:style": "./tools/phpcs", | ||
"dev:lint:style:fix": "./tools/phpcbf", | ||
"dev:init": [ | ||
"@dev:init:check-requirements", | ||
"@dev:init:tools", | ||
"@dev:init:git-hooks" | ||
], | ||
"dev:init:check-requirements": [ | ||
"which composer > /dev/null || (echo 'Error: composer has to be globally installed'; exit 1)", | ||
"which phive > /dev/null || (echo 'Error: PHIVE has to be globally installed'; exit 1)" | ||
], | ||
"dev:init:tools": "phive install --temporary", | ||
"dev:init:git-hooks": "./tools/captainhook install --only-enabled --force" | ||
}, | ||
"scripts-aliases": { | ||
"test": [ | ||
"dev:test" | ||
] | ||
}, | ||
"scripts-descriptions": { | ||
"test": "Runs linting, static analysis, and unit tests.", | ||
"dev:phpunit": "Run PHPUnit test suites", | ||
"dev:lint": "Run PHPStan and code style check", | ||
"dev:lint:phpstan": "Run PHPStan", | ||
"dev:lint:style": "Run code style check (PHP_CodeSniffer)", | ||
"dev:lint:style:fix": "Try to fix code style errors automatically", | ||
"dev:init": "Initialize the developer tooling (tools and git hooks)", | ||
"dev:init:check-requirements": "Check if the necessary requirements are met", | ||
"dev:init:tools": "Install all developer tools (requires PHIVE)", | ||
"dev:init:git-hooks": "Install all git hooks (may require tools to be installed)" | ||
} | ||
], | ||
"support": { | ||
"email": "support@pcsg.de", | ||
"url": "https://www.pcsg.de" | ||
}, | ||
"require": { | ||
"php": "^8.1", | ||
"quiqqer/core": "^2", | ||
"quiqqer/erp": "^3", | ||
"quiqqer/products": "^2", | ||
"quiqqer/order": "^2", | ||
"quiqqer/product-bricks": "^2", | ||
"quiqqer/frontend-users": "^2", | ||
"quiqqer/menu": "^3", | ||
"quiqqer/sitetypes": "^2", | ||
"quiqqer/unsemantic": "^2", | ||
"quiqqer-asset/fastclick": "^1", | ||
"quiqqer/tooltips": "^2", | ||
"quiqqer/currency": "^2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"QUI\\TemplateCologne\\": "src/QUI/TemplateCologne" | ||
} | ||
} | ||
} | ||
} | ||
\ No newline at end of file |