From 9a5e295451c8609db7c9179e155931d67809d771 Mon Sep 17 00:00:00 2001 From: Wildan Maulana Date: Tue, 15 Feb 2022 09:30:37 +0700 Subject: [PATCH] Update UNAND --- .gitignore | 5 ++++ composer.json | 73 +++++++++++++++++++++++++++++++++++++++++---- syncUpstreamTags.sh | 6 ++++ 3 files changed, 78 insertions(+), 6 deletions(-) create mode 100755 syncUpstreamTags.sh diff --git a/.gitignore b/.gitignore index 51a749c..e140ed5 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,8 @@ composer.lock vendor/ .idea/ +generis/ +tao/ +taoBackOffice/ +taoItems/ +taoQtiItem/ \ No newline at end of file diff --git a/composer.json b/composer.json index 5ef3405..01f979d 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { - "name": "oat-sa/extension-tao-clientdiag", + "name": "openthinklabs/extension-tao-clientdiag", "description" : "Check compatibility of the os and browser of a client", "type" : "tao-extension", "authors" : [ @@ -20,16 +20,77 @@ "tao-extension-name" : "taoClientDiagnostic" }, "minimum-stability" : "dev", + "repositories": [ + { + "type": "vcs", + "url": "git@github.com:openthinklabs/oatbox-extension-installer.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/generis.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/tao-core.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/extension-tao-item.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/extension-tao-itemqti-pci.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/extension-tao-backoffice.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/lib-generis-search.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/lib-tao-qti.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/lib-beeme.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/jig.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/qti-sdk.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/composer-npm-bridge.git" + }, + { + "type": "vcs", + "url": "git@github.com:openthinklabs/extension-tao-itemqti.git" + } + ], "require": { - "oat-sa/oatbox-extension-installer": "~1.1||dev-master", + "openthinklabs/oatbox-extension-installer": "1.2.2", "sinergi/browser-detector": "^6.0.2", - "oat-sa/generis" : ">=14.0.0", - "oat-sa/tao-core" : ">=47.0.0", - "oat-sa/extension-tao-itemqti" : ">=27.0.0" + "openthinklabs/generis" : "15.11.0.4", + "openthinklabs/tao-core" : "48.66.1.3", + "openthinklabs/extension-tao-itemqti" : "28.28.1.1" }, "autoload" : { "psr-4" : { "oat\\taoClientDiagnostic\\" : "" } - } + }, + "config": { + "allow-plugins": { + "composer/package-versions-deprecated": true, + "openthinklabs/oatbox-extension-installer": true, + "openthinklabs/composer-npm-bridge": true + } + } } diff --git a/syncUpstreamTags.sh b/syncUpstreamTags.sh new file mode 100755 index 0000000..c011d23 --- /dev/null +++ b/syncUpstreamTags.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +#git remote add upstream https://github.com/oat-sa/extension-tao-clientdiag.git +git fetch --tags upstream +git push -f --tags origin master +