Skip to content

Commit

Permalink
Merge pull request #45 from nguyenanhung/v3.x
Browse files Browse the repository at this point in the history
Release version 3.0.8.1
  • Loading branch information
nguyenanhung authored Jan 13, 2023
2 parents 415df6a + 01f08ba commit 6d2137d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
21 changes: 9 additions & 12 deletions .github/workflows/php.yml.offline → .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,25 @@ jobs:
build:
strategy:
matrix:
operating-system: [ ubuntu-latest, windows-latest, macos-latest ]
php-versions: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ]
operating-system: [ ubuntu-latest, ubuntu-20.04, ubuntu-22.04, macos-latest, macos-11 ]
php-versions: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 # From https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl, curl, dom, pdo, json, session, sockets, openssl
coverage: xdebug #optional
- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composercache.outputs.dir }}
# Use composer.json for key, if composer.lock is not committed.
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader --ignore-platforms
Expand Down
2 changes: 1 addition & 1 deletion src/Project.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
interface Project
{
const VERSION = '3.0.8';
const VERSION = '3.0.8.1';

/**
* Hàm lấy thông tin phiên bản Packages
Expand Down

0 comments on commit 6d2137d

Please sign in to comment.