clarkwinkelmann beta 12 already requires PHP 7.1+
I'm already mixing up the timing of when PRs where merged.
clarkwinkelmann beta 12 already requires PHP 7.1+
I'm already mixing up the timing of when PRs where merged.
isaced when would the update for this be available please
Hi, just wondering if this will be updated for beta 14?
Just looking at the code, it seems like this extension might still work. If anyone reports otherwise we'll add the incompatible tag.
Would be nice to see an update to take advantage of the new Extend\Events
extender and the new admin panel categories.
clarkwinkelmann I am using this extension on localhost and it still works.
this works on 0.1.0-beta.16 right?
Puggo no. It's not updated for beta 16 as far as I can tell
Puggo Glad to hear! Although...if anyone tries to look for this extension on Extiverse, they'll have some trouble since this isn't marked as compatible with beta 16. I'll try to submit a PR to fix the required Flarum version to give it search visibility on Extiverse
Edit: Annnnnnnnnd done ️ isaced/flarum-ext-email-verification-switch3
Works perfectly in 0.16. It is a nice extension for new forums to easy registration of new users. When every new user is an important asset.
Ralkage hi. I am using flarum verision 1.0.2
and here is my composer result:
root@php-7.4.20 in /shared/httpd/vergi/htdocs $ composer require isaced/flarum-ext-email-verification-switch
Using version ^0.1.4 for isaced/flarum-ext-email-verification-switch
./composer.json has been updated
Running composer update isaced/flarum-ext-email-verification-switch
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires isaced/flarum-ext-email-verification-switch ^0.1.4 -> satisfiable by isaced/flarum-ext-email-verification-switch[0.1.4].
- isaced/flarum-ext-email-verification-switch 0.1.4 requires flarum/core ^0.1.0-beta.16 -> found flarum/core[v0.1.0-beta.16] but it does not match your minimum-stability.
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
Installation failed, reverting ./composer.json and ./composer.lock to their original content.
elvish_h while I work on a PR, here is a workaround that you can add to your root Flarum install's extend.php
file that will achieve the same as if you were to install this extension
use Flarum\Extend;
use Flarum\User\Event\Registered;
return [
(new Extend\Event)
->listen(Registered::class, function (Registered $event) {
$event->user->activate();
$event->user->save();
})
];
isaced/flarum-ext-email-verification-switch5 @isaced v1.0 update ready for your approval