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 - Add new exceptions and messages to make debugging a little bit faster
- Set `aria-hidden` attribute depending on whether a `title` has been set - 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 ## [1.0.0] - 2023-06-27
- First major version release - First major version release

View File

@@ -1,42 +1,37 @@
{ {
"name": "pcm/icon-bundle", "name": "pcm/icon-bundle",
"description": "Twig icon bundle", "description": "Twig icon bundle",
"type": "symfony-bundle",
"type": "symfony-bundle", "license": "MIT",
"license": "MIT", "authors": [
"authors": [ {
{ "name": "Bradley Goode",
"name": "Bradley Goode", "email": "bg@pcmsystems.co.uk"
"email": "bg@pcmsystems.co.uk"
},
{
"name": "Matt Feeney",
"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"
}, },
{
"require-dev": { "name": "Matt Feeny",
"phpunit/phpunit": "^9.5", "email": "mf@pcmsystems.co.uk"
"symfony/phpunit-bridge": "^6.1"
},
"autoload": {
"psr-4": {
"Pcm\\IconBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pcm\\IconBundle\\Tests\\": "tests/"
}
} }
],
"require": {
"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 || ^7.0"
},
"autoload": {
"psr-4": {
"Pcm\\IconBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pcm\\IconBundle\\Tests\\": "tests/"
}
}
} }