config/ application directory configurations
common contains common config local classes
src/ application directory
Action contains action classes
Asset contains asset classes
Handler contains handlers classes
ViewInjection contains view injection classes
composer create-project --prefer-dist --stability dev yii-extension/simple-app <your project>
cd <your project>
composer require yii-extension/simple-view-bulma:@dev
By default the package includes the translation into spanish and russian.
The translation is in the /storage/translations
directory.
composer require yiisoft/translator-extractor --prefer-dist
The root directory of simple-app: config/packages/yiisoft-translator-extractor/console.php
:
<?php
declare(strict_types=1);
use Yiisoft\Aliases\Aliases;
use Yiisoft\Translator\Extractor\Extractor;
/** @var array $params */
return [
Extractor::class => [
'__construct()' => [
'messageReader' => static fn (Aliases $aliases) => new \Yiisoft\Translator\Message\Php\MessageSource(
$aliases->get('@simple-view-bulma/translations')
),
'messageWriter' => static fn (Aliases $aliases) => new \Yiisoft\Translator\Message\Php\MessageSource(
$aliases->get('@simple-view-bulma/translations')
),
],
],
];
The root directory of simple-app:
./yii translator/extract --languages=es --only=**/vendor/yii-extension/simple-view-bulma/storage/**
The package is tested with Codeception. To run tests:
php -S 127.0.0.1:8080 -t public > yii.log 2>&1 &
vendor/bin/codecept run
The code is statically analyzed with Psalm. To run static analysis:
./vendor/bin/psalm
The yii-extension/simple-view-bulma
for Yii Packages is free software.
It is released under the terms of the BSD License. Please see LICENSE
for more information.
Maintained by Yii Extension.