Skip to content

Commit

Permalink
Package renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
landsman committed Feb 5, 2017
1 parent 06913cb commit 80c9eb7
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Configuration
.neon
```yml
extensions:
feed: StudioArtcz\GoogleDataLayer\DI\GoogleDataLayerExtension
feed: StudioArtcz\GTM\DI\GTMExtension

googleDataLayer:
gtmId: '%gtmId%'
Expand Down
21 changes: 21 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "studioartcz/gtm",
"description": "GTM wrapper with data layer for dynamic remarketing @ Nette framework.",
"homepage": "https://github.com/studioartcz/gtm",
"license": "MIT",
"authors": [
{
"name": "Michal Landsman",
"homepage": "http:https://www.studioart.cz"
}
],
"require": {
"php": ">= 5.6.0",
"nette/di": ">= 2.2.0",
"nette/php-generator": ">= 2.2.0",
"nette/utils": ">= 2.2.0"
},
"autoload": {
"classmap": ["src/"]
}
}
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* see: https://github.com/martinknor/feed/blob/d577ff9c43b01b230ac298cc8e5efbf912806200/src/DI/FeedExtension.php
* Class FeedExtension
*/
class GoogleDataLayerExtension extends Nette\DI\CompilerExtension
class GTMExtension extends Nette\DI\CompilerExtension
{
/** @var array */
private $defaults = array(
Expand Down
2 changes: 1 addition & 1 deletion src/GoogleDataLayer.php → src/GTM.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
* Class GoogleDataLayer
* @package StudioArtCz
*/
class GoogleDataLayer
class GTM
{
}
4 changes: 2 additions & 2 deletions src/Pages/BasePage.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace StudioArtCz\GoogleDataLayer\Pages;
namespace StudioArtCz\GTM\Pages;

use Nette;

abstract class BasePage extends Nette\Object implements StudioArtCz\GoogleDataLayer\Pages\IPage;
abstract class BasePage extends Nette\Object implements StudioArtCz\GTM\Pages\IPage;
{

}
4 changes: 2 additions & 2 deletions src/Pages/Ecommerce/Product.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace StudioArtcz\GoogleDataLayer\Pages\Ecommerce;
namespace StudioArtcz\GTM\Pages\Ecommerce;

use StudioArtCz\GoogleDataLayer\Pages\BasePage;
use StudioArtCz\GTM\Pages\BasePage;
use Nette;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/IPage.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace StudioArtCz\GoogleDataLayer\Pages;
namespace StudioArtCz\GTM\Pages;

interface IPage
{
Expand Down

0 comments on commit 80c9eb7

Please sign in to comment.