From 4df1b88e9e04a62926300c1c2540cd690b42e927 Mon Sep 17 00:00:00 2001 From: RedHood Date: Fri, 18 Dec 2020 17:34:32 +1000 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B1=D0=B5=D0=B3=D1=83=D1=89=D0=B5=D0=B9?= =?UTF-8?q?=20=D1=81=D1=82=D1=80=D0=BE=D0=BA=D0=B8,=20=D1=81=D0=BC=D0=B5?= =?UTF-8?q?=D0=BD=D0=B0=20=D0=BB=D0=BE=D0=B3=D0=BE=D1=82=D0=B8=D0=BF=D0=B0?= =?UTF-8?q?,=20=D1=83=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BA?= =?UTF-8?q?=D0=BD=D0=BE=D0=BF=D0=BE=D0=BA=20=D0=BD=D0=B0=20=D0=BF=D0=B0?= =?UTF-8?q?=D0=BD=D0=B5=D0=BB=D0=B8=20=D0=BF=D0=BE=D0=B8=D1=81=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 18 +- composer.lock | 390 ++++-------------- mirzaev/skillparts/system/assets/AppAsset.php | 3 + .../skillparts/system/views/layouts/main.php | 9 +- .../skillparts/system/views/site/index.php | 30 +- mirzaev/skillparts/system/web/css/header.css | 3 +- mirzaev/skillparts/system/web/css/ticker.css | 12 + mirzaev/skillparts/system/web/img/logo.jpg | Bin 4833 -> 0 bytes .../skillparts/system/web/img/logos/bomag.png | Bin 0 -> 9465 bytes .../skillparts/system/web/img/logos/case.png | Bin 0 -> 1601 bytes .../system/web/img/logos/caterpillar.png | Bin 0 -> 11695 bytes .../system/web/img/logos/cummins.png | Bin 0 -> 6280 bytes .../system/web/img/logos/hitachi.png | Bin 0 -> 23456 bytes .../skillparts/system/web/img/logos/isuzu.png | Bin 0 -> 63703 bytes .../skillparts/system/web/img/logos/iveco.png | Bin 0 -> 39182 bytes .../system/web/img/logos/john_deere.png | Bin 0 -> 65593 bytes .../system/web/img/logos/kobelco.png | Bin 0 -> 47087 bytes .../system/web/img/logos/komatsu.png | Bin 0 -> 47387 bytes .../system/web/img/logos/new_holland.png | Bin 0 -> 306095 bytes .../system/web/img/logos/perkins.png | Bin 0 -> 54453 bytes .../system/web/img/logos/shantui.png | Bin 0 -> 6038 bytes .../system/web/img/logos/shehwa.png | Bin 0 -> 15294 bytes .../system/web/img/logos/skillparts.png | Bin 0 -> 66110 bytes .../skillparts/system/web/img/logos/xcmg.png | Bin 0 -> 54465 bytes mirzaev/skillparts/system/web/js/ticker.js | 8 + 25 files changed, 139 insertions(+), 334 deletions(-) create mode 100644 mirzaev/skillparts/system/web/css/ticker.css delete mode 100644 mirzaev/skillparts/system/web/img/logo.jpg create mode 100644 mirzaev/skillparts/system/web/img/logos/bomag.png create mode 100644 mirzaev/skillparts/system/web/img/logos/case.png create mode 100644 mirzaev/skillparts/system/web/img/logos/caterpillar.png create mode 100644 mirzaev/skillparts/system/web/img/logos/cummins.png create mode 100644 mirzaev/skillparts/system/web/img/logos/hitachi.png create mode 100644 mirzaev/skillparts/system/web/img/logos/isuzu.png create mode 100644 mirzaev/skillparts/system/web/img/logos/iveco.png create mode 100644 mirzaev/skillparts/system/web/img/logos/john_deere.png create mode 100644 mirzaev/skillparts/system/web/img/logos/kobelco.png create mode 100644 mirzaev/skillparts/system/web/img/logos/komatsu.png create mode 100644 mirzaev/skillparts/system/web/img/logos/new_holland.png create mode 100644 mirzaev/skillparts/system/web/img/logos/perkins.png create mode 100644 mirzaev/skillparts/system/web/img/logos/shantui.png create mode 100644 mirzaev/skillparts/system/web/img/logos/shehwa.png create mode 100644 mirzaev/skillparts/system/web/img/logos/skillparts.png create mode 100644 mirzaev/skillparts/system/web/img/logos/xcmg.png create mode 100644 mirzaev/skillparts/system/web/js/ticker.js diff --git a/composer.json b/composer.json index 708a989..16636a5 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,9 @@ "yiisoft/yii2-swiftmailer": ">=2.0.0", "bower-asset/bootstrap": "*", "npm-asset/jquery": "^3.5", - "bower-asset/jquery": "^3.5" + "bower-asset/jquery": "^3.5", + "pbazsi/yii2-arangodb": "2.0", + "triagens/arangodb": "^3.6" }, "require-dev": { "codeception/codeception": ">=4.1", @@ -80,6 +82,18 @@ { "type": "composer", "url": "https://asset-packagist.org" - } + }, + { + "type": "package", + "package": { + "name": "pbazsi/yii2-arangodb", + "version": "2.0", + "source": { + "type" : "git", + "url" : "https://github.com/pBazsi/yii2-arangodb.git", + "reference" : "master" + } + } + } ] } diff --git a/composer.lock b/composer.lock index 3736f7c..d0f597f 100644 --- a/composer.lock +++ b/composer.lock @@ -4,14 +4,14 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7bff5ef919ece004e19ad8a8a8e99365", + "content-hash": "5c6fa00f67028dbc18572600d2a1935d", "packages": [ { "name": "bower-asset/bootstrap", "version": "v3.4.1", "source": { "type": "git", - "url": "https://github.com/twbs/bootstrap.git", + "url": "git@github.com:twbs/bootstrap.git", "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e" }, "dist": { @@ -160,10 +160,6 @@ "markdown", "markdown-extra" ], - "support": { - "issues": "https://github.com/cebe/markdown/issues", - "source": "https://github.com/cebe/markdown" - }, "time": "2018-03-26T11:24:36+00:00" }, { @@ -226,10 +222,6 @@ "parser", "php" ], - "support": { - "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/1.2.1" - }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -302,10 +294,6 @@ "validation", "validator" ], - "support": { - "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/2.1.24" - }, "funding": [ { "url": "https://github.com/egulias", @@ -362,10 +350,6 @@ "keywords": [ "html" ], - "support": { - "issues": "https://github.com/ezyang/htmlpurifier/issues", - "source": "https://github.com/ezyang/htmlpurifier/tree/master" - }, "time": "2020-06-29T00:56:53+00:00" }, { @@ -380,6 +364,16 @@ "MIT" ] }, + { + "name": "pBazsi/yii2-arangodb", + "version": "2.0", + "source": { + "type": "git", + "url": "https://github.com/pBazsi/yii2-arangodb.git", + "reference": "master" + }, + "type": "library" + }, { "name": "swiftmailer/swiftmailer", "version": "v6.2.4", @@ -516,9 +510,6 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -603,9 +594,6 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -687,9 +675,6 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -767,9 +752,6 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -843,9 +825,6 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -862,6 +841,63 @@ ], "time": "2020-10-23T14:02:19+00:00" }, + { + "name": "triagens/arangodb", + "version": "v3.6.0", + "source": { + "type": "git", + "url": "https://github.com/arangodb/arangodb-php.git", + "reference": "d331f1a493772960c4d0e3d1fb753900eb181ce2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/arangodb/arangodb-php/zipball/d331f1a493772960c4d0e3d1fb753900eb181ce2", + "reference": "d331f1a493772960c4d0e3d1fb753900eb181ce2", + "shasum": "" + }, + "require": { + "php": ">=5.6.0" + }, + "type": "library", + "autoload": { + "psr-0": { + "ArangoDBClient": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Jan Steemann", + "homepage": "https://github.com/arangodb/arangodb-php", + "role": "Developer" + }, + { + "name": "Frank Mayer", + "homepage": "https://github.com/arangodb/arangodb-php", + "role": "Developer" + }, + { + "name": "Contributors", + "homepage": "https://github.com/arangodb/arangodb-php/graphs/contributors" + } + ], + "description": "ArangoDB PHP client", + "homepage": "https://github.com/arangodb/arangodb-php", + "keywords": [ + "Arango", + "ArangoDb", + "database", + "distributed", + "document store", + "graph database", + "multi-model", + "nosql" + ], + "time": "2019-12-02T13:11:34+00:00" + }, { "name": "twbs/bootstrap", "version": "v4.5.3", @@ -911,10 +947,6 @@ "sass", "web" ], - "support": { - "issues": "https://github.com/twbs/bootstrap/issues", - "source": "https://github.com/twbs/bootstrap/tree/v4.5.3" - }, "funding": [ { "url": "https://opencollective.com/bootstrap", @@ -1021,13 +1053,6 @@ "framework", "yii2" ], - "support": { - "forum": "http://www.yiiframework.com/forum/", - "irc": "irc://irc.freenode.net/yii", - "issues": "https://github.com/yiisoft/yii2/issues?state=open", - "source": "https://github.com/yiisoft/yii2", - "wiki": "http://www.yiiframework.com/wiki/" - }, "funding": [ { "url": "https://github.com/yiisoft", @@ -1105,13 +1130,6 @@ "bootstrap", "yii2" ], - "support": { - "forum": "http://www.yiiframework.com/forum/", - "irc": "irc://irc.freenode.net/yii", - "issues": "https://github.com/yiisoft/yii2-bootstrap/issues", - "source": "https://github.com/yiisoft/yii2-bootstrap", - "wiki": "http://www.yiiframework.com/wiki/" - }, "time": "2019-04-23T13:18:43+00:00" }, { @@ -1167,13 +1185,6 @@ "extension installer", "yii2" ], - "support": { - "forum": "http://www.yiiframework.com/forum/", - "irc": "irc://irc.freenode.net/yii", - "issues": "https://github.com/yiisoft/yii2-composer/issues", - "source": "https://github.com/yiisoft/yii2-composer", - "wiki": "http://www.yiiframework.com/wiki/" - }, "funding": [ { "url": "https://github.com/yiisoft", @@ -1238,13 +1249,6 @@ "swiftmailer", "yii2" ], - "support": { - "forum": "http://www.yiiframework.com/forum/", - "irc": "irc://irc.freenode.net/yii", - "issues": "https://github.com/yiisoft/yii2-swiftmailer/issues", - "source": "https://github.com/yiisoft/yii2-swiftmailer", - "wiki": "http://www.yiiframework.com/wiki/" - }, "time": "2018-09-23T22:00:47+00:00" } ], @@ -1306,10 +1310,6 @@ "gherkin", "parser" ], - "support": { - "issues": "https://github.com/Behat/Gherkin/issues", - "source": "https://github.com/Behat/Gherkin/tree/master" - }, "time": "2020-03-17T14:03:26+00:00" }, { @@ -1395,10 +1395,6 @@ "functional testing", "unit testing" ], - "support": { - "issues": "https://github.com/Codeception/Codeception/issues", - "source": "https://github.com/Codeception/Codeception/tree/4.1.12" - }, "funding": [ { "url": "https://opencollective.com/codeception", @@ -1455,10 +1451,6 @@ "keywords": [ "codeception" ], - "support": { - "issues": "https://github.com/Codeception/lib-asserts/issues", - "source": "https://github.com/Codeception/lib-asserts/tree/1.13.2" - }, "time": "2020-10-21T16:26:20+00:00" }, { @@ -1515,10 +1507,6 @@ "keywords": [ "codeception" ], - "support": { - "issues": "https://github.com/Codeception/lib-innerbrowser/issues", - "source": "https://github.com/Codeception/lib-innerbrowser/tree/1.3.4" - }, "time": "2020-10-22T05:45:03+00:00" }, { @@ -1572,10 +1560,6 @@ "asserts", "codeception" ], - "support": { - "issues": "https://github.com/Codeception/module-asserts/issues", - "source": "https://github.com/Codeception/module-asserts/tree/1.3.1" - }, "time": "2020-10-21T16:48:15+00:00" }, { @@ -1624,10 +1608,6 @@ "codeception", "filesystem" ], - "support": { - "issues": "https://github.com/Codeception/module-filesystem/issues", - "source": "https://github.com/Codeception/module-filesystem/tree/1.0.3" - }, "time": "2020-10-24T14:46:40+00:00" }, { @@ -1680,10 +1660,6 @@ "browser-testing", "codeception" ], - "support": { - "issues": "https://github.com/Codeception/module-webdriver/issues", - "source": "https://github.com/Codeception/module-webdriver/tree/1.1.4" - }, "time": "2020-11-16T06:50:15+00:00" }, { @@ -1735,10 +1711,6 @@ "codeception", "yii2" ], - "support": { - "issues": "https://github.com/Codeception/module-yii2/issues", - "source": "https://github.com/Codeception/module-yii2/tree/master" - }, "time": "2020-08-28T06:50:26+00:00" }, { @@ -1783,10 +1755,6 @@ } ], "description": "PHPUnit classes used by Codeception", - "support": { - "issues": "https://github.com/Codeception/phpunit-wrapper/issues", - "source": "https://github.com/Codeception/phpunit-wrapper/tree/9.0.5" - }, "time": "2020-10-11T18:14:42+00:00" }, { @@ -1863,10 +1831,6 @@ "MIT" ], "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", - "support": { - "issues": "https://github.com/Codeception/Stub/issues", - "source": "https://github.com/Codeception/Stub/tree/3.7.0" - }, "time": "2020-07-03T15:54:43+00:00" }, { @@ -1912,10 +1876,6 @@ } ], "description": "BDD assertion library for PHPUnit", - "support": { - "issues": "https://github.com/Codeception/Verify/issues", - "source": "https://github.com/Codeception/Verify/tree/master" - }, "time": "2020-09-03T04:43:01+00:00" }, { @@ -1967,10 +1927,6 @@ "constructor", "instantiate" ], - "support": { - "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.4.0" - }, "funding": [ { "url": "https://www.doctrine-project.org/sponsorship.html", @@ -2108,10 +2064,6 @@ "uri", "url" ], - "support": { - "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.7.0" - }, "time": "2020-09-30T07:37:11+00:00" }, { @@ -2160,10 +2112,6 @@ "object", "object graph" ], - "support": { - "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2" - }, "funding": [ { "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", @@ -2287,10 +2235,6 @@ "serialization", "serialize" ], - "support": { - "issues": "https://github.com/opis/closure/issues", - "source": "https://github.com/opis/closure/tree/3.6.1" - }, "time": "2020-11-07T02:01:34+00:00" }, { @@ -2347,10 +2291,6 @@ } ], "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", - "support": { - "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/master" - }, "time": "2020-06-27T14:33:11+00:00" }, { @@ -2398,10 +2338,6 @@ } ], "description": "Library for handling version information and constraints", - "support": { - "issues": "https://github.com/phar-io/version/issues", - "source": "https://github.com/phar-io/version/tree/3.0.3" - }, "time": "2020-11-30T09:21:21+00:00" }, { @@ -2469,10 +2405,6 @@ "selenium", "webdriver" ], - "support": { - "issues": "https://github.com/php-webdriver/php-webdriver/issues", - "source": "https://github.com/php-webdriver/php-webdriver/tree/1.9.0" - }, "time": "2020-11-19T15:21:05+00:00" }, { @@ -2522,10 +2454,6 @@ "reflection", "static analysis" ], - "support": { - "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", - "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" - }, "time": "2020-06-27T09:03:43+00:00" }, { @@ -2578,10 +2506,6 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "support": { - "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master" - }, "time": "2020-09-03T19:13:55+00:00" }, { @@ -2627,10 +2551,6 @@ } ], "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "support": { - "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0" - }, "time": "2020-09-17T18:55:26+00:00" }, { @@ -2669,9 +2589,6 @@ } ], "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).", - "support": { - "source": "https://github.com/phpspec/php-diff/tree/v1.1.3" - }, "time": "2020-09-18T13:47:07+00:00" }, { @@ -2735,10 +2652,6 @@ "spy", "stub" ], - "support": { - "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/1.12.1" - }, "time": "2020-09-29T09:10:42+00:00" }, { @@ -2806,10 +2719,6 @@ "testing", "xunit" ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -2866,10 +2775,6 @@ "filesystem", "iterator" ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -2929,10 +2834,6 @@ "keywords": [ "process" ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-invoker/issues", - "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -2988,10 +2889,6 @@ "keywords": [ "template" ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-text-template/issues", - "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3047,10 +2944,6 @@ "keywords": [ "timer" ], - "support": { - "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3209,10 +3102,6 @@ "container-interop", "psr" ], - "support": { - "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/master" - }, "time": "2017-02-14T16:28:37+00:00" }, { @@ -3259,10 +3148,6 @@ "psr", "psr-14" ], - "support": { - "issues": "https://github.com/php-fig/event-dispatcher/issues", - "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" - }, "time": "2019-01-08T18:20:26+00:00" }, { @@ -3313,9 +3198,6 @@ "request", "response" ], - "support": { - "source": "https://github.com/php-fig/http-message/tree/master" - }, "time": "2016-08-06T14:39:51+00:00" }, { @@ -3356,10 +3238,6 @@ } ], "description": "A polyfill for getallheaders.", - "support": { - "issues": "https://github.com/ralouphie/getallheaders/issues", - "source": "https://github.com/ralouphie/getallheaders/tree/develop" - }, "time": "2019-03-08T08:55:37+00:00" }, { @@ -3406,10 +3284,6 @@ ], "description": "Library for parsing CLI options", "homepage": "https://github.com/sebastianbergmann/cli-parser", - "support": { - "issues": "https://github.com/sebastianbergmann/cli-parser/issues", - "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3462,10 +3336,6 @@ ], "description": "Collection of value objects that represent the PHP code units", "homepage": "https://github.com/sebastianbergmann/code-unit", - "support": { - "issues": "https://github.com/sebastianbergmann/code-unit/issues", - "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3517,10 +3387,6 @@ ], "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", - "support": { - "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", - "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3591,10 +3457,6 @@ "compare", "equality" ], - "support": { - "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3648,10 +3510,6 @@ ], "description": "Library for calculating the complexity of PHP code units", "homepage": "https://github.com/sebastianbergmann/complexity", - "support": { - "issues": "https://github.com/sebastianbergmann/complexity/issues", - "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3714,10 +3572,6 @@ "unidiff", "unified diff" ], - "support": { - "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3777,10 +3631,6 @@ "environment", "hhvm" ], - "support": { - "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3854,10 +3704,6 @@ "export", "exporter" ], - "support": { - "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3918,10 +3764,6 @@ "keywords": [ "global state" ], - "support": { - "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -3975,10 +3817,6 @@ ], "description": "Library for counting the lines of code in PHP source code", "homepage": "https://github.com/sebastianbergmann/lines-of-code", - "support": { - "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", - "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4032,10 +3870,6 @@ ], "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", - "support": { - "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", - "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4087,10 +3921,6 @@ ], "description": "Allows reflection of object attributes, including inherited and non-public ones", "homepage": "https://github.com/sebastianbergmann/object-reflector/", - "support": { - "issues": "https://github.com/sebastianbergmann/object-reflector/issues", - "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4150,10 +3980,6 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "support": { - "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4205,10 +4031,6 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "support": { - "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4261,10 +4083,6 @@ ], "description": "Collection of value objects that represent the types of the PHP type system", "homepage": "https://github.com/sebastianbergmann/type", - "support": { - "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/2.3.1" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4314,10 +4132,6 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", - "support": { - "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" - }, "funding": [ { "url": "https://github.com/sebastianbergmann", @@ -4475,9 +4289,6 @@ "console", "terminal" ], - "support": { - "source": "https://github.com/symfony/console/tree/v5.2.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -4540,9 +4351,6 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/css-selector/tree/v5.2.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -4607,9 +4415,6 @@ ], "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/master" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -4766,9 +4571,6 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -4845,9 +4647,6 @@ "interoperability", "standards" ], - "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -4906,9 +4705,6 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/finder/tree/v5.2.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -4985,9 +4781,6 @@ "polyfill", "portable" ], - "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5066,9 +4859,6 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5145,9 +4935,6 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5228,9 +5015,6 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5290,9 +5074,6 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/process/tree/v5.2.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5369,9 +5150,6 @@ "interoperability", "standards" ], - "support": { - "source": "https://github.com/symfony/service-contracts/tree/master" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5452,9 +5230,6 @@ "utf-8", "utf8" ], - "support": { - "source": "https://github.com/symfony/string/tree/v5.2.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5527,9 +5302,6 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/yaml/tree/v5.2.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -5584,10 +5356,6 @@ } ], "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", - "support": { - "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/master" - }, "funding": [ { "url": "https://github.com/theseer", @@ -5643,10 +5411,6 @@ "check", "validate" ], - "support": { - "issues": "https://github.com/webmozart/assert/issues", - "source": "https://github.com/webmozart/assert/tree/master" - }, "time": "2020-07-08T17:02:28+00:00" }, { @@ -5716,13 +5480,6 @@ "debugger", "yii2" ], - "support": { - "forum": "http://www.yiiframework.com/forum/", - "irc": "irc://irc.freenode.net/yii", - "issues": "https://github.com/yiisoft/yii2-debug/issues", - "source": "https://github.com/yiisoft/yii2-debug", - "wiki": "http://www.yiiframework.com/wiki/" - }, "funding": [ { "url": "https://github.com/yiisoft", @@ -5798,13 +5555,6 @@ "faker", "yii2" ], - "support": { - "forum": "http://www.yiiframework.com/forum/", - "irc": "irc://irc.freenode.net/yii", - "issues": "https://github.com/yiisoft/yii2-faker/issues", - "source": "https://github.com/yiisoft/yii2-faker", - "wiki": "http://www.yiiframework.com/wiki/" - }, "funding": [ { "url": "https://github.com/yiisoft", @@ -5903,5 +5653,5 @@ "php": ">=7.4.0" }, "platform-dev": [], - "plugin-api-version": "2.0.0" + "plugin-api-version": "1.1.0" } diff --git a/mirzaev/skillparts/system/assets/AppAsset.php b/mirzaev/skillparts/system/assets/AppAsset.php index d8d6b20..8362772 100644 --- a/mirzaev/skillparts/system/assets/AppAsset.php +++ b/mirzaev/skillparts/system/assets/AppAsset.php @@ -27,12 +27,15 @@ class AppAsset extends AssetBundle 'css/header.css', 'css/info_panel.css', 'css/categories_blocks_panel.css', + 'css/ticker.css', 'css/footer.css' ]; public $js = [ 'https://code.jquery.com/jquery-3.5.1.min.js', 'js/bootstrap/popper.min.js', 'js/bootstrap/bootstrap.min.js', + 'https://cdn.jsdelivr.net/bxslider/4.1.1/jquery.bxslider.min.js', + 'js/ticker.js', 'https://kit.fontawesome.com/d7e922c226.js' ]; public $depends = [ diff --git a/mirzaev/skillparts/system/views/layouts/main.php b/mirzaev/skillparts/system/views/layouts/main.php index a50c2b5..caf7fd3 100644 --- a/mirzaev/skillparts/system/views/layouts/main.php +++ b/mirzaev/skillparts/system/views/layouts/main.php @@ -26,10 +26,9 @@ AppAsset::register($this);
-
+
- Аватар - Место под слоган + SkillParts
@@ -66,12 +65,12 @@ AppAsset::register($this);
- +