Adding ability to work with Symfony 7.x
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -1,42 +1,37 @@
|
||||
{
|
||||
"name": "pcm/icon-bundle",
|
||||
"description": "Twig icon bundle",
|
||||
|
||||
"type": "symfony-bundle",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Bradley Goode",
|
||||
"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"
|
||||
"name": "pcm/icon-bundle",
|
||||
"description": "Twig icon bundle",
|
||||
"type": "symfony-bundle",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Bradley Goode",
|
||||
"email": "bg@pcmsystems.co.uk"
|
||||
},
|
||||
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"symfony/phpunit-bridge": "^6.1"
|
||||
},
|
||||
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Pcm\\IconBundle\\": "src/"
|
||||
}
|
||||
},
|
||||
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Pcm\\IconBundle\\Tests\\": "tests/"
|
||||
}
|
||||
{
|
||||
"name": "Matt Feeny",
|
||||
"email": "mf@pcmsystems.co.uk"
|
||||
}
|
||||
],
|
||||
"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/"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user