Skip to content

Commit

Permalink
OXDEV-7753 Drop php 8.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
kenariosz committed Jun 25, 2024
1 parent 7a40538 commit a639a11
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 24 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG-2.x.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log for OXID Twig engine component

## v2.5.0 - Unreleased

### Removed
- PHP v8.1 support

## v2.4.0 - 2024-03-15

### Added
Expand Down
48 changes: 24 additions & 24 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"name": "oxid-esales/twig-component",
"description": "The component supports Twig template engine.",
"license": [
"proprietary"
],
"type": "oxideshop-component",
"keywords": [
"oxid",
"component",
"eShop"
],
"homepage": "https://www.oxid-esales.com",
"require": {
"php": ">=8.1",
"twig/twig": "3.8.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"OxidEsales\\Twig\\": "src",
"OxidEsales\\Twig\\Tests\\": "tests"
}
}
"name": "oxid-esales/twig-component",
"description": "The component supports Twig template engine.",
"license": [
"proprietary"
],
"type": "oxideshop-component",
"keywords": [
"oxid",
"component",
"eShop"
],
"homepage": "https://www.oxid-esales.com",
"require": {
"php": ">=8.2",
"twig/twig": "3.8.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"OxidEsales\\Twig\\": "src",
"OxidEsales\\Twig\\Tests\\": "tests"
}
}
}

0 comments on commit a639a11

Please sign in to comment.