cobwebch / external_import

Other
20 stars 16 forks source link

Update for PHP8.3 planed? (Composer-restriction) #324

Closed Padina14 closed 5 months ago

Padina14 commented 6 months ago

Is the extension allowed for PHP 8.3?

The extension should work with TYPO3 12 and TYPO3 11. TYPO3 12 allow php 8.3. Why don't your extension allows the usage of php 8.3? (Composer-definition)

Padina14 commented 6 months ago

Composer misread.

fsuter commented 6 months ago

Hi. You're actually right. PHP 8.3 is not yet officially supported. I should be able to do a minor release soon and cover this isue.

Padina14 commented 5 months ago

Your composer.json-code "php": "^7.4 || ^8.0 || ^8.1 || ^8.2", allows PHP 8.3. https://getcomposer.org/doc/articles/versions.md

If you want to restrict the php to the minor-versionist, I think you should use something like that: "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0",

fsuter commented 5 months ago

Ah yes, you're right. I was mostly thinking that it is not stated explicitly and that it should. Also I have not given external import a run with PHP 8.3 yet, but I don't expect any trouble.