Skip to content

Commit 33433b2

Browse files
committed
Chore:
- Changes in namespace and package name;
1 parent c58f323 commit 33433b2

11 files changed

+24
-24
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"name": "boo/micro-webpack-encore-plugin",
2+
"name": "boo/webpack-encore-plugin",
33
"description": "This is a Micro plugin for webpack-encore support",
44
"type": "library",
55
"version": "0.1",
66
"license": "MIT",
77
"require": {
8-
"micro/plugin-twig": "^1"
8+
"micro/plugin-twig": "^0"
99
},
1010
"autoload": {
1111
"psr-4": {
12-
"Boo\\MicroPlugin\\WebpackEncore\\": "src/"
12+
"Boo\\WebpackEncorePlugin\\": "src/"
1313
}
1414
},
1515
"authors": [

src/Asset/EntrypointLookup.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
declare(strict_types=1);
44

5-
namespace Boo\MicroPlugin\WebpackEncore\Asset;
5+
namespace Boo\WebpackEncorePlugin\Asset;
66

7-
use Boo\MicroPlugin\WebpackEncore\Exception\EntrypointNotFoundException;
8-
use Boo\MicroPlugin\WebpackEncore\WebpackEncorePluginConfigurationInterface;
7+
use Boo\WebpackEncorePlugin\Exception\EntrypointNotFoundException;
8+
use Boo\WebpackEncorePlugin\WebpackEncorePluginConfigurationInterface;
99

1010
class EntrypointLookup implements EntrypointLookupInterface
1111
{

src/Asset/EntrypointLookupInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
declare(strict_types=1);
44

5-
namespace Boo\MicroPlugin\WebpackEncore\Asset;
5+
namespace Boo\WebpackEncorePlugin\Asset;
66

7-
use Boo\MicroPlugin\WebpackEncore\Exception\EntrypointNotFoundException;
7+
use Boo\WebpackEncorePlugin\Exception\EntrypointNotFoundException;
88

99
interface EntrypointLookupInterface
1010
{

src/Exception/EntrypointNotFoundException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Boo\MicroPlugin\WebpackEncore\Exception;
5+
namespace Boo\WebpackEncorePlugin\Exception;
66

77
class EntrypointNotFoundException extends \InvalidArgumentException
88
{

src/Exception/UndefinedBuildException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Boo\MicroPlugin\WebpackEncore\Exception;
5+
namespace Boo\WebpackEncorePlugin\Exception;
66

77
class UndefinedBuildException extends \InvalidArgumentException
88
{

src/TagRenderer/TagRenderer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
declare(strict_types=1);
44

5-
namespace Boo\MicroPlugin\WebpackEncore\TagRenderer;
5+
namespace Boo\WebpackEncorePlugin\TagRenderer;
66

7-
use Boo\MicroPlugin\WebpackEncore\Asset\EntrypointLookupInterface;
7+
use Boo\WebpackEncorePlugin\Asset\EntrypointLookupInterface;
88

99
class TagRenderer implements TagRendererInterface
1010
{

src/TagRenderer/TagRendererInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Boo\MicroPlugin\WebpackEncore\TagRenderer;
5+
namespace Boo\WebpackEncorePlugin\TagRenderer;
66

77
interface TagRendererInterface
88
{

src/Twig/Extension/EntryFilesTwigExtension.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
declare(strict_types=1);
44

5-
namespace Boo\MicroPlugin\WebpackEncore\Twig\Extension;
5+
namespace Boo\WebpackEncorePlugin\Twig\Extension;
66

7-
use Boo\MicroPlugin\WebpackEncore\Asset\EntrypointLookupInterface;
8-
use Boo\MicroPlugin\WebpackEncore\TagRenderer\TagRendererInterface;
7+
use Boo\WebpackEncorePlugin\Asset\EntrypointLookupInterface;
8+
use Boo\WebpackEncorePlugin\TagRenderer\TagRendererInterface;
99
use Twig\Extension\AbstractExtension;
1010
use Twig\TwigFunction;
1111

src/WebpackEncorePlugin.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
declare(strict_types=1);
44

5-
namespace Boo\MicroPlugin\WebpackEncore;
5+
namespace Boo\WebpackEncorePlugin;
66

77
use Micro\Framework\Kernel\Plugin\ConfigurableInterface;
88
use Micro\Framework\Kernel\Plugin\PluginConfigurationTrait;
99
use Micro\Plugin\Twig\Plugin\TwigExtensionPluginInterface;
10-
use Boo\MicroPlugin\WebpackEncore\Asset\EntrypointLookup;
11-
use Boo\MicroPlugin\WebpackEncore\Asset\EntrypointLookupInterface;
12-
use Boo\MicroPlugin\WebpackEncore\TagRenderer\TagRenderer;
13-
use Boo\MicroPlugin\WebpackEncore\TagRenderer\TagRendererInterface;
14-
use Boo\MicroPlugin\WebpackEncore\Twig\Extension\EntryFilesTwigExtension;
10+
use Boo\WebpackEncorePlugin\Asset\EntrypointLookup;
11+
use Boo\WebpackEncorePlugin\Asset\EntrypointLookupInterface;
12+
use Boo\WebpackEncorePlugin\TagRenderer\TagRenderer;
13+
use Boo\WebpackEncorePlugin\TagRenderer\TagRendererInterface;
14+
use Boo\WebpackEncorePlugin\Twig\Extension\EntryFilesTwigExtension;
1515
use Twig\Extension\ExtensionInterface;
1616

1717
/**

src/WebpackEncorePluginConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Boo\MicroPlugin\WebpackEncore;
5+
namespace Boo\WebpackEncorePlugin;
66

77
use Micro\Framework\Kernel\Configuration\PluginConfiguration;
88

0 commit comments

Comments
 (0)