Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jordikroon committed May 16, 2022
1 parent f19283f commit eec2fb0
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"description": "Geo Address fields for Craft Sections",
"type": "craft-plugin",
"support": {
"docs": "https://github.com/tdeNL/craftplugin-geoaddress/blob/master/README.md",
"issues": "https://github.com/tdeNL/craftplugin-geoaddress/issues"
"docs": "https://github.com/tdeNL/craft-geoaddress/blob/master/README.md",
"issues": "https://github.com/tdeNL/craft-geoaddress/issues"
},
"license": "MIT",
"authors": [
Expand All @@ -19,7 +19,7 @@
},
"autoload": {
"psr-4": {
"TDE\\GeoAddress\\": "src/"
"tde\\craft\\geoaddress\\": "src/"
}
},
"extra": {
Expand All @@ -30,9 +30,9 @@
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/tdeNL/craftplugin-geoaddress/master/CHANGELOG.md",
"components": {
"geoAddressService": "TDE\\GeoAddress\\services\\GeoAddressService"
"geoAddressService": "tde\\craft\\geoaddress\\services\\GeoAddressService"
},
"class": "TDE\\GeoAddress\\GeoAddress"
"class": "tde\\craft\\geoaddress"
},
"config": {
"allow-plugins": {
Expand Down
8 changes: 4 additions & 4 deletions src/GeoAddress.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

declare(strict_types=1);

namespace TDE\GeoAddress;
namespace tde\craft\geoaddress;

use Craft;
use craft\base\Model;
use craft\base\Plugin;
use craft\services\Fields;
use craft\events\RegisterComponentTypesEvent;
use TDE\GeoAddress\models\GeoAddressSettingsModel;
use TDE\GeoAddress\services\GeoAddressService;
use TDE\GeoAddress\twigextensions\GeoAddressTwigExtension;
use tde\craft\geoaddress\models\GeoAddressSettingsModel;
use tde\craft\geoaddress\services\GeoAddressService;
use tde\craft\geoaddress\twigextensions\GeoAddressTwigExtension;
use yii\base\Event;
use TDE\GeoAddress\fields\GeoAddressField;

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

namespace TDE\GeoAddress\assetbundles\geoaddressfield;
namespace tde\craft\geoaddress\assetbundles\geoaddressfield;

use Craft;
use craft\web\AssetBundle;
Expand Down
6 changes: 3 additions & 3 deletions src/fields/GeoAddressField.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

declare(strict_types=1);

namespace TDE\GeoAddress\fields;
namespace tde\craft\geoaddress\fields;

use Craft;
use craft\base\ElementInterface;
use craft\base\Field;
use craft\base\PreviewableFieldInterface;
use craft\helpers\Html;
use TDE\GeoAddress\GeoAddress;
use TDE\GeoAddress\models\GeoAddressModel;
use tde\craft\geoaddress\GeoAddress;
use tde\craft\geoaddress\models\GeoAddressModel;
use yii\db\Schema;
use craft\helpers\Json;

Expand Down
2 changes: 1 addition & 1 deletion src/models/GeoAddressModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace TDE\GeoAddress\models;
namespace tde\craft\geoaddress\models;

use craft\base\Model;

Expand Down
2 changes: 1 addition & 1 deletion src/models/GeoAddressSettingsModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace TDE\GeoAddress\models;
namespace tde\craft\geoaddress\models;

use craft\base\Model;

Expand Down
6 changes: 3 additions & 3 deletions src/services/GeoAddressService.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

declare(strict_types=1);

namespace TDE\GeoAddress\services;
namespace tde\craft\geoaddress\services;

use Craft;
use craft\base\Component;
use TDE\GeoAddress\GeoAddress;
use TDE\GeoAddress\models\GeoAddressModel;
use tde\craft\geoaddress\GeoAddress;
use tde\craft\geoaddress\models\GeoAddressModel;

class GeoAddressService extends Component
{
Expand Down
4 changes: 2 additions & 2 deletions src/twigextensions/GeoAddressTwigExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

namespace TDE\GeoAddress\twigextensions;
namespace tde\craft\geoaddress\twigextensions;

use TDE\GeoAddress\GeoAddress;
use tde\craft\geoaddress\GeoAddress;
use Twig\Extension\AbstractExtension;
use Twig\TwigFilter;
use Twig\TwigFunction;
Expand Down

0 comments on commit eec2fb0

Please sign in to comment.