pantheon-systems / solr-power

A WordPress plugin to connect to Pantheon's Apache Solr search infrastructure, or your own!
https://wordpress.org/plugins/solr-power/
GNU General Public License v2.0
126 stars 61 forks source link

Remove PHP 7.0 as the Composer platform requirement #419

Open danielbachhuber opened 5 years ago

danielbachhuber commented 5 years ago

In #418, we had to add the following as a platform requirement in composer.json:

"config": {
    "platform": {
        "php": "7.0"
    }
},

We did this because WordPress.org's linter is stuck on PHP 7.0. It doesn't seem to be a huge deal though. I think the only downgraded dependencies are PHPUnit (to v6.5.1 from v7) and symfony/event-dispatcher (to v3.3.6 from v4)

Once the linter is upgraded/fixed in https://meta.trac.wordpress.org/ticket/3791, we should remove/update the platform requirement.

Previously #412

extremeshok commented 5 years ago

thank you