### Install QuickPay Magento 2 Gateway Source: https://github.com/quickpay/magento-v2/blob/master/README.md This snippet outlines the Composer-based installation process for the QuickPay Magento 2 Gateway. It includes enabling the module, upgrading the Magento setup, deploying static content, compiling dependencies, and clearing the cache. Composer installation is mandatory due to module requirements. ```bash composer require quickpay/magento2 php bin/magento module:enable QuickPay_Gateway php bin/magento setup:upgrade php bin/magento setup:static-content:deploy php bin/magento setup:di:compile php bin/magento cache:clean ``` -------------------------------- ### Open Software License (OSL) v. 3.0 Source: https://github.com/quickpay/magento-v2/blob/master/LICENSE.txt The Open Software License (OSL) v. 3.0 governs the use, modification, and distribution of software. It grants users rights to reproduce, adapt, distribute, perform, and display the work, along with patent and source code licenses. Key conditions include retaining attribution notices and treating external deployments as distributions. ```APIDOC OpenSoftwareLicense_v3_0: description: "The Open Software License (OSL) version 3.0 is a free and open-source software license." sections: 1. Grant_of_Copyright_License: description: "Grants worldwide, royalty-free, non-exclusive, sublicensable license for the duration of the copyright." permissions: - "Reproduce the Original Work in copies, alone or as part of a collective work." - "Translate, adapt, alter, transform, modify, or arrange the Original Work, creating Derivative Works." - "Distribute or communicate copies of the Original Work and Derivative Works to the public, under this Open Software License." - "Perform the Original Work publicly." - "Display the Original Work publicly." 2. Grant_of_Patent_License: description: "Grants worldwide, royalty-free, non-exclusive, sublicensable license for patent claims embodied in the Original Work." permissions: - "Make, use, sell, offer for sale, have made, and import the Original Work and Derivative Works." 3. Grant_of_Source_Code_License: description: "Requires Licensor to provide a machine-readable copy of the Source Code and all available documentation describing how to modify it." conditions: - "Source Code must be provided with each distributed copy of the Original Work." - "Licensor may satisfy this obligation by placing Source Code in an accessible information repository." 4. Exclusions_From_License_Grant: description: "Specifies limitations on the license grants." exclusions: - "Names of Licensor or contributors cannot be used to endorse or promote derived products without permission." - "No license granted to Licensor's trademarks, copyrights, patents, trade secrets, or other intellectual property, except as expressly stated." - "No patent license granted for embodiments of patent claims other than those defined in Section 2." - "No license granted to Licensor's trademarks even if included in the Original Work." - "Does not prohibit Licensor from licensing the Original Work under different terms." 5. External_Deployment: description: "Defines 'External Deployment' and its conditions." definition: "Use, distribution, or communication of the Original Work or Derivative Works such that it may be used by anyone other than You." condition: "Treat any External Deployment as a distribution under section 1(c)." 6. Attribution_Rights: description: "Requirements for retaining and displaying attribution notices." requirements: - "Retain all copyright, patent, or trademark notices from the Original Work's Source Code in Derivative Works." - "Retain all notices of licensing and descriptive text identified as an 'Attribution Notice'." - "Cause the Source Code for Derivative Works to carry a prominent Attribution Notice informing recipients of modifications." ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.