Skip to content

Commit

Permalink
Fixing Deprecation Github Actions from v3 to v4 and Update all depend…
Browse files Browse the repository at this point in the history
…ecies to meet php version >= 8.2
  • Loading branch information
ekojs committed Jan 30, 2025
1 parent 7acda76 commit cfd063c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,11 @@ jobs:
uses: actions/download-artifact@v4
with:
name: mycoverage_Linux_8.3
path: coverage.tar.gz
overwrite: true
path: coverage

- name: Moving artifact to workspace
run: |
mv ${{ github.workspace }}/coverage/coverage.tar.gz ${{ github.workspace }}/coverage.tar.gz
- shell: bash
run: |
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
OTP Library
=============

TOTP and HOTP Library with backup codes, compatible with google authenticator. Compatible with PHP >= 7.4.13.
TOTP and HOTP Library with backup codes, compatible with google authenticator. Compatible with PHP >= 8.2.

[![Build Status](https://www.travis-ci.com/ekojs/ejsotp.svg?branch=master)](https://www.travis-ci.com/ekojs/ejsotp)
[![Build Status](https://github.com/ekojs/ejsotp/actions/workflows/release.yml/badge.svg)](http://ekojunaidisalam.com/ejsotp/)
[![Coverage Status](https://coveralls.io/repos/ekojs/ejsotp/badge.svg?branch=master)](https://coveralls.io/r/ekojs/ejsotp?branch=master)
[![Latest Stable Version](http://poser.pugx.org/ekojs/otp/v)](https://packagist.org/packages/ekojs/otp) [![Total Downloads](http://poser.pugx.org/ekojs/otp/downloads)](https://packagist.org/packages/ekojs/otp) [![Latest Unstable Version](http://poser.pugx.org/ekojs/otp/v/unstable)](https://packagist.org/packages/ekojs/otp) [![License](http://poser.pugx.org/ekojs/otp/license)](https://packagist.org/packages/ekojs/otp) [![PHP Version Require](http://poser.pugx.org/ekojs/otp/require/php)](https://packagist.org/packages/ekojs/otp)
[![Latest Stable Version](https://poser.pugx.org/ekojs/otp/version.svg)](https://packagist.org/packages/ekojs/otp)
[![PHP Version Require](https://poser.pugx.org/ekojs/otp/require/php)](https://packagist.org/packages/ekojs/otp)
[![License](https://poser.pugx.org/ekojs/otp/license.svg)](https://packagist.org/packages/ekojs/otp)
[![Downloads](https://poser.pugx.org/ekojs/otp/d/total.svg)](https://packagist.org/packages/ekojs/otp)

## Coverage

Check this code coverage on [http://ekojunaidisalam.com/ejsotp/](http://ekojunaidisalam.com/ejsotp/)

## Install

For PHP version **`>= 7.4.13`**:
For PHP version **`>= 8.2`**:

```
composer require ekojs/otp
Expand Down

0 comments on commit cfd063c

Please sign in to comment.