Skip to content

Commit bc4ef9e

Browse files
committed
ci: 💚 updated run-tests script
1 parent 397d4cf commit bc4ef9e

File tree

2 files changed

+27
-10
lines changed

2 files changed

+27
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,18 @@ jobs:
2020
- laravel: 9.*
2121
testbench: 7.*
2222
phpunit: ^9.5.10
23+
illuminate_contracts: ^9.0
2324
- laravel: 10.*
2425
testbench: 8.*
2526
phpunit: ^9.6
27+
illuminate_contracts: ^10.0
2628
- laravel: 11.*
2729
testbench: 9.*
2830
phpunit: ^10.5
31+
illuminate_contracts: ^11.0
32+
exclude:
33+
- php: 8.1
34+
laravel: 11.*
2935

3036
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3137
steps:
@@ -46,7 +52,7 @@ jobs:
4652
4753
- name: Install dependencies
4854
run: |
49-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "phpunit/phpunit:${{ matrix.phpunit }}" --no-interaction --no-update
55+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "phpunit/phpunit:${{ matrix.phpunit }}" "illuminate/contracts:${{ matrix.illuminate_contracts }}" --no-interaction --no-update
5056
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
5157
5258
- name: List Installed Dependencies

composer.json

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
2-
"name": "nexibi/print-one",
2+
"name": "print-one/print-one-laravel",
33
"description": "This is my package print-one",
44
"keywords": [
5-
"nexibi",
65
"laravel",
7-
"print-one"
6+
"print.one",
7+
"printing",
8+
"rest",
9+
"print-and-mail",
10+
"postcard",
11+
"post",
12+
"api"
813
],
9-
"homepage": "https://github.com/nexibi/print-one",
14+
"homepage": "https://github.com/Print-one/print-one-laravel",
1015
"license": "MIT",
1116
"authors": [
1217
{
@@ -18,19 +23,25 @@
1823
"name": "Sibi",
1924
"email": "dev@sibi.nl",
2025
"role": "Developer"
26+
},
27+
{
28+
"name": "Print.one Development",
29+
"email": "dev@print.one",
30+
"role": "Developer"
2131
}
2232
],
2333
"require": {
2434
"php": "^8.1",
25-
"ext-iconv":"*",
35+
"ext-iconv": "*",
2636
"guzzlehttp/guzzle": "^7.5",
27-
"illuminate/contracts": "^8.0|^9.0",
37+
"illuminate/contracts": "^9.0",
38+
"laravel/framework": "9.*",
39+
"orchestra/testbench": "7.*",
40+
"phpunit/phpunit": "^9.5.10",
2841
"spatie/laravel-package-tools": "^1.12.0|^1.13.6"
2942
},
3043
"require-dev": {
31-
"laravel/pint": "^1.0",
32-
"orchestra/testbench": "^6.0|^7.0",
33-
"phpunit/phpunit": "^9.5"
44+
"laravel/pint": "^1.0"
3445
},
3546
"autoload": {
3647
"psr-4": {

0 commit comments

Comments
 (0)