Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:

strategy:
matrix:
php: [8.2]
laravel: [11, 12]
php: [8.3, 8.4]
laravel: [12, 13]

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
Expand All @@ -30,17 +30,17 @@ jobs:

- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache composer dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
restore-keys: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-

- name: Install dependencies
uses: nick-fields/retry@v2
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 5
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ You can now access Madzipper with the `Madzipper` alias.

| Package | Laravel | PHP |
| :------- | :------------ | :----- |
| **v1.7** | `12.*` `13.*` | `^8.3` |
| **v1.6** | `11.*` `12.*` | `^8.2` |
| **v1.5** | `11.*` | `^8.2` |
| **v1.4** | `10.*` | `^8.1` |
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
}
],
"require": {
"php": "^8.2",
"php": "^8.3",
"ext-zip": "*",
"illuminate/support": "^11.0|^12.0",
"illuminate/filesystem": "^11.0|^12.0"
"illuminate/support": "^12.0|^13.0",
"illuminate/filesystem": "^12.0|^13.0"
},
"require-dev": {
"laravel/pint": "^1.15",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^8.0",
"orchestra/testbench": "^9.0|^10.0",
"orchestra/testbench": "^9.0|^10.0|^11.0",
"phpunit/phpunit": "^10.5|^11.5.3"
},
"autoload": {
Expand Down
Loading