Skip to content

Commit

Permalink
Prepare release v1.0 based on Symfony v5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
94noni committed Nov 17, 2021
1 parent 5fb55a8 commit 458220c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DependencyInjection/NoniHtml2pdfExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function load(array $configs, ContainerBuilder $container)
$config = $this->processConfiguration($configuration, $configs);

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

$file = new FileLocator(__DIR__.'/../Resources/config');
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ How to install?
Use [Composer](https://getcomposer.org) to install it:

```bash
$ composer require noni/html2pdf-bundle
$ composer require 94noni/html2pdf-bundle
```

Enable it in your `config/bundles.php` file:
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
"require": {
"php": ">=7.4",
"spipu/html2pdf": "^5.2",
"symfony/dependency-injection": "^5.3",
"symfony/http-kernel": "^5.3"
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4"
},
"require-dev": {
"symfony/framework-bundle": "^5.3",
"symfony/yaml": "^5.3"
"symfony/framework-bundle": "^5.4",
"symfony/yaml": "^5.4"
},
"autoload": {
"psr-4": { "Noni\\Html2pdfBundle\\": "./" }
Expand Down

0 comments on commit 458220c

Please sign in to comment.