-
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.
- Loading branch information
Showing
484 changed files
with
20,193 additions
and
19,368 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
$config = new PrestaShop\CodingStandards\CsFixer\Config(); | ||
|
||
$config | ||
->setUsingCache(true) | ||
->getFinder() | ||
->in(__DIR__) | ||
->exclude('translations') | ||
->exclude('mails') | ||
->exclude('libraries') | ||
->exclude('vendor'); | ||
|
||
return $config; |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
/** | ||
* Mollie https://www.mollie.nl | ||
* | ||
* @author Mollie B.V. <[email protected]> | ||
* @copyright Mollie B.V. | ||
* @license https://github.com/mollie/PrestaShop/blob/master/LICENSE.md | ||
* | ||
* @see https://github.com/mollie/PrestaShop | ||
* @codingStandardsIgnoreStart | ||
*/ | ||
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
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,45 +1,46 @@ | ||
{ | ||
"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": "dev-master", | ||
"segmentio/analytics-php": "^1.5", | ||
"sentry/sentry": "^1.11.0", | ||
"vlucas/phpdotenv": "3.4" | ||
}, | ||
"require-dev": { | ||
"prestashop/php-dev-tools": "^3.0" | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Mollie\\Tests\\": "tests/" | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Mollie\\": "src/" | ||
"name": "mollie/prestashop", | ||
"license": "AFL-3.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": "dev-master", | ||
"segmentio/analytics-php": "^1.5", | ||
"sentry/sentry": "^1.11.0", | ||
"vlucas/phpdotenv": "3.4" | ||
}, | ||
"classmap": [ | ||
"mollie.php", | ||
"controllers/", | ||
"src/" | ||
] | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "5.6" | ||
"require-dev": { | ||
"prestashop/php-dev-tools": "^3.0" | ||
}, | ||
"prepend-autoloader": false | ||
}, | ||
"type": "prestashop-module" | ||
} | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Mollie\\Tests\\": "tests/" | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Mollie\\": "src/" | ||
}, | ||
"classmap": [ | ||
"mollie.php", | ||
"controllers/", | ||
"src/" | ||
] | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "5.6" | ||
}, | ||
"prepend-autoloader": false | ||
}, | ||
"type": "prestashop-module", | ||
"author": "PrestaShop" | ||
} |
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 |
---|---|---|
|
@@ -4,10 +4,9 @@ | |
* | ||
* @author Mollie B.V. <[email protected]> | ||
* @copyright Mollie B.V. | ||
* @license https://github.com/mollie/PrestaShop/blob/master/LICENSE.md | ||
* | ||
* @see https://github.com/mollie/PrestaShop | ||
* | ||
* @license https://github.com/mollie/PrestaShop/blob/master/LICENSE.md | ||
* @codingStandardsIgnoreStart | ||
*/ | ||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); | ||
|
Oops, something went wrong.