Alexander Borisov
Alexander Borisov
Support manifest.json generated by webpack/vite (e.g. https://vitejs.dev/guide/backend-integration.html) Like in https://symfony.com/doc/current/components/asset.html#json-file-manifest
For example: https://github.com/yiisoft/yii-cycle/blob/master/config/params.php#L35 `'connections' => []` needs to be configured ``` 'connections' => [ // Example SQLite connection: 'sqlite' => new \Cycle\Database\Config\SQLiteDriverConfig( connection: new \Cycle\Database\Config\SQLite\DsnConnectionConfig( // see https://www.php.net/manual/pdo.construct.php, DSN for...
```php class Profile { #[Nested] public ?Requisites $requisites = null; } class Requisites { #[Required] public string $bik; #[Required] public string $rs; } RulesDumper::asArray((new ObjectDataSet(new Profile()))->getRules()); ``` Result will be:...
Hello. I have a simple menu which contains top level links (e.g. Home, Orders, News etc). Concrete news are not included, as I don't render them and there are many...