diff --git a/composer.json b/composer.json index c694ad6..001c7d8 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,8 @@ { - "name": "pcm/example-bundle", - "description": "PCM Example Bundle", + "name": "pcm/badge-bundle", + "description": "PCM Badge Bundle", "type": "symfony-bundle", "license": "MIT", - "version": "dev-develop", "authors": [ { "name": "Bradley Goode", @@ -14,25 +13,21 @@ "email": "mf@pcmsystems.co.uk" } ], - "autoload": { "psr-4": { - "Pcm\\ExampleBundle\\": "src/" + "Pcm\\BadgeExampleBundle\\": "src/" } }, - "autoload-dev": { "psr-4": { - "Pcm\\ExampleBundle\\Tests\\": "tests/" + "Pcm\\BadgeBundle\\Tests\\": "tests/" } }, - "require": { "symfony/dependency-injection": "^7.1", "symfony/framework-bundle": "^7.1", "symfony/yaml": "^7.1" }, - "require-dev": { "symfony/test-pack": "^1.1", "friendsofphp/php-cs-fixer": "^3.61" diff --git a/config/bundles.php b/config/bundles.php index ba8705c..fe799f6 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -7,6 +7,6 @@ declare(strict_types=1); // Most of the time we probably want to have access to our bundle // in all environments (prod, dev, test etc). return [ - Pcm\ExampleBundle\PcmExampleBundle::class => ['all' => true], + Pcm\BadgeBundle\PcmBadgeBundle::class => ['all' => true], ]; diff --git a/config/definition.php b/config/definition.php index 1304c55..8778985 100644 --- a/config/definition.php +++ b/config/definition.php @@ -7,10 +7,10 @@ use Symfony\Component\Config\Definition\Configurator\DefinitionConfigurator; // This file is imported and used by the main bundle class to // define how the configuration should look. return static function (DefinitionConfigurator $definition): void { - $definition->rootNode() - ->children() - ->scalarNode('name')->defaultValue('Mr. NoName')->cannotBeEmpty()->end() - ->end() - ; + // $definition->rootNode() + // ->children() + // ->scalarNode('name')->defaultValue('Mr. NoName')->cannotBeEmpty()->end() + // ->end() + // ; }; diff --git a/config/services.yaml b/config/services.yaml index 382ef0b..ae0eb46 100644 --- a/config/services.yaml +++ b/config/services.yaml @@ -9,15 +9,15 @@ services: # Read the documentation to see why we do this: # https://symfony.com/doc/current/service_container/autowiring.html#service-autowiring-alias # - Pcm\ExampleBundle\Greeting: - public: false - alias: pcm_example.greeting + # Pcm\ExampleBundle\Greeting: + # public: false + # alias: pcm_example.greeting # Mark the alias we created as public. - pcm_example.greeting: - public: true - class: Pcm\ExampleBundle\Greeting + # pcm_example.greeting: + # public: true + # class: Pcm\ExampleBundle\Greeting # If we were defining a twig extension, we'd want to add the twig.runtime tag diff --git a/src/Greeting.php b/src/Greeting.php deleted file mode 100644 index 7aa7f91..0000000 --- a/src/Greeting.php +++ /dev/null @@ -1,18 +0,0 @@ -name); - } -} - diff --git a/src/PcmExampleBundle.php b/src/PcmBadgeBundle.php similarity index 84% rename from src/PcmExampleBundle.php rename to src/PcmBadgeBundle.php index fbfdbc3..a962d6e 100644 --- a/src/PcmExampleBundle.php +++ b/src/PcmBadgeBundle.php @@ -2,14 +2,14 @@ declare(strict_types=1); -namespace Pcm\ExampleBundle; +namespace Pcm\BadgeBundle; use Symfony\Component\Config\Definition\Configurator\DefinitionConfigurator; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; use Symfony\Component\HttpKernel\Bundle\AbstractBundle; -final class PcmExampleBundle extends AbstractBundle +final class PcmBadgeBundle extends AbstractBundle { public function loadExtension(array $config, ContainerConfigurator $container, ContainerBuilder $builder): void { @@ -27,10 +27,10 @@ final class PcmExampleBundle extends AbstractBundle * * (see services.yaml) */ - $container->services() - ->get('pcm_example.greeting') - ->arg('$name', $config['name']) - ; + // $container->services() + // ->get('pcm_example.greeting') + // ->arg('$name', $config['name']) + // ; } public function configure(DefinitionConfigurator $definition): void diff --git a/tests/TestKernel.php b/tests/TestKernel.php index 11728ac..9fa4fad 100644 --- a/tests/TestKernel.php +++ b/tests/TestKernel.php @@ -2,9 +2,8 @@ declare(strict_types=1); -namespace Pcm\ExampleBundle\Tests; +namespace Pcm\BadgeBundle\Tests; -use Pcm\ExampleBundle\PcmExampleBundle; use Symfony\Component\Config\Loader\LoaderInterface; use Symfony\Component\HttpKernel\Kernel; @@ -13,7 +12,7 @@ final class TestKernel extends Kernel public function registerBundles(): array { return [ - new PcmExampleBundle() + new PcmBadgeBundle() ]; }