Adding ability to work with Symfony 7.x

This commit is contained in:
2024-08-05 11:19:38 +01:00
parent ade021b8a6
commit 761f02ff9b
2 changed files with 36 additions and 38 deletions

View File

@@ -5,5 +5,8 @@
- Add new exceptions and messages to make debugging a little bit faster
- Set `aria-hidden` attribute depending on whether a `title` has been set
## [1.1.0] - 2024-08-05
- Changing requirements to work with Symfony 7
## [1.0.0] - 2023-06-27
- First major version release

View File

@@ -1,7 +1,6 @@
{
"name": "pcm/icon-bundle",
"description": "Twig icon bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
@@ -10,30 +9,26 @@
"email": "bg@pcmsystems.co.uk"
},
{
"name": "Matt Feeney",
"name": "Matt Feeny",
"email": "mf@pcmsystems.co.uk"
}
],
"require": {
"symfony/dependency-injection": "^6.1",
"symfony/framework-bundle": "^6.1",
"symfony/yaml": "^6.1",
"symfony/http-client": "^6.1",
"symfony/twig-bundle": "^6.1"
"symfony/dependency-injection": "^6.1 || ^7.0",
"symfony/framework-bundle": "^6.1 || ^7.0",
"symfony/yaml": "^6.1 || ^7.0",
"symfony/http-client": "^6.1 || ^7.0",
"symfony/twig-bundle": "^6.1 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^6.1"
"symfony/phpunit-bridge": "^6.1 || ^7.0"
},
"autoload": {
"psr-4": {
"Pcm\\IconBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pcm\\IconBundle\\Tests\\": "tests/"