Download the PHP package prestashopcorp/module-lib-billing without Composer
On this page you can find all versions of the php package prestashopcorp/module-lib-billing. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download prestashopcorp/module-lib-billing
More information about prestashopcorp/module-lib-billing
Files in prestashopcorp/module-lib-billing
Package module-lib-billing
Short Description Utility package to retrieve Built for PS context and more
License MIT
Informations about the package module-lib-billing
PrestaShop Billing Lib
Utility package to retrieve Built for PS context and more
Installation
This package is available on Packagist, you can install it via Composer.
Version Guidance
Version | Status | Packagist - | Namespace | Repo | Docs | PHP Version |
---|---|---|---|---|---|---|
1.x | Security fixes | module-lib-billing |
PrestaShopCorp\Billing |
v1 | N/A | >=5.6 |
2.x | Security fixes | module-lib-billing |
PrestaShopCorp\Billing |
v2 | N/A | >=7.2.5 |
3.x | Latest | module-lib-billing |
PrestaShopCorp\Billing |
v3 | N/A | >=5.6 |
4.x | Latest | module-lib-billing |
PrestaShopCorp\Billing |
v4 | N/A | >=5.6 |
Register as a service in your PSx container
Beforehand, you must have defined PS Account services
Example :
How to use it
Presenter
For example in your main module's class getContent
method.
Contribute
Pre-commit Hook: Code Validation with PHP-CS-Fixer
This project uses a pre-commit hook to ensure the code follows the standards defined by PHP-CS-Fixer
. Before each commit, the hook automatically performs a check and blocks the commit if any style issues are detected.
Installation
The hook is automatically installed when you run one of the following commands:
How It Works
During a commit (git commit), the hook runs:
Troubleshooting
-
Manually reinstall the hook: If the hook is not installed or was removed, you can reinstall it manually by running:
-
Bypass the hook temporarily: If you need to bypass the hook for a specific commit, use the
--no-verify
option:⚠️ Note: Use this option cautiously, as it skips all pre-commit checks.
Automatic tests
Install
Please follow theses steps to launch unit tests
Run
Introduce a breaking change in module-lib-billing
PrestaShop module system is not able to handle multiple version of the same library.
Here is an example:
- Module A requires the v1 of a libA
- Module B requires the v2 of this same libA
If someone install module A then module B, only the v1 of libA will be loaded for both Module A and Module B.
Workaround
When introducing a breaking change to a class or method signature, you should instead create a new class rather to changing the existing one.
By creating a new class it will force the autoloader to use the last version of the lib.