From 56468ba8a4f6ac7c3c34488296ec990ef1b159bd Mon Sep 17 00:00:00 2001 From: Mitul Golakiya Date: Sun, 13 Sep 2020 10:49:23 +0530 Subject: [PATCH 1/7] style: Apply fixes from StyleCI (#4) Co-authored-by: Mitul Golakiya --- src/CoreUIPreset.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/CoreUIPreset.php b/src/CoreUIPreset.php index 8205bb5..a926db4 100644 --- a/src/CoreUIPreset.php +++ b/src/CoreUIPreset.php @@ -30,14 +30,14 @@ public function __construct(Command $command) protected static function updatePackageArray(array $packages) { return [ - 'bootstrap' => '^4.1.0', - 'jquery' => '^3.2', - 'popper.js' => '^1.12', - 'sass' => '^1.15.2', - 'sass-loader' => '^8.0.0', - '@coreui/coreui' => '^3.2.2', - '@coreui/icons' => '^1.0.1', - ] + $packages; + 'bootstrap' => '^4.1.0', + 'jquery' => '^3.2', + 'popper.js' => '^1.12', + 'sass' => '^1.15.2', + 'sass-loader' => '^8.0.0', + '@coreui/coreui' => '^3.2.2', + '@coreui/icons' => '^1.0.1', + ] + $packages; } public function install() @@ -58,7 +58,7 @@ protected static function updateSass() { (new Filesystem())->ensureDirectoryExists(resource_path('sass')); - copy(__DIR__ . '/../coreui-stubs/bootstrap/app.scss', resource_path('sass/app.scss')); + copy(__DIR__.'/../coreui-stubs/bootstrap/app.scss', resource_path('sass/app.scss')); } /** @@ -68,7 +68,7 @@ protected static function updateSass() */ protected static function updateWebpackConfiguration() { - copy(__DIR__ . '/../coreui-stubs/bootstrap/webpack.mix.js', base_path('webpack.mix.js')); + copy(__DIR__.'/../coreui-stubs/bootstrap/webpack.mix.js', base_path('webpack.mix.js')); } /** @@ -78,8 +78,8 @@ protected static function updateWebpackConfiguration() */ protected static function updateBootstrapping() { - copy(__DIR__ . '/../coreui-stubs/bootstrap/bootstrap.js', resource_path('js/bootstrap.js')); - copy(__DIR__ . '/../coreui-stubs/bootstrap/app.js', resource_path('js/app.js')); + copy(__DIR__.'/../coreui-stubs/bootstrap/bootstrap.js', resource_path('js/bootstrap.js')); + copy(__DIR__.'/../coreui-stubs/bootstrap/app.js', resource_path('js/app.js')); } public function installAuth() From 7f539281dfe78f9fb657b502698f830b66b87540 Mon Sep 17 00:00:00 2001 From: Mitul Golakiya Date: Sun, 13 Sep 2020 14:25:25 +0530 Subject: [PATCH 2/7] docs: statistics updated --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 483be33..0a776e7 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,9 @@ # Laravel UI CoreUI [![Total Downloads](https://poser.pugx.org/infyomlabs/laravel-ui-coreui/downloads)](https://packagist.org/packages/infyomlabs/laravel-ui-coreui) -[![Monthly Downloads](https://poser.pugx.org/infyomlabs/laravel-genui-coreuierator/d/monthly)](https://packagist.org/packages/infyomlabs/laravel-ui-coreui) +[![Monthly Downloads](https://poser.pugx.org/infyomlabs/laravel-ui-coreui/d/monthly)](https://packagist.org/packages/infyomlabs/laravel-ui-coreui) [![Daily Downloads](https://poser.pugx.org/infyomlabs/laravel-ui-coreui/d/daily)](https://packagist.org/packages/infyomlabs/laravel-ui-coreui) [![License](https://poser.pugx.org/infyomlabs/laravel-ui-coreui/license)](https://packagist.org/packages/infyomlabs/laravel-ui-coreui) -[![Build Status](https://travis-ci.org/InfyOmLabs/laravel-ui-coreui.svg?branch=test-cases)](https://travis-ci.org/InfyOmLabs/laravel-ui-coreui) [Laravel Frontend Scaffolding](https://laravel.com/docs/7.x/frontend) for [CoreUI](https://coreui.io/) Theme. From 758a630ad834a2f8c9e117f148fa7bda559d8e7a Mon Sep 17 00:00:00 2001 From: Mitul Golakiya Date: Sun, 13 Sep 2020 14:26:28 +0530 Subject: [PATCH 3/7] chore: FUNDING.yml added --- .github/FUNDING.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..80454d7 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,3 @@ +# These are supported funding model platforms + +open_collective: infyomlabs From a8e850bae70b9b46281a25752ea715c822467773 Mon Sep 17 00:00:00 2001 From: Mitul Golakiya Date: Sun, 13 Sep 2020 15:04:30 +0530 Subject: [PATCH 4/7] docs: docs updated for Laravel 7 --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 0a776e7..199f11c 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,10 @@ Run a command, `composer require infyomlabs/laravel-ui-coreui` +For Laravel 7, + +`composer require infyomlabs/laravel-ui-adminlte:^2.0` + For Laravel 6, `composer require infyomlabs/laravel-ui-coreui:^1.0` From 433af1bd42228eccd9ab0f973e9511339e55ab11 Mon Sep 17 00:00:00 2001 From: Mitul Golakiya Date: Mon, 12 Oct 2020 09:55:02 +0530 Subject: [PATCH 5/7] docs: minor docs fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 199f11c..2a0d4b0 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Run a command, For Laravel 7, -`composer require infyomlabs/laravel-ui-adminlte:^2.0` +`composer require infyomlabs/laravel-ui-coreui:^2.0` For Laravel 6, From e373a3a95ed2281e39d03d0d223b7468b8a6b3a4 Mon Sep 17 00:00:00 2001 From: Mitul Golakiya Date: Wed, 16 Dec 2020 12:54:46 +0530 Subject: [PATCH 6/7] docs: support us added in README.md --- README.md | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2a0d4b0..afa21df 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +

InfyOm

+ # Laravel UI CoreUI [![Total Downloads](https://poser.pugx.org/infyomlabs/laravel-ui-coreui/downloads)](https://packagist.org/packages/infyomlabs/laravel-ui-coreui) @@ -41,11 +43,35 @@ Or for production, `npm install && npm run prod` -## Tutorial -Here you can find a video tutorial. (**Credits**: [shailesh-ladumor](https://github.com/shailesh-ladumor)) +## Support Us -[](https://youtu.be/AGkVhgvArd8) +We have created [14+ Laravel packages](https://github.com/InfyOmLabs) and invested a lot of resources into creating these all packages and maintaining them. + +You can support us by either sponsoring us or buying one of our paid products. Or help us by spreading the word about us on social platforms via tweets and posts. + +### Sponsors + +[Become a sponsor](https://opencollective.com/infyomlabs#sponsor) and get your logo on our README on Github with a link to your site. + + + +### Backers + +[Become a backer](https://opencollective.com/infyomlabs#backer) and get your image on our README on Github with a link to your site. + + +### Buy our Paid Products + +[![InfyHMS](https://assets.infyom.com/open-source/infyhms-banner.png)](https://codecanyon.net/item/infyhms-smart-hospital-management-system/26344507) + +You can also check out our other paid products on [CodeCanyon](https://codecanyon.net/user/infyomlabs/portfolio). + +## Video Tutorials + +Checkout Video Tutorial - **By**: [Shailesh Ladumor](https://github.com/shailesh-ladumor) + +[](https://youtu.be/AGkVhgvArd8) ## Screenshots From c4796417e7a66a0385eeb62d68c8973380653ae7 Mon Sep 17 00:00:00 2001 From: Vishal InfyOm Date: Fri, 18 Dec 2020 17:42:56 +0530 Subject: [PATCH 7/7] docs: README.md updated --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index afa21df..1977258 100644 --- a/README.md +++ b/README.md @@ -63,10 +63,24 @@ You can support us by either sponsoring us or buying one of our paid products. O ### Buy our Paid Products -[![InfyHMS](https://assets.infyom.com/open-source/infyhms-banner.png)](https://codecanyon.net/item/infyhms-smart-hospital-management-system/26344507) +[![InfyHMS](https://assets.infyom.com/open-source/infyhms-banner.png)](https://bit.ly/3mtqXuk) You can also check out our other paid products on [CodeCanyon](https://codecanyon.net/user/infyomlabs/portfolio). + +### Follow Us + +- [Twitter](https://twitter.com/infyom) +- [Facebook](https://www.facebook.com/infyom) +- [LinkedIn](https://in.linkedin.com/company/infyom-technologies) +- [Youtube](https://www.youtube.com/channel/UC8IvwfChD6i7Wp4yZp3tNsQ) +- [Contact Us](https://infyom.com/contact-us) + +## Made with InfyOm Generator + +Also, Do not forget to add your website to [Made with InfyOm Generator List](https://github.com/InfyOmLabs/laravel-generator/blob/develop/made-with-generator.md) list. + + ## Video Tutorials Checkout Video Tutorial - **By**: [Shailesh Ladumor](https://github.com/shailesh-ladumor) pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy