-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #164 from margud/indexFiles
Index files
- Loading branch information
Showing
1,151 changed files
with
34,645 additions
and
21,241 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,33 +1,33 @@ | ||
{ | ||
"name": "mollie/prestashop", | ||
"license": "BSD-2.0", | ||
"description": "Mollie module for PrestaShop", | ||
"require": { | ||
"ext-curl": "*", | ||
"ext-json": "*", | ||
"ext-simplexml": "*", | ||
"symfony/polyfill-mbstring": "^1.9", | ||
"symfony/dependency-injection": "^3.4", | ||
"symfony/config": "^3.4", | ||
"symfony/expression-language": "^3.4", | ||
"symfony/yaml": "^3.4", | ||
"prestashop/decimal": "^1.3", | ||
"mollie/mollie-api-php": "^2.17" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Mollie\\": "src/" | ||
}, | ||
"classmap": [ | ||
"vendor/", | ||
"controllers/", | ||
"src/Entity" | ||
] | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "5.6" | ||
} | ||
}, | ||
"type": "prestashop-module" | ||
} | ||
{ | ||
"name": "mollie/prestashop", | ||
"license": "BSD-2.0", | ||
"description": "Mollie module for PrestaShop", | ||
"require": { | ||
"ext-curl": "*", | ||
"ext-json": "*", | ||
"ext-simplexml": "*", | ||
"symfony/polyfill-mbstring": "^1.9", | ||
"symfony/dependency-injection": "^3.4", | ||
"symfony/config": "^3.4", | ||
"symfony/expression-language": "^3.4", | ||
"symfony/yaml": "^3.4", | ||
"prestashop/decimal": "^1.3", | ||
"mollie/mollie-api-php": "^2.17" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Mollie\\": "src/" | ||
}, | ||
"classmap": [ | ||
"vendor/", | ||
"controllers/", | ||
"src/Entity" | ||
] | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "5.6" | ||
} | ||
}, | ||
"type": "prestashop-module" | ||
} |
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
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,12 +1,12 @@ | ||
services: | ||
Mollie\Builder\FormBuilder: | ||
arguments: | ||
- '@mollie' | ||
- '@Mollie\Service\ApiService' | ||
- '@Mollie\Service\CountryService' | ||
- '@Mollie\Repository\CountryRepository' | ||
- '@Mollie\Service\ConfigFieldService' | ||
- '@Mollie\Service\MolCarrierInformationService' | ||
- '@language' | ||
- '@smarty' | ||
services: | ||
Mollie\Builder\FormBuilder: | ||
arguments: | ||
- '@mollie' | ||
- '@Mollie\Service\ApiService' | ||
- '@Mollie\Service\CountryService' | ||
- '@Mollie\Repository\CountryRepository' | ||
- '@Mollie\Service\ConfigFieldService' | ||
- '@Mollie\Service\MolCarrierInformationService' | ||
- '@language' | ||
- '@smarty' | ||
- '@link' |
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,32 +1,32 @@ | ||
services: | ||
context: | ||
class: 'Context' | ||
factory: ['Mollie\Factory\ContextFactory', 'getContext'] | ||
|
||
controller: | ||
class: 'Controller' | ||
factory: ['Mollie\Factory\ContextFactory', 'getController'] | ||
|
||
cookie: | ||
class: 'Cookie' | ||
factory: ['Mollie\Factory\ContextFactory', 'getCookie'] | ||
|
||
language: | ||
class: 'Language' | ||
factory: ['Mollie\Factory\ContextFactory', 'getLanguage'] | ||
|
||
currency: | ||
class: 'Currency' | ||
factory: ['Mollie\Factory\ContextFactory', 'getCurrency'] | ||
|
||
smarty: | ||
class: 'Smarty' | ||
factory: ['Mollie\Factory\ContextFactory', 'getSmarty'] | ||
|
||
shop: | ||
class: 'Shop' | ||
factory: ['Mollie\Factory\ContextFactory', 'getShop'] | ||
|
||
link: | ||
class: 'Shop' | ||
services: | ||
context: | ||
class: 'Context' | ||
factory: ['Mollie\Factory\ContextFactory', 'getContext'] | ||
|
||
controller: | ||
class: 'Controller' | ||
factory: ['Mollie\Factory\ContextFactory', 'getController'] | ||
|
||
cookie: | ||
class: 'Cookie' | ||
factory: ['Mollie\Factory\ContextFactory', 'getCookie'] | ||
|
||
language: | ||
class: 'Language' | ||
factory: ['Mollie\Factory\ContextFactory', 'getLanguage'] | ||
|
||
currency: | ||
class: 'Currency' | ||
factory: ['Mollie\Factory\ContextFactory', 'getCurrency'] | ||
|
||
smarty: | ||
class: 'Smarty' | ||
factory: ['Mollie\Factory\ContextFactory', 'getSmarty'] | ||
|
||
shop: | ||
class: 'Shop' | ||
factory: ['Mollie\Factory\ContextFactory', 'getShop'] | ||
|
||
link: | ||
class: 'Shop' | ||
factory: ['Mollie\Factory\ContextFactory', 'getLink'] |
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,36 @@ | ||
<?php | ||
/* | ||
* 2007-2017 PrestaShop | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* This source file is subject to the Open Software License (OSL 3.0) | ||
* that is bundled with this package in the file LICENSE.txt. | ||
* It is also available through the world-wide-web at this URL: | ||
* http://opensource.org/licenses/osl-3.0.php | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* | ||
* DISCLAIMER | ||
* | ||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer | ||
* versions in the future. If you wish to customize PrestaShop for your | ||
* needs please refer to http://www.prestashop.com for more information. | ||
* | ||
* @author PrestaShop SA <[email protected]> | ||
* @copyright 2007-2016 PrestaShop SA | ||
* @version Release: $Revision$ | ||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | ||
* International Registered Trademark & Property of PrestaShop SA | ||
*/ | ||
|
||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); | ||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); | ||
|
||
header("Cache-Control: no-store, no-cache, must-revalidate"); | ||
header("Cache-Control: post-check=0, pre-check=0", false); | ||
header("Pragma: no-cache"); | ||
|
||
header("Location: ../"); | ||
exit; |
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,14 +1,14 @@ | ||
services: | ||
Mollie\Repository\PaymentMethodRepository: | ||
|
||
Mollie\Repository\OrderFeeRepository: | ||
|
||
Mollie\Repository\CountryRepository: | ||
|
||
Mollie\Repository\OrderShipmentRepository: | ||
|
||
Mollie\Repository\MethodCountryRepository: | ||
|
||
Mollie\Repository\MolCarrierInformationRepository: | ||
|
||
Mollie\Repository\ModuleRepository: | ||
services: | ||
Mollie\Repository\PaymentMethodRepository: | ||
|
||
Mollie\Repository\OrderFeeRepository: | ||
|
||
Mollie\Repository\CountryRepository: | ||
|
||
Mollie\Repository\OrderShipmentRepository: | ||
|
||
Mollie\Repository\MethodCountryRepository: | ||
|
||
Mollie\Repository\MolCarrierInformationRepository: | ||
|
||
Mollie\Repository\ModuleRepository: |
Oops, something went wrong.