Skip to content

Commit

Permalink
Add assets configuration and Symfony Asset dependency
Browse files Browse the repository at this point in the history
The `assets` configuration array has been added to the `config.php` test file. Additionally, the "symfony/asset" library has been included as a project dependency within the `composer.json` file. This update ensures we
  • Loading branch information
Spomky committed Jul 12, 2024
1 parent cbeedc9 commit 1d66aab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"php": ">=8.2",
"phpdocumentor/reflection-docblock": "^5.3",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/asset": "^6.4|^7.0",
"symfony/asset-mapper": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
Expand Down
3 changes: 3 additions & 0 deletions tests/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
'secret' => 'test',
'http_method_override' => true,
'handle_all_throwables' => true,
'assets' => [
'enabled' => true,
],
'session' => [
'storage_factory_id' => 'session.storage.factory.mock_file',
'cookie_secure' => 'auto',
Expand Down

0 comments on commit 1d66aab

Please sign in to comment.