Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrankiewicz committed Apr 18, 2023
0 parents commit c53a33b
Show file tree
Hide file tree
Showing 35 changed files with 4,681 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @mfrankiewicz @michaloo
10 changes: 10 additions & 0 deletions .gitignore
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 ###
9 changes: 9 additions & 0 deletions .php-cs-fixer.dist.php
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;
12 changes: 12 additions & 0 deletions LICENSE.md
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)
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Tag Concierge PrestaShop Module Free
23 changes: 23 additions & 0 deletions composer.json
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"
}
}
Loading

0 comments on commit c53a33b

Please sign in to comment.