Skip to content

Commit bb89516

Browse files
authored
Merge branch 'v6' into v6-livewire-widget
2 parents 0528d90 + 3819ee2 commit bb89516

File tree

232 files changed

+4658
-5410
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

232 files changed

+4658
-5410
lines changed

.github/workflows/chatgpt-bot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: ChatGPT Bot
2+
3+
on:
4+
issue_comment:
5+
types:
6+
- created
7+
8+
jobs:
9+
run-bot:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: austenstone/chatgpt-bot@main
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
- name: Setup PHP
2525
uses: shivammathur/setup-php@v2
2626
with:
27-
php-version: 8.1
27+
php-version: 8.2
2828
extensions: curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv, xdebug
2929
coverage: xdebug
3030
tools: composer:v2
3131
- name: Install dependencies
3232
run: |
33-
composer require "laravel/framework:^9.0" "phpunit/phpunit:^9.0" "doctrine/dbal:^3.0" --no-interaction --no-update --no-suggest
33+
composer require "laravel/framework:^10.0" "phpunit/phpunit:^9.0" "doctrine/dbal:^3.0" --no-interaction --no-update --no-suggest
3434
composer update --prefer-dist --no-interaction
3535
- name: Execute tests
3636
run: vendor/bin/phpunit --coverage-clover coverage.xml

.github/workflows/support.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
action:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: dessant/support-requests@v2
16+
- uses: dessant/support-requests@v3
1717
with:
1818
github-token: ${{ github.token }}
1919
support-label: 'Ask-It-On-Stack-Overflow'

.github/workflows/testing.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,12 @@ jobs:
1919
# run all combinations of the following, to make sure they're working together
2020
matrix:
2121
# os: [ubuntu-latest, macos-latest, windows-latest]
22-
php: [7.3, 7.4, 8.0, 8.1, 8.2]
23-
dbal: [^2.5, ^3.0]
24-
laravel: [8.*, 9.*]
25-
phpunit: [8.*, 9.*]
22+
php: [8.1, 8.2]
23+
dbal: [^3.0]
24+
laravel: [10.*]
25+
phpunit: [9.*, 10.*]
2626
dependency-version: [stable] # to add: lowest
27-
exclude:
28-
- laravel: 9.*
29-
php: 7.3
30-
- laravel: 9.*
31-
php: 7.4
32-
- laravel: 9.*
33-
phpunit: 8.*
27+
3428

3529
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, PHPUnit ${{ matrix.phpunit }}, DBAL ${{ matrix.dbal }} --prefer-${{ matrix.dependency-version }}
3630

@@ -49,7 +43,7 @@ jobs:
4943
extensions: curl, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, iconv
5044
coverage: none
5145
- name: Cache dependencies
52-
uses: actions/cache@v1
46+
uses: actions/cache@v3
5347
with:
5448
path: ~/.composer/cache/files
5549
key: dependencies-${{ matrix.dependency-version }}-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-phpunit-${{ matrix.phpunit }}-composer-${{ hashFiles('composer.json') }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ node_modules/
66
composer.lock
77
.phpunit.result.cache
88
src/public/packages/
9+
/.phpunit.cache
910

0 commit comments

Comments
 (0)