kitsunet / flowpack-typoscript-browser

12 stars 1 forks source link

"neos-package" package type not yet available #1

Open ComiR opened 8 years ago

ComiR commented 8 years ago

"type": "neos-package" won't work until Flow 3.2.

So I see two Options:

  1. use typo3-flow-package (probably better - supports older versions of Flow)
  2. require dev-master of Flow
kdambekalns commented 7 years ago

Outdated and can be closed IMHO.

ComiR commented 7 years ago

not really. it should either be

    "type": "neos-package",
    "require": {
        "typo3/neos": "<3.0",
        "typo3/flow": "^3.2"
    },

(excluding usage of all Flow versions <3.2) or yet better (since supporting all Flow versions <4.0)

    "type": "typo3-flow-package",
    "require": {
        "typo3/neos": "<3.0"
    },

This package isn't Neos 3 or Flow 4 compatible (namespacing) and neos-package only works with Flow >=3.2. Therefore using typo3-flow-package seems more apropriate.

btw: exactly one year after opening the issue 🥇

kdambekalns commented 7 years ago

This package isn't Neos 3 or Flow 4 compatible

See #2

ComiR commented 7 years ago

That'll take care of that 👍. But for older instances with Flow <3.2 this still is a bug...