spryker-academy / yves-hello-world-page
HelloWorldPage module for Yves
dev-main
2025-08-06 16:29 UTC
Requires
- php: >=8.2
- spryker/kernel: ^3.30.0
- spryker/router: ^1.0.0
This package is auto-updated.
Last update: 2025-08-06 16:56:12 UTC
README
A Spryker example of an Yves module
Installation
Follow these steps to install and configure the module in your Spryker project.
1. Install via Composer
composer require spryker-academy/yves-hello-world-page
2. Add Core Namespace
Register the SprykerAcademy
namespace in your project's configuration to allow the Spryker kernel to locate the module's classes.
File: config/Shared/config_default.php
<?php use Spryker\Shared\Kernel\KernelConstants; // ... $config[KernelConstants::CORE_NAMESPACES] = [ 'Spryker', 'SprykerAcademy', // Add this line ];
3. Generate Transfer Objects
The module comes with a transfer definition. You must regenerate the transfer classes
vendor/bin/console transfer:generate
License
This project is licensed under the MIT License—see the LICENSE file for details.