Skip to content
Code-Schnipsel Gruppen Projekte

Revisionen vergleichen

Änderungen werden so angezeigt, als ob die Quellrevision mit der Zielrevision zusammengeführt würde. Erfahre mehr über den Vergleich von Revisionen.

Quelle

Zielprojekt auswählen
No results found

Ziel

Zielprojekt auswählen
  • quiqqer/template-businesspro
1 Ergebnis
Änderungen anzeigen
Commits auf Quelle (5)
tools/
phpstan.neon
.phpunit.result.cache
phpunit.xml
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<phive xmlns="https://phar.io/phive">
<phar name="phpstan" version="^1.10.67" installed="1.10.67" location="./tools/phpstan" copy="false"/>
</phive>
{
"name": "quiqqer\/template-businesspro",
"name": "quiqqer/template-businesspro",
"type": "quiqqer-template",
"description": "Modern and responsive template to present your company in internet.",
"license": "GPL-3.0+",
......@@ -7,29 +7,29 @@
{
"name": "Michael Danielczok",
"email": "support@pcsg.de",
"homepage": "https:\/\/www.pcsg.de",
"homepage": "https://www.pcsg.de",
"role": "Developer"
}
],
"support": {
"email": "support@pcsg.de",
"url": "http:\/\/www.pcsg.de"
"url": "http://www.pcsg.de"
},
"require": {
"php": ">=5.3",
"quiqqer\/quiqqer": "*@dev",
"quiqqer\/bricks": "*@dev",
"quiqqer\/fontawesome": "*@dev",
"quiqqer\/sitetypes": "*@dev",
"quiqqer\/menu": "2.*|dev-dev",
"quiqqer\/unsemantic": "*@dev",
"quiqqer\/utils": ">=1.7|dev-master|dev-dev",
"quiqqer\/page-transition": "1.*|dev-master|dev-dev",
"quiqqer\/pace": ">=1.2.0|dev-master|dev-dev"
"php": "^8",
"quiqqer/core": "^2",
"quiqqer/bricks": "^2",
"quiqqer/fontawesome": "^6",
"quiqqer/sitetypes": "^2",
"quiqqer/menu": "^3",
"quiqqer/unsemantic": "^2",
"quiqqer/utils": "^2",
"quiqqer/page-transition": "^2",
"quiqqer/pace": "^2"
},
"autoload": {
"psr-4": {
"QUI\\TemplateBusinessPro\\": "src\/QUI\/TemplateBusinessPro"
"QUI\\TemplateBusinessPro\\": "src/QUI/TemplateBusinessPro"
}
}
}
includes:
- phpstan-baseline.neon
parameters:
level: 1
paths:
- src
bootstrapFiles:
- tests/phpstan-bootstrap.php
\ No newline at end of file
......@@ -37,10 +37,6 @@ public static function onSiteSave(QUI\Interfaces\Projects\Site $Site): void
$Project = $Site->getProject();
$cacheName = md5($Project->getName() . $Project->getLang() . $Site->getId());
try {
QUI\Cache\Manager::clear('quiqqer/templateBusinessPro' . $cacheName);
} catch (QUI\Exception $Exception) {
QUI\System\Log::writeException($Exception);
}
QUI\Cache\Manager::clear('quiqqer/templateBusinessPro' . $cacheName);
}
}
......@@ -22,7 +22,7 @@ class Utils
* @param array $params
* @return array
*/
public static function getConfig($params)
public static function getConfig(array $params): array
{
$cacheName = md5($params['Project']->getName() . $params['Project']->getLang() . $params['Site']->getId());
......
<?php
if (!defined('QUIQQER_SYSTEM')) {
define('QUIQQER_SYSTEM', true);
}
if (!defined('QUIQQER_AJAX')) {
define('QUIQQER_AJAX', true);
}
putenv("QUIQQER_OTHER_AUTOLOADERS=KEEP");
require_once __DIR__ . '/../../../../bootstrap.php';