Skip to content

Commit

Permalink
WP core no longer supports older versions of PHP (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
kasparsd authored Jan 11, 2020
1 parent d0da50c commit 35a782e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ dist: trusty
language: php

php:
- "5.4"
- "5.5"
- "5.6"
- "7.2"
- "7.3"
Expand Down
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ Enable Two-Factor Authentication using time-based one-time passwords (OTP, Googl
**Requires at least:** 4.3
**Tested up to:** 5.3
**Stable tag:** trunk (master)
**Requires PHP:** 5.6

[![Build Status](https://travis-ci.org/wordpress/two-factor.svg?branch=master)](https://travis-ci.org/wordpress/two-factor) [![Coverage Status](https://coveralls.io/repos/wordpress/two-factor/badge.svg?branch=master)](https://coveralls.io/github/wordpress/two-factor) [![Built with Grunt](https://gruntjs.com/cdn/builtwith.svg)](http://gruntjs.com)
[![Build Status](https://travis-ci.org/WordPress/two-factor.svg?branch=master)](https://travis-ci.org/WordPress/two-factor) [![Coverage Status](https://coveralls.io/repos/WordPress/two-factor/badge.svg?branch=master)](https://coveralls.io/github/WordPress/two-factor) [![Built with Grunt](https://gruntjs.com/cdn/builtwith.svg)](http://gruntjs.com)

## Description ##

Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Contributors: georgestephanis, valendesigns, stevenkword, extendwings, sgrant, a
Tags: two factor, two step, authentication, login, totp, fido u2f, u2f, email, backup codes, 2fa, yubikey
Requires at least: 4.3
Tested up to: 5.3
Requires PHP: 5.6
Stable tag: trunk

Enable Two-Factor Authentication using time-based one-time passwords (OTP, Google Authenticator), Universal 2nd Factor (FIDO U2F, YubiKey), email and backup verification codes.
Expand Down
2 changes: 1 addition & 1 deletion tests/class.two-factor-core.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function clean_dummy_user() {
* @covers Two_Factor_Core::add_hooks
*/
public function test_add_hooks() {
Two_Factor_Core::add_hooks();
Two_Factor_Core::add_hooks( new Two_Factor_Compat() );

$this->assertGreaterThan(
0,
Expand Down
4 changes: 2 additions & 2 deletions two-factor.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
/**
* Plugin Name: Two Factor
* Plugin URI: https://wordpress.org/plugins/two-factor/
* Description: A prototype extensible core to enable Two-Factor Authentication.
* Description: Two-Factor Authentication using time-based one-time passwords, Universal 2nd Factor (FIDO U2F), email and backup verification codes.
* Author: Plugin Contributors
* Version: 0.4.8
* Version: 0.5.0
* Author URI: https://github.com/wordpress/two-factor/graphs/contributors
* Network: True
* Text Domain: two-factor
Expand Down

0 comments on commit 35a782e

Please sign in to comment.