spryker / app-kernel
AppKernel module
Installs: 4 377
Dependents: 4
Suggesters: 0
Security: 0
Stars: 0
Watchers: 33
Forks: 1
Open Issues: 1
Requires
- php: >=8.1
- spryker/app-kernel-extension: ^1.0.0
- spryker/glue-application-extension: ^1.0.0
- spryker/kernel: ^3.30.0
- spryker/log: ^3.0.0
- spryker/message-broker: ^1.11.0
- spryker/propel-encryption-behavior: ^0.1.1
- spryker/secrets-manager: ^1.0.0
- spryker/secrets-manager-extension: ^1.0.0
- spryker/symfony: ^3.0.0
- spryker/transfer: ^3.33.0
- spryker/translator: ^1.13.0
- spryker/util-encoding: ^2.0.0
- spryker/util-text: ^1.0.0
Requires (Dev)
- codeception/codeception: ^5.0
- codeception/module-cli: ^2.0.0
- codeception/module-filesystem: ^3.0.0
- codeception/module-phpbrowser: ^3.0.0
- codeception/module-rest: ^3.0.0
- codeception/module-webdriver: ^3.0.0
- phpstan/phpdoc-parser: 1.25.0
- phpstan/phpstan: 1.10.66
- rector/rector: ^0.19.0
- spryker/code-sniffer: *
- spryker/container: *
- spryker/development: ^3.34.0
- spryker/glue-application: ^1.64.0
- spryker/glue-backend-api-application: ^1.6.0
- spryker/glue-json-api-convention: ^1.3.0
- spryker/http: ^1.11.0
- spryker/message-broker-aws: ^1.7.0
- spryker/propel: *
- spryker/testify: *
- spryker/testify-async-api: ^0.1.4
README
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