-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
96 changed files
with
3,748 additions
and
765 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 |
---|---|---|
@@ -1 +1,3 @@ | ||
wordpress | ||
/.idea | ||
|
||
/vendor |
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 |
---|---|---|
|
@@ -19,3 +19,18 @@ Here you will find files to download and install the official SimPay plugin for | |
* *Safety and continuous technical support* – we guarantee proper security for all payments. And in case of problems with the integration or operation of SimPay systems, we immediately respond with support. | ||
|
||
Do you have an issue with integration or want to learn more? Write to [email protected] | ||
|
||
## Requirements | ||
|
||
* PHP >= 8.1 | ||
* Wordpress >= 6.0 | ||
* Composer >= 2.1 | ||
* SimPay API credentials | ||
|
||
## Installation | ||
|
||
1. Download the latest release from [here](#) | ||
2. Upload the plugin to your Wordpress installation | ||
3. Activate the plugin | ||
4. Go to the plugin settings page and enter your API credentials | ||
5. You're ready to go! |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
{ | ||
"name": "simpay/simpay-wordpress", | ||
"version": "2.0.0", | ||
"type": "library", | ||
"require": { | ||
"simpaypl/simpay": "^2.2", | ||
"ext-yaml": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"SimPay\\SimPayWordpressPlugin\\": "src/", | ||
"SimPay\\SimPayWordpressPlugin\\Migrations\\": "migrations/" | ||
} | ||
}, | ||
"archive": { | ||
"exclude": [ | ||
".*", | ||
"composer.*", | ||
"output.*", | ||
"DOCKER_ENV", | ||
"docker_tag" | ||
] | ||
} | ||
} |
Oops, something went wrong.