Skip to content

Commit 4678aba

Browse files
Merge pull request #144 from CodeWithDennis/ci/test-create-project-install
chore: require PHP 8.5 and update to latest packages
2 parents 6324298 + 18cd900 commit 4678aba

10 files changed

Lines changed: 271 additions & 466 deletions

File tree

.github/workflows/installation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest, macos-latest, windows-latest]
13-
php: ['8.3', '8.4', '8.5']
13+
php: ['8.5']
1414

1515
defaults:
1616
run:

.github/workflows/pest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # v2
1818
with:
19-
php-version: '8.4'
19+
php-version: '8.5'
2020
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
2121
coverage: none
2222

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup PHP
1313
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # v2
1414
with:
15-
php-version: '8.4'
15+
php-version: '8.5'
1616
coverage: none
1717

1818
- name: Install composer dependencies

.github/workflows/pint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.4]
11+
php: [8.5]
1212

1313
steps:
1414
- name: Checkout code

.github/workflows/rector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup PHP
1313
uses: shivammathur/setup-php@b604ade2a87db23f8871b7182e69ec5e75effb45 # v2
1414
with:
15-
php-version: '8.4'
15+
php-version: '8.5'
1616
coverage: none
1717

1818
- name: Install composer dependencies

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
A **bloat-free starter kit** for Laravel 13.x with FilamentPHP 5.x pre-configured. Only essential development tools included.
1515

1616
> [!NOTE]
17-
> Requires **PHP 8.3** or higher.
17+
> Requires **PHP 8.5** or higher.
1818
1919
## Quick Start
2020

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"keywords": ["laravel", "framework", "filamentphp", "starter-kit", "larament"],
77
"license": "MIT",
88
"require": {
9-
"php": "^8.3",
9+
"php": "^8.5",
1010
"filament/filament": "^5.0",
1111
"laravel/framework": "^13.0",
1212
"laravel/tinker": "^3.0",

0 commit comments

Comments
 (0)