Skip to content

Commit

Permalink
Merge pull request #194 from avored/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
indpurvesh authored Mar 5, 2022
2 parents 45bf488 + af9bf35 commit 49f4f44
Show file tree
Hide file tree
Showing 40 changed files with 478 additions and 10,657 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## act -P ubuntu-latest=shivammathur/node:latest

name: run-tests

on:
Expand All @@ -14,13 +16,14 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.0]
laravel: [8.*]
stability: [prefer-stable]
laravel: ['8.*', '9.*']
include:
- laravel: 8.*
testbench: ^6.0
- laravel: '8.*'
testbench: '6.*'
- laravel: '9.*'
testbench: '7.*'

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}

services:
mysql:
Expand Down Expand Up @@ -49,7 +52,8 @@ jobs:
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer require laravel/framework:${{ matrix.laravel }} --no-interaction --no-update
composer require orchestra/testbench:${{ matrix.testbench }} --dev
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/phpunit
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Release Notes for 5.x


## [v5.1.0](https://github.com/avored/framework)
28 changes: 14 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@
"role": "Developer"
}],
"require": {
"php": "^8.0",
"illuminate/auth": "^8.0",
"illuminate/contracts": "^8.0",
"illuminate/database": "^8.0",
"illuminate/routing": "^8.0",
"illuminate/http": "^8.0",
"illuminate/support": "^8.0",
"illuminate/view": "^8.0",
"php": "^7.3|^7.4|^8.0|^8.1",
"illuminate/auth": "^8.2|^9.0",
"illuminate/contracts": "^8.2|^9.0",
"illuminate/database": "^8.2|^9.0",
"illuminate/routing": "^8.2|^9.0",
"illuminate/http": "^8.2|^9.0",
"illuminate/support": "^8.2|^9.0",
"illuminate/view": "^8.2|^9.0",
"ramsey/uuid": "^4.2",
"rebing/graphql-laravel": "^7.2",
"rebing/graphql-laravel": "^8.2",
"nyholm/psr7": "^1.4",
"laravel/passport": "^10.1",
"symfony/yaml": "^5.3"
"laravel/passport": "^10.1|^10.2|^10.3",
"symfony/yaml": "^5.3|^6.0"
},
"require-dev": {
"brianium/paratest": "^6.0",
"friendsofphp/php-cs-fixer": "^3.1",
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.15",
"phpunit/phpunit": "^9.3",
"nunomaduro/collision": "^5.3|^6.0",
"orchestra/testbench": "6.*|7.*",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.8"
},
"autoload": {
Expand Down
Loading

0 comments on commit 49f4f44

Please sign in to comment.