Skip to content

Commit

Permalink
Merge branch 'release/5.3.0'
Browse files Browse the repository at this point in the history
* release/5.3.0: (79 commits)
  upgraded dependencies
  compiled assets
  updates the readme
  refactor and cleanup
  Apply fixes from StyleCI (#653)
  digest cleanup
  compiled assets
  updated dependencies
  updated assets
  updated the header
  added the header
  fixed the status count on post index loads
  fixed the breakpoints
  ui updates
  added query constraint to the syncTopic() method
  refactored the breakpoints
  updates the favicon
  updates
  fixed versions
  upgrade testbench and phpunit
  ...
  • Loading branch information
austintoddj committed Mar 10, 2020
2 parents bd45761 + 7c6cb5d commit becc371
Show file tree
Hide file tree
Showing 106 changed files with 1,299 additions and 2,699 deletions.
7 changes: 1 addition & 6 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,4 @@
.gitattributes export-ignore
.gitignore export-ignore
.editorconfig export-ignore
.styleci.yml export-ignore
.travis.yml export-ignore
phpunit.xml export-ignore
changelog.md export-ignore
sponsors.md export-ignore
upgrade.md export-ignore
phpunit.xml.dist export-ignore
Binary file modified .github/HEADER.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions sponsors.md → .github/SPONSORS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## Sponsors

[Canvas](https://cnvs.io) is a freely available, open source project that gives something back to the greater [Laravel](https://laravel.com) community. Because PHP and blogging has dominated so much of the Internet today, it makes sense that there would be a highly-maintained package ready-to-go for any developers who need one.
[Canvas](https://cnvs.io) is a freely available, open source project that gives something back to the greater [Laravel](https://laravel.com) community. Since blog platforms dominate so much of the Internet today, it makes sense that there should be a simple, easy-to-use package that can drop into your application with little to no effort.

**Financial contributions will never be required to maintain this project**, they are however very much appreciated. If you've ever used Canvas in your daily work, either personally or professionally, and feel that it has made your life easier, consider supporting the project by buying a cup of coffee.

If you haven't already, star the repo to show your support, it makes a huge difference. Thank you in advance. :-)
If you haven't already, [star the repo](https://github.com/cnvs/canvas/stargazers) to show your support, it makes a huge difference. Thank you in advance. :-)

---

Expand Down
File renamed without changes.
50 changes: 50 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: build

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

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4]
laravel: [^6.0, ^7.0]
dbal: [^2.10]
include:
- laravel: ^7.0
testbench: ^5.0
- laravel: ^6.0
testbench: ^4.0

name: PHP ${{ matrix.php }} on Laravel ${{ matrix.laravel }}

steps:
- name: Checkout package
uses: actions/checkout@v2

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

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
coverage: none

- name: Install dependencies
run: composer require "laravel/framework=${{ matrix.laravel }}" "orchestra/testbench=${{ matrix.testbench }}" "doctrine/dbal=${{ matrix.dbal }}" --prefer-dist --no-interaction --no-suggest

- name: Run tests
run: vendor/bin/phpunit --verbose
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ npm-debug.log
yarn-error.log
Thumbs.db
.DS_Store
.phpunit.xml
.phpunit.result.cache
*.code-workspace
1 change: 0 additions & 1 deletion .styleci.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit becc371

Please sign in to comment.