Skip to content

Commit

Permalink
TASK: adapt composer to neos 4.0 (psmb#11)
Browse files Browse the repository at this point in the history
* Adapt composer.json for Neos 4.x

* Do not restrict psmb/registry to specific version

* TASK: Apply migration Neos.SwiftMailer-20161130105617

Adjusts code to package renaming from "TYPO3.SwiftMailer" to
"Neos.SwiftMailer".

Note: This migration did not produce any changes, so the commit simply
marks the migration as applied. This makes sure it will not be applied
again.

* TASK: Apply migration Neos.Seo-20170127154600

Migrate to new namespace

Note: This migration did not produce any changes, so the commit simply
marks the migration as applied. This makes sure it will not be applied
again.

* TASK: Apply migration Neos.Fusion-20180211175500

Expand Neos.Neos-FusionObjects without namespace to fully qualified
names

* TASK: Apply migration Neos.Fusion-20180211184832

Remove namespace aliases and replace them with the package keys

Note: This migration did not produce any changes, so the commit simply
marks the migration as applied. This makes sure it will not be applied
again.

* TASK: Apply migration Neos.Flow-20180415105700

Add scalar type hint to CacheAwareInterface implementations.

Note: This migration did not produce any changes, so the commit simply
marks the migration as applied. This makes sure it will not be applied
again.

* TASK: Apply migration Neos.Neos-20180907103800

Migrate RTE formatting configuration to new format

Note: This migration did not produce any changes, so the commit simply
marks the migration as applied. This makes sure it will not be applied
again.
  • Loading branch information
mgoldbeck authored and dimaip committed Oct 17, 2018
1 parent fc3038b commit e085f18
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Resources/Private/Fusion/Root.fusion
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ prototype(Psmb.Newsletter:SubscriptionCase) < prototype(Neos.Fusion:Case) {
}
}

prototype(Psmb.Newsletter:EditSubscriptionLink) < prototype(NodeUri) {
prototype(Psmb.Newsletter:EditSubscriptionLink) < prototype(Neos.Neos:NodeUri) {
node = ${site}
additionalParams {
--newsletter = Neos.Fusion:RawArray {
Expand All @@ -83,7 +83,7 @@ prototype(Psmb.Newsletter:EditSubscriptionLink) < prototype(NodeUri) {
}
}

prototype(Psmb.Newsletter:UnsubscribeLink) < prototype(NodeUri) {
prototype(Psmb.Newsletter:UnsubscribeLink) < prototype(Neos.Neos:NodeUri) {
node = ${site}
additionalParams {
--newsletter = Neos.Fusion:RawArray {
Expand Down
14 changes: 10 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"name": "psmb/newsletter",
"license": "GPL-3.0+",
"require": {
"neos/neos": "^3.0",
"psmb/registry": "^2.0",
"neos/neos": "^3.0 || ^4.0",
"psmb/registry": "*",
"neos/swiftmailer": "*",
"tijsverkoyen/css-to-inline-styles": "^2.2",
"flowpack/jobqueue-common": "*"
Expand Down Expand Up @@ -89,7 +89,13 @@
"Neos.Neos-20170115114620",
"Neos.Fusion-20170120013047",
"Neos.Flow-20170125103800",
"Neos.Flow-20170127183102"
"Neos.Flow-20170127183102",
"Neos.SwiftMailer-20161130105617",
"Neos.Seo-20170127154600",
"Neos.Fusion-20180211175500",
"Neos.Fusion-20180211184832",
"Neos.Flow-20180415105700",
"Neos.Neos-20180907103800"
]
}
}
}

0 comments on commit e085f18

Please sign in to comment.