spryker/app-kernel

AppKernel module

0.2.2 2024-06-11 10:35 UTC

This package is auto-updated.

Last update: 2024-07-26 11:30:01 UTC


README

Latest Stable Version Minimum PHP Version

Provides SyncAPI and AsyncAPI schema files and the needed code to make the Mini-Framework an App.

Installation

composer require spryker/app-kernel

Configure

App Identifier

config/Shared/config_default.php

use Spryker\Shared\AppKernel\AppConstants;

$config[AppConstants::APP_IDENTIFIER] = getenv('APP_IDENTIFIER') ?: 'hello-world';

Testing the AppKernel

You can test the AppKernel as usual with Codeception. Before that you need to run some commands:

composer setup

With these commands you've set up the AppKernel and can start the tests

vendor/bin/codecept build
vendor/bin/codecept run