Рамиз Мирзаев

Init commit

......@@ -12,7 +12,7 @@
"braintree/braintree_php" : "3.40.0",
"cardinity/cardinity-sdk-php": "^v2.0",
"divido/divido-php": ">=1.15",
"php": ">=7.3.0",
"php": ">=8.3.7",
"scssphp/scssphp": "^1.13.0",
"zoujingli/wechat-developer": "^1.2",
"twig/twig": "^3.3",
......
......@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "bebfab293209d0467e1fa76ace0e7a9e",
"content-hash": "066d509665b741afda5f6b797e6e0422",
"packages": [
{
"name": "braintree/braintree_php",
......@@ -1681,7 +1681,7 @@
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
"php": ">=7.3.0"
"php": ">=8.3.7"
},
"platform-dev": [],
"plugin-api-version": "2.6.0"
......
[]
\ No newline at end of file
This diff could not be displayed because it is too large.
......@@ -3,7 +3,7 @@
'name' => 'opencart/opencart',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '996087ba419c80d45c04e7d931ff9efb9997e37e',
'reference' => '6910c7d907054a6d8fbb80c010c6ae70e68ee1ec',
'type' => 'project',
'install_path' => __DIR__ . '/../../../',
'aliases' => array(),
......@@ -76,7 +76,7 @@
'opencart/opencart' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => '996087ba419c80d45c04e7d931ff9efb9997e37e',
'reference' => '6910c7d907054a6d8fbb80c010c6ae70e68ee1ec',
'type' => 'project',
'install_path' => __DIR__ . '/../../../',
'aliases' => array(),
......
......@@ -4,8 +4,8 @@
$issues = array();
if (!(PHP_VERSION_ID >= 80100)) {
$issues[] = 'Your Composer dependencies require a PHP version ">= 8.1.0". You are running ' . PHP_VERSION . '.';
if (!(PHP_VERSION_ID >= 80307)) {
$issues[] = 'Your Composer dependencies require a PHP version ">= 8.3.7". You are running ' . PHP_VERSION . '.';
}
if ($issues) {
......
......@@ -113,7 +113,7 @@ class ControllerExtensionDashboardSale extends Controller {
} elseif ($sale_total > 1000) {
$data['total'] = round($sale_total / 1000, 1) . 'K';
} else {
$data['total'] = round($sale_total);
$data['total'] = round(($sale_total === null) ? 0 : $sale_total);
}
$data['sale'] = $this->url->link('sale/order', 'user_token=' . $this->session->data['user_token'], true);
......
<?php
class ControllerStartupSass extends Controller {
public function index() {
return false;
$files = glob(DIR_APPLICATION . 'view/stylesheet/*.scss');
if ($files) {
......