update structure of composer.json and update dependencies
All checks were successful
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/1 Pipeline was successful
ci/woodpecker/push/functional-tests/2 Pipeline was successful
ci/woodpecker/push/functional-tests/3 Pipeline was successful
ci/woodpecker/push/functional-tests/4 Pipeline was successful
All checks were successful
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/1 Pipeline was successful
ci/woodpecker/push/functional-tests/2 Pipeline was successful
ci/woodpecker/push/functional-tests/3 Pipeline was successful
ci/woodpecker/push/functional-tests/4 Pipeline was successful
This commit is contained in:
parent
43b5f0c14b
commit
75beea31dc
1 changed files with 38 additions and 23 deletions
|
@ -1,22 +1,14 @@
|
|||
{
|
||||
"name": "digicomp/fluid-currentcontroller-expression",
|
||||
"type": "neos-package",
|
||||
"description": "Extends fluid with expressions to retrieve current's ActionRequest values",
|
||||
"require": {
|
||||
"php": "^7.4 | ^8.1",
|
||||
"neos/flow": "^6.3 | ^7.3 | ^8.2",
|
||||
"neos/fluid-adaptor": "^6.3 | ^7.3 | ^8.3"
|
||||
},
|
||||
"extra":{
|
||||
"branch-alias": {
|
||||
"dev-develop": "1.0.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"DigiComp\\FluidCurrentControllerExpression\\": "Classes/"
|
||||
}
|
||||
},
|
||||
"type": "neos-package",
|
||||
"keywords": [
|
||||
"Neos",
|
||||
"Flow",
|
||||
"fluid"
|
||||
],
|
||||
"homepage": "https://git.digital-competence.de/Packages/DigiComp.FluidCurrentControllerExpression",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ferdinand Kuhl",
|
||||
|
@ -25,11 +17,34 @@
|
|||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"license": "MIT",
|
||||
"homepage": "https://git.digital-competence.de/Packages/DigiComp.FluidCurrentControllerExpression",
|
||||
"keywords": [
|
||||
"Neos",
|
||||
"Flow",
|
||||
"fluid"
|
||||
]
|
||||
"require": {
|
||||
"php": ">=7.4.0",
|
||||
"neos/flow": "^6.3 || ^7.3 || ^8.2",
|
||||
"neos/fluid-adaptor": "^6.3 || ^7.3 || ^8.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"mikey179/vfsstream": "^1.6.1",
|
||||
"neos/buildessentials": "^7.0.0",
|
||||
"phpunit/phpunit": "~8.5",
|
||||
"vimeo/psalm": "~4.22.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"DigiComp\\FluidCurrentControllerExpression\\": "Classes/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"DigiComp\\FluidCurrentControllerExpression\\Tests\\": "Tests/"
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"sort-packages": true,
|
||||
"platform-check": true
|
||||
},
|
||||
"extra":{
|
||||
"branch-alias": {
|
||||
"dev-develop": "1.0.x-dev"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue