Skip to content

Commit

Permalink
Prepare 6.x branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone committed Aug 31, 2020
1 parent 3b0a449 commit 8060084
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/FUNDING.yml
@@ -1,12 +1,12 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: crynobone
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
liberapay: crynobone
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: ["https://paypal.me/crynobone"]
41 changes: 41 additions & 0 deletions .github/workflows/tests.yml
@@ -0,0 +1,41 @@
name: tests

on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
php: [7.4, 7.3]
os: [ubuntu-latest, windows-latest]

name: PHP${{ matrix.php }} on ${{ matrix.os }}

steps:
- name: Checkout code
uses: actions/checkout@v1

- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none

- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/phpunit
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -3,12 +3,12 @@ Messages Component for Laravel and Orchestra Platform

Messages Component bring a unified notification support for Laravel and Orchestra Platform.

[![Build Status](https://travis-ci.org/orchestral/messages.svg?branch=master)](https://travis-ci.org/orchestral/messages)
[![Build Status](https://travis-ci.org/orchestral/messages.svg?branch=6.x)](https://travis-ci.org/orchestral/messages)
[![Latest Stable Version](https://poser.pugx.org/orchestra/messages/version)](https://packagist.org/packages/orchestra/messages)
[![Total Downloads](https://poser.pugx.org/orchestra/messages/downloads)](https://packagist.org/packages/orchestra/messages)
[![Latest Unstable Version](https://poser.pugx.org/orchestra/messages/v/unstable)](//packagist.org/packages/orchestra/messages)
[![License](https://poser.pugx.org/orchestra/messages/license)](https://packagist.org/packages/orchestra/messages)
[![Coverage Status](https://coveralls.io/repos/github/orchestral/messages/badge.svg?branch=master)](https://coveralls.io/github/orchestral/messages?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/orchestral/messages/badge.svg?branch=6.x)](https://coveralls.io/github/orchestral/messages?branch=6.x)

## Table of Content

Expand All @@ -31,6 +31,7 @@ Laravel | Messages
5.8.x | 3.8.x
6.x | 4.x
7.x | 5.x
8.x | 6.x

## Installation

Expand Down

0 comments on commit 8060084

Please sign in to comment.