Skip to content

Commit 458220c

Browse files
committed
Prepare release v1.0 based on Symfony v5.4
1 parent 5fb55a8 commit 458220c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

DependencyInjection/NoniHtml2pdfExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function load(array $configs, ContainerBuilder $container)
1818
$config = $this->processConfiguration($configuration, $configs);
1919

2020
foreach ($config as $key => $value) {
21-
$container->setParameter(sprintf('html2pdf.%s', $key), $value);
21+
$container->setParameter(\sprintf('html2pdf.%s', $key), $value);
2222
}
2323

2424
$file = new FileLocator(__DIR__.'/../Resources/config');

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ How to install?
1616
Use [Composer](https://getcomposer.org) to install it:
1717

1818
```bash
19-
$ composer require noni/html2pdf-bundle
19+
$ composer require 94noni/html2pdf-bundle
2020
```
2121

2222
Enable it in your `config/bundles.php` file:

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
"require": {
2121
"php": ">=7.4",
2222
"spipu/html2pdf": "^5.2",
23-
"symfony/dependency-injection": "^5.3",
24-
"symfony/http-kernel": "^5.3"
23+
"symfony/dependency-injection": "^5.4",
24+
"symfony/http-kernel": "^5.4"
2525
},
2626
"require-dev": {
27-
"symfony/framework-bundle": "^5.3",
28-
"symfony/yaml": "^5.3"
27+
"symfony/framework-bundle": "^5.4",
28+
"symfony/yaml": "^5.4"
2929
},
3030
"autoload": {
3131
"psr-4": { "Noni\\Html2pdfBundle\\": "./" }

0 commit comments

Comments
 (0)