Skip to content

Commit

Permalink
ci: 💚 updated run-tests script
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRill00 committed Jun 10, 2024
1 parent 397d4cf commit e15e096
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 10 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@ jobs:
- laravel: 9.*
testbench: 7.*
phpunit: ^9.5.10
illuminate_contracts: ^9.0
- laravel: 10.*
testbench: 8.*
phpunit: ^9.6
illuminate_contracts: ^10.0
- laravel: 11.*
testbench: 9.*
phpunit: ^10.5
illuminate_contracts: ^11.0

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
steps:
Expand All @@ -46,7 +49,7 @@ jobs:
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "phpunit/phpunit:${{ matrix.phpunit }}" --no-interaction --no-update
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "phpunit/phpunit:${{ matrix.phpunit }}" "illuminate/contracts:${{ matrix.illuminate_contracts }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: List Installed Dependencies
Expand Down
29 changes: 20 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
{
"name": "nexibi/print-one",
"name": "print-one/print-one-laravel",
"description": "This is my package print-one",
"keywords": [
"nexibi",
"laravel",
"print-one"
"print.one",
"printing",
"rest",
"print-and-mail",
"postcard",
"post",
"api"
],
"homepage": "https://github.com/nexibi/print-one",
"homepage": "https://github.com/Print-one/print-one-laravel",
"license": "MIT",
"authors": [
{
Expand All @@ -18,19 +23,25 @@
"name": "Sibi",
"email": "dev@sibi.nl",
"role": "Developer"
},
{
"name": "Print.one Development",
"email": "dev@print.one",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-iconv":"*",
"ext-iconv": "*",
"guzzlehttp/guzzle": "^7.5",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/contracts": "^9.0",
"laravel/framework": "9.*",
"orchestra/testbench": "7.*",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-package-tools": "^1.12.0|^1.13.6"
},
"require-dev": {
"laravel/pint": "^1.0",
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.5"
"laravel/pint": "^1.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit e15e096

Please sign in to comment.