diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0801816ad..c34981522 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.3, 8.4] + php: [8.2, 8.3, 8.4, 8.5] env: DB_CONNECTION: sqlite DB_DATABASE: testing.sqlite @@ -76,7 +76,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.3, 8.4] + php: [8.2, 8.3, 8.4, 8.5] database: ["mysql:8"] services: database: @@ -138,7 +138,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.3, 8.4] + php: [8.2, 8.3, 8.4, 8.5] database: ["mariadb:10.6", "mariadb:10.11", "mariadb:11.4"] services: database: @@ -200,7 +200,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.3, 8.4] + php: [8.2, 8.3, 8.4, 8.5] database: ["postgres:14"] services: database: diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 5525b314e..e88c0f7e1 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -3,7 +3,7 @@ name: Lint on: pull_request: branches: - - '**' + - "**" jobs: pint: @@ -16,7 +16,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: "8.3" + php-version: "8.4" extensions: bcmath, curl, gd, mbstring, mysql, openssl, pdo, tokenizer, xml, zip tools: composer:v2 coverage: none @@ -35,7 +35,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.2, 8.3, 8.4 ] + php: [8.2, 8.3, 8.4, 8.5] steps: - name: Code Checkout uses: actions/checkout@v4 diff --git a/composer.json b/composer.json index d0331df03..c828bd1a3 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "The free, open-source game management panel. Supporting Minecraft, Spigot, BungeeCord, and SRCDS servers.", "license": "AGPL-3.0-only", "require": { - "php": "^8.2 || ^8.3 || ^8.4", + "php": "^8.2 || ^8.3 || ^8.4 || ^8.5", "ext-intl": "*", "ext-json": "*", "ext-mbstring": "*",