Skip to content
This repository was archived by the owner on Mar 8, 2023. It is now read-only.

Commit 28f3eac

Browse files
committed
Merge branch 'release/1.0.0'
2 parents 36335cb + 1985756 commit 28f3eac

File tree

151 files changed

+1743
-592
lines changed

Some content is hidden

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

151 files changed

+1743
-592
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
composer.lock
1+
build/
2+
dist/
3+
src/config.xml

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Release Notes
2+
3+
## v1.0.0 (2019-08-30)
4+
### Added
5+
- Build script and [readme](README.md) with instructions
6+
- [Changelog](CHANGELOG.md)
7+
### Changed
8+
- Moved renamed source to `src`
9+
10+
## 2019-07-05
11+
### Added
12+
- Module & payment extension
13+
- Credit card payment with redirect flow
14+
- Configuration values for card types
15+
- Seamless integration option

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Whitelabel PrestaShop Payment Provider Extension
2+
3+
## Requirements
4+
5+
- PHP 7.1+
6+
- [PrestaShop 1.7+ Requirements](http://doc.prestashop.com/display/PS16/System+Administrator+Guide)
7+
8+
## Build
9+
10+
- Clone or download the source from this repository.
11+
12+
- Update `src/logo.png`, `src/logo.gif` and images in `src/views/img/creditcard`.
13+
14+
- Run the build script to automatically change white labeled source and create a zip file ready for distribution.
15+
16+
$ php build.php "My Payment Provider" gateway.mypaymentprovider.com
17+
18+
- Verify the contents of `build` to make sure they meet desired results.
19+
20+
- Test by installing the built extension zip file in an existing shop installation.
21+
22+
- Distribute the versioned zip file.
23+
24+
## Provide Updates
25+
26+
- Fetch the updated source from this repository (see [Changelog](CHANGELOG.md)).<br>Note: make sure to not overwrite any previous changes you've made for the previous version, or re-apply these changes.
27+
28+
- Run the build script with the same parameters as the first time.
29+
30+
- Distribute the newly versioned zip file.

0 commit comments

Comments
 (0)