Skip to content

Commit 1cdb150

Browse files
authored
Merge pull request #66 from renoki-co/shift-build-2349
Laravel 9.x
2 parents 9ba465c + e51b40a commit 1cdb150

File tree

2 files changed

+21
-10
lines changed

2 files changed

+21
-10
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,29 @@ jobs:
1414
build:
1515
if: "!contains(github.event.head_commit.message, 'skip ci')"
1616

17-
runs-on: ubuntu-18.04
17+
runs-on: ubuntu-latest
1818

1919
strategy:
20+
fail-fast: false
2021
matrix:
2122
php:
22-
- '7.4'
2323
- '8.0'
24+
- '8.1'
2425
node:
2526
- '12'
2627
- '14'
2728
- '16'
2829
laravel:
29-
- 7.*
3030
- 8.*
31+
- 9.*
3132
prefer:
3233
- 'prefer-lowest'
3334
- 'prefer-stable'
3435
include:
35-
- laravel: '7.*'
36-
testbench: '5.*'
3736
- laravel: '8.*'
3837
testbench: '6.*'
38+
- laravel: '9.*'
39+
testbench: '7.*'
3940

4041
name: PHP ${{ matrix.php }} - Node ${{ matrix.node }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}
4142

composer.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
{
22
"name": "renoki-co/clusteer",
33
"description": "Clusteer is a Puppeteer wrapper written for PHP, with the super-power of parallelizing pages across multiple browser instances.",
4-
"keywords": ["laravel", "php", "chromium", "chrome", "puppeteer", "crawling", "browser"],
4+
"keywords": [
5+
"laravel",
6+
"php",
7+
"chromium",
8+
"chrome",
9+
"puppeteer",
10+
"crawling",
11+
"browser"
12+
],
513
"license": "Apache-2.0",
614
"homepage": "https://github.com/renoki-co/clusteer",
715
"authors": [
@@ -12,8 +20,8 @@
1220
}
1321
],
1422
"require": {
15-
"illuminate/console": "^7.30|^8.23",
16-
"illuminate/support": "^7.30|^8.23",
23+
"illuminate/console": "^8.83|^9.0.1",
24+
"illuminate/support": "^8.83|^9.0.1",
1725
"react/child-process": "^0.6.1",
1826
"react/event-loop": "^1.1.1"
1927
},
@@ -35,8 +43,10 @@
3543
},
3644
"require-dev": {
3745
"mockery/mockery": "^1.5",
38-
"orchestra/testbench": "^6.24.0",
39-
"symfony/process": "^5.4"
46+
"orchestra/testbench": "^6.28|^7.0",
47+
"orchestra/testbench-core": "^6.28|^7.0",
48+
"symfony/process": "^5.4|^6.0",
49+
"phpunit/phpunit": "^9.5.13"
4050
},
4151
"config": {
4252
"sort-packages": true

0 commit comments

Comments
 (0)