-
Notifications
You must be signed in to change notification settings - Fork 1
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
0 parents
commit c53a33b
Showing
35 changed files
with
4,681 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @mfrankiewicz @michaloo |
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,10 @@ | ||
/.docker/ | ||
/.idea/ | ||
/dist | ||
/vendor/ | ||
/config.xml | ||
|
||
###> friendsofphp/php-cs-fixer ### | ||
/.php-cs-fixer.php | ||
/.php-cs-fixer.cache | ||
###< friendsofphp/php-cs-fixer ### |
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,9 @@ | ||
<?php | ||
|
||
$config = new PrestaShop\CodingStandards\CsFixer\Config(); | ||
|
||
/** @var \Symfony\Component\Finder\Finder $finder */ | ||
$finder = $config->setUsingCache(true)->getFinder(); | ||
$finder->in(__DIR__)->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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
2023 Handcraft Byte | ||
|
||
NOTICE OF LICENSE | ||
|
||
This source file is subject to the Academic Free License 3.0 (AFL-3.0) | ||
that is bundled with this package in the file LICENSE. | ||
It is also available through the world-wide-web at this URL: | ||
https://opensource.org/licenses/AFL-3.0 | ||
|
||
@author Tag Concierge <contact@tagconcierge.com> | ||
@copyright 2023 Tag Concierge | ||
@license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) |
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 @@ | ||
# Tag Concierge PrestaShop Module Free |
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,23 @@ | ||
{ | ||
"name": "tagconcierge/tc-prestashop-module-free", | ||
"type": "prestashop-module", | ||
"description": "Leverage the Flexibility of Google Tag Manager to Measure and Optimize Sales Results (GA4 ready).", | ||
"autoload": { | ||
"psr-4": { | ||
"PrestaShop\\Module\\TagConciergeFree\\": "src/" | ||
} | ||
}, | ||
"config": { | ||
"prepend-autoloader": false, | ||
"sort-packages": true | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "^2.14", | ||
"prestashop/autoindex": "^1.0", | ||
"prestashop/php-dev-tools": "^3.16", | ||
"roave/security-advisories": "dev-latest" | ||
}, | ||
"scripts": { | ||
"fix": "./vendor/bin/php-cs-fixer fix --allow-risky=yes" | ||
} | ||
} |
Oops, something went wrong.