Skip to content

fix: setKey uses sha256 hash and encrypt method updated #9

fix: setKey uses sha256 hash and encrypt method updated

fix: setKey uses sha256 hash and encrypt method updated #9

Workflow file for this run

name: PHP Tests
on:
push:
branches:
- dev
- main
- master
pull_request:
branches:
- master
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: openssl
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest --ansi
- name: Run tests
run: composer test