Skip to content

Commit

Permalink
feat: allow use php 8.1, 8.2 and bump dependencies for use SF6
Browse files Browse the repository at this point in the history
  • Loading branch information
joris committed Feb 14, 2023
1 parent 8a50ec9 commit b3a8b31
Showing 1 changed file with 43 additions and 35 deletions.
78 changes: 43 additions & 35 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,47 @@
{
"name": "jorisdugue/h5p-bundle",
"type": "symfony-bundle",
"description": "H5P Bundle for Symfony 4 and Symfony 5",
"keywords": ["h5p", "symfony", "interactive", "content", "php"],
"license": [
"MIT"
],
"authors": [
{
"name": "Nieck Moorman",
"email": "[email protected]",
"homepage": "https://emmedy.com",
"role": "developer"
},
{
"name": "Joris Dugué",
"email": "[email protected]",
"role": "developer",
"homepage": "https://joris.dugue.ml"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"doctrine/orm": "^2.7",
"guzzlehttp/guzzle": "^7.3",
"h5p/h5p-core": "^1.24",
"h5p/h5p-editor": "^1.24",
"symfony/framework-bundle": "~4.0|~5.0",
"symfony/serializer": "~4.0|~5.0",
"twig/extra-bundle": "^3.0",
"doctrine/doctrine-bundle": "^2.0",
"symfony/security-bundle": "~4.0|~5.0",
"symfony/asset": "~4.0|~5.0"
"name": "jorisdugue/h5p-bundle",
"type": "symfony-bundle",
"description": "H5P Bundle for Symfony 4 and Symfony 5",
"keywords": [
"h5p",
"symfony",
"interactive",
"content",
"php"
],
"license": [
"MIT"
],
"authors": [
{
"name": "Nieck Moorman",
"email": "[email protected]",
"homepage": "https://emmedy.com",
"role": "developer"
},
"autoload": {
"psr-4": { "Studit\\H5PBundle\\": "" }
{
"name": "Joris Dugué",
"email": "[email protected]",
"role": "developer",
"homepage": "https://joris.dugue.ml"
}
],
"require": {
"php": ">= 7.2.5",
"doctrine/orm": "^2.14.1",
"guzzlehttp/guzzle": "^7.5",
"h5p/h5p-core": "^1.24",
"h5p/h5p-editor": "^1.25",
"symfony/framework-bundle": "~4.0|~5.0|~6.0",
"symfony/serializer": "~4.0|~5.0|~6.0",
"twig/extra-bundle": "^3.0",
"doctrine/doctrine-bundle": "^2.0",
"symfony/security-bundle": "~4.0|~5.0|~6.0",
"symfony/asset": "~4.0|~5.0|~6.0"
},
"autoload": {
"psr-4": {
"Studit\\H5PBundle\\": ""
}
}
}

0 comments on commit b3a8b31

Please sign in to comment.