Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/composer-require-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ concurrency:
jobs:
composer-require-checker:
uses: yiisoft/actions/.github/workflows/composer-require-checker.yml@master
with:
php: >-
['8.1', '8.2', '8.3', '8.4', '8.5']
with:
php: >-
['8.1', '8.2', '8.3', '8.4', '8.5']
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Enh #294: Explicitly import classes and functions in "use" section (@mspirkov)
- Enh #296: Add PHP 8.5 support (@terabytesoftw)
- Enh #297: Remove unnecessary files from Composer package (@mspirkov)
- Enh #298: Update Bootstrap from 5.0.0-beta to 5.3.8 (@rossaddison)

## 1.0.0 April 13, 2025

Expand Down
8 changes: 4 additions & 4 deletions src/Assets/BootstrapCdnAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ final class BootstrapCdnAsset extends AssetBundle
*/
public array $css = [
[
'https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css',
'integrity' => 'sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1',
'https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css',
'integrity' => 'sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB',
'crossorigin' => 'anonymous',
],
];
Expand All @@ -33,8 +33,8 @@ final class BootstrapCdnAsset extends AssetBundle
*/
public array $js = [
[
'https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js',
'integrity' => 'sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW',
'https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js',
'integrity' => 'sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI',
'crossorigin' => 'anonymous',
],
];
Expand Down