-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the bagisto UPS Shipping module in v2.0
- Loading branch information
1 parent
2f12c0f
commit e770f6e
Showing
30 changed files
with
924 additions
and
381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# CHANGELOG for v0.1.x | ||
|
||
#### This changelog consists the bug & security fixes and new features being included in the releases listed below. | ||
|
||
## **v0.1.0(23 of Feb, 2020)** - *Release* | ||
|
||
* [feature] The admin can enable or disable the usps Shipping method. | ||
|
||
* [feature] The admin can set the ups shipping method name that will be shown from the front side. | ||
|
||
* [feature] The admin can define the allowed methods and weight units. | ||
|
||
* [feature] The admin can set packaging type and drop off type. | ||
|
||
* [feature] Dynamic shipping method for freight calculation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,55 @@ | ||
# Introduction | ||
### 1. Introduction: | ||
|
||
Bagisto UPS Shipping add-on provides UPS Shipping methods for shipping the product. By using this, you can provide UPS (United Parcel Service) shipping. | ||
UPS Shipping module provides UPS Shipping methods for shipping the product. By using this, you can provide UPS (United Parcel Service) shipping. UPS is widely acknowledged as a world-class company and now it is with the Bagisto. | ||
This module works with the Bagisto core Package. To use this module you must have installed Bagisto. | ||
|
||
It packs in lots of demanding features that allows your business to scale in no time: | ||
|
||
- The admin can enable or disable the UPS Shipping method. | ||
* The admin can enable or disable the UPS Shipping method. | ||
|
||
- The admin can set the UPS shipping method name that will be shown from the front side. | ||
* The admin can set the UPS shipping method name that will be shown from the front side. | ||
|
||
- The admin can define the allowed methods and weight units. | ||
* The admin can define the allowed methods and weight units. | ||
|
||
- Dynamic shipping method for freight calculation. | ||
* Dynamic shipping method for freight calculation. | ||
|
||
- Tax rate can be calculated based on UPS shipping | ||
### 2. Requirements: | ||
|
||
## Requirements: | ||
* **Bagisto**: v0.1.6 or higher. | ||
|
||
- **Bagisto**: v1.3.3 | ||
### 3. Installation: | ||
|
||
## Installation : | ||
- Run the following command | ||
``` | ||
composer require bagisto/bagisto-ups-shipping | ||
``` | ||
* Unzip the respective extension zip and then merge "packages" folders into project root directory. | ||
* Goto config/app.php file and add following line under 'providers' | ||
|
||
- Run these commands below to complete the setup | ||
``` | ||
~~~ | ||
Webkul\UpsShipping\Providers\UpsShippingServiceProvider::class | ||
~~~ | ||
|
||
* Goto composer.json file and add following line under 'psr-4' | ||
|
||
~~~ | ||
"Webkul\\UpsShipping\\": "packages/Webkul/UpsShipping/src" | ||
~~~ | ||
|
||
* Run these commands below to complete the setup | ||
|
||
~~~ | ||
composer dump-autoload | ||
``` | ||
~~~ | ||
|
||
``` | ||
~~~ | ||
php artisan route:cache | ||
php artisan optimize | ||
~~~ | ||
|
||
~~~ | ||
php artisan config:clear | ||
~~~ | ||
|
||
~~~ | ||
php artisan vendor:publish | ||
``` | ||
-> Press 0 and then press enter to publish all assets and configurations. | ||
~~~ | ||
|
||
> now execute the project on your specified domain. | ||
> now execute the project on your specified domain. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,13 @@ | ||
{ | ||
"name": "bagisto/bagisto-ups-shipping", | ||
"name": "bagisto/laravel-ups", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Naresh Verma", | ||
"email": "[email protected]" | ||
}, { | ||
"name": "Vivek Sharma", | ||
"email": "[email protected]" | ||
"name": "Bagisto", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"konekt/concord": "^1.2" | ||
}, | ||
"require": {}, | ||
"autoload": { | ||
"psr-4": { | ||
"Webkul\\UpsShipping\\": "src/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"private": true, | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build" | ||
}, | ||
"devDependencies": { | ||
"autoprefixer": "^10.4.14", | ||
"axios": "^1.1.2", | ||
"laravel-vite-plugin": "^0.7.2", | ||
"postcss": "^8.4.23", | ||
"tailwindcss": "^3.3.2", | ||
"vite": "^4.0.0", | ||
"vue": "^3.2.47" | ||
}, | ||
"dependencies": { | ||
"@vee-validate/i18n": "^4.9.1", | ||
"@vee-validate/rules": "^4.9.1", | ||
"mitt": "^3.0.0", | ||
"vee-validate": "^4.9.1", | ||
"vue-flatpickr": "^2.3.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.
import class. dont use like this.