Hey everybody,
flow Flow 4.0 (and Neos 3.0), we want to switch from our own Fluid-Core-Base to Fluid-Standalone - and @christianm has done awesome work to get this to a working and ready state.
Now, on the last meters, we need your help to test and report your experiences.
Please report anything you find ASAP. Either on the pull requests (link at the bottom), or in this thread.
Thanks again Christian for your tireless work
Sebastian
How to test?
Variant A: replace your global (neos development distribution) composer.json with the following file:
Afterwards, do the following:
composer update
rm -Rf Data/Temporary Configuration/PackageStates.php
The namespace for AbstractViewHelpers has changed and I haven’t added a migration yet, so if you try this with your own packages, make sure you adapt to Neos\FluidAdaptor…
Variant B (your own distribution)
adjust your composer.json as follows:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/kitsunet/flow-development-collection",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/kitsunet/neos-development-collection",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/kitsunet/form",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/kitsunet/setup",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/kitsunet/twitter-bootstrap",
"no-api": true
}
],
"require": {
"neos/neos-development-collection": "dev-fluid-standalone as dev-master",
"neos/flow-development-collection": "dev-fluid-standalone as dev-master",
"typo3/twitter-bootstrap": "dev-standalone-fluid as dev-master",
"typo3/setup": "dev-standalone-fluid as dev-master",
"typo3/form": "dev-fluid-standalone as dev-master",
... your other dependencies here ...
}
}
Afterwards, do the following:
composer update
rm -Rf Data/Temporary Configuration/PackageStates.php
The namespace for AbstractViewHelpers has changed and I haven’t added a migration yet, so if you try this with your own packages, make sure you adapt to Neos\FluidAdaptor…