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",
|
"name": "digicomp/fluid-currentcontroller-expression",
|
||||||
"type": "neos-package",
|
|
||||||
"description": "Extends fluid with expressions to retrieve current's ActionRequest values",
|
"description": "Extends fluid with expressions to retrieve current's ActionRequest values",
|
||||||
"require": {
|
"type": "neos-package",
|
||||||
"php": "^7.4 | ^8.1",
|
"keywords": [
|
||||||
"neos/flow": "^6.3 | ^7.3 | ^8.2",
|
"Neos",
|
||||||
"neos/fluid-adaptor": "^6.3 | ^7.3 | ^8.3"
|
"Flow",
|
||||||
},
|
"fluid"
|
||||||
"extra":{
|
],
|
||||||
"branch-alias": {
|
"homepage": "https://git.digital-competence.de/Packages/DigiComp.FluidCurrentControllerExpression",
|
||||||
"dev-develop": "1.0.x-dev"
|
"license": "MIT",
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"DigiComp\\FluidCurrentControllerExpression\\": "Classes/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Ferdinand Kuhl",
|
"name": "Ferdinand Kuhl",
|
||||||
|
@ -25,11 +17,34 @@
|
||||||
"role": "Developer"
|
"role": "Developer"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"require": {
|
||||||
"homepage": "https://git.digital-competence.de/Packages/DigiComp.FluidCurrentControllerExpression",
|
"php": ">=7.4.0",
|
||||||
"keywords": [
|
"neos/flow": "^6.3 || ^7.3 || ^8.2",
|
||||||
"Neos",
|
"neos/fluid-adaptor": "^6.3 || ^7.3 || ^8.3"
|
||||||
"Flow",
|
},
|
||||||
"fluid"
|
"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