Skip to content

Commit 352ee31

Browse files
committed
Craft 3
1 parent e33b275 commit 352ee31

File tree

2,163 files changed

+119953
-204470
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,163 files changed

+119953
-204470
lines changed

.github/ISSUE_TEMPLATE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### Description
2+
3+
4+
5+
### Steps to reproduce
6+
7+
1.
8+
2.
9+
10+
### Additional info
11+
12+
- Plugin version:
13+
- Craft version:

.gitignore

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
# Numerous always-ignore extensions
2-
# ----------------------------------------------------------------------
3-
*.diff
4-
*.err
5-
*.orig
6-
*.log
7-
*.rej
8-
*.swo
9-
*.swp
10-
*.vi
11-
*~
12-
*.sass-cache
1+
# CRAFT ENVIRONMENT
2+
.env.php
3+
.env.sh
4+
.env
135

14-
# OS or Editor folders
15-
# ----------------------------------------------------------------------
16-
*.DS_Store
17-
Thumbs.db
6+
# COMPOSER
7+
/vendor
8+
9+
# BUILD FILES
10+
/bower_components/*
11+
/node_modules/*
12+
/build/*
13+
/yarn-error.log
14+
15+
# MISC FILES
1816
.cache
17+
.DS_Store
18+
.idea
1919
.project
2020
.settings
21-
.tmproj
21+
.map
2222
*.esproj
23-
nbproject
24-
*.sublime-project
2523
*.sublime-workspace
26-
*.komodoproject
27-
.komodotools
28-
_notes
29-
dwsync.xml
30-
.idea/
31-
/composer.lock
24+
*.sublime-project
25+
*.tmproj
26+
*.tmproject
27+
.vscode/*
28+
!.vscode/settings.json
29+
!.vscode/tasks.json
30+
!.vscode/launch.json
31+
!.vscode/extensions.json

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
## 1.0.2 - 2018-08-01
4+
5+
### Added
6+
- Add config setting to disable cache.
7+
- Add UPS Provider.
8+
9+
### Fixed
10+
- Fedex - Add config setting `disableCache` for test endpoint (not default when using DevMode).
11+
- Fedex - fix services from pre1.0.1 causing issues.
12+
13+
## 1.0.1 - 2018-01-22
14+
15+
### Added
16+
- Add management of shipping category conditions for shipping methods.
17+
18+
## 1.0.0 - 2017-12-11
19+
20+
- Initial release.

README.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +0,0 @@
1-
# Postie Plugin for Craft Commerce
2-
3-
<img width="500" src="https://verbb.io/uploads/plugins/postie/_800x455_crop_center-center/postie-social-card.png">
4-
5-
Postie is a Craft Commerce plugin to provide your customers with real-time shipping costs from your preferred provider. Currently supports Australia Post, FedEx and USPS, with plenty more on the way!
6-
7-
## Documentation
8-
9-
Visit the [Postie Plugin page](https://verbb.io/craft-plugins/postie) for all documentation, guides, pricing and developer resources.
10-
11-
## Support
12-
13-
Get in touch with us via the [Postie Support page](https://verbb.io/craft-plugins/postie/support) or by [creating a Github issue](https://github.com/verbb/postie/issues)
14-
15-
<h2></h2>
16-
17-
<a href="https://verbb.io" target="_blank">
18-
<img width="100" src="https://verbb.io/assets/img/verbb-pill.svg">
19-
</a>

changelog.json

Lines changed: 0 additions & 30 deletions
This file was deleted.

composer.json

Lines changed: 45 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,47 @@
11
{
2-
"name": "verbb/postie",
3-
"description": "Plugin for Craft Commerce providing shipping methods as Australian Post, UPS, DHL and many more. It is easy extendable to implement your own shipping method.",
4-
"type": "craft-plugin",
5-
"authors": [
6-
{
7-
"name": "Verbb",
8-
"homepage": "http://verbb.io/"
9-
}
10-
],
11-
"require": {
12-
"composer/installers": "~1.0",
13-
"fontis/auspost-api-php": "*",
14-
"jeremy-dunn/php-fedex-api-wrapper": "*",
15-
"vinceg/usps-php-api": "*",
16-
"gabrielbull/ups-api": "^0.8.0",
17-
"php-units-of-measure/php-units-of-measure": "^2.1"
18-
},
19-
"config": {
20-
"vendor-dir": "postie/vendor"
21-
},
22-
"autoload": {
23-
"psr-4": {
24-
"Postie\\": "postie/Postie"
25-
}
26-
}
2+
"name": "verbb/postie",
3+
"description": "Plugin for Craft Commerce providing shipping methods as Australian Post, UPS, DHL and many more. It is easy extendable to implement your own shipping method.",
4+
"type": "craft-plugin",
5+
"version": "1.0.0",
6+
"keywords": [
7+
"craft",
8+
"cms",
9+
"craftcms",
10+
"craft-plugin",
11+
"postie"
12+
],
13+
"support": {
14+
"email": "[email protected]",
15+
"issues": "https://github.com/verbb/postie/issues?state=open",
16+
"source": "https://github.com/verbb/postie",
17+
"docs": "https://github.com/verbb/postie",
18+
"rss": "https://github.com/verbb/postie/commits/v2.atom"
19+
},
20+
"license": "proprietary",
21+
"authors": [
22+
{
23+
"name": "Verbb",
24+
"homepage": "https://verbb.io"
25+
}
26+
],
27+
"require": {
28+
"craftcms/cms": "^3.1.0",
29+
"craftcms/commerce": "^2.1.0",
30+
"fontis/auspost-api-php": "^1.0.0",
31+
"jeremy-dunn/php-fedex-api-wrapper": "^3.0",
32+
"vinceg/usps-php-api": "^1.0.0",
33+
"gabrielbull/ups-api": "^0.8.0",
34+
"php-units-of-measure/php-units-of-measure": "^2.1"
35+
},
36+
"autoload": {
37+
"psr-4": {
38+
"verbb\\postie\\": "src/"
39+
}
40+
},
41+
"extra": {
42+
"name": "Postie",
43+
"handle": "postie",
44+
"changelogUrl": "https://raw.githubusercontent.com/verbb/postie/craft-3/CHANGELOG.md",
45+
"class": "verbb\\postie\\Postie"
46+
}
2747
}

0 commit comments

Comments
 (0)