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
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: 8.4
tools: composer:v2

- name: Checkout
uses: actions/checkout@v3

uses: actions/checkout@v4
with:
show-progress: false

- name: Composer install
uses: ingenerator/github-composite-actions/cached-composer-install@v1

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.3-cli-alpine
FROM php:8.4-cli-alpine

COPY ./ /api_emulator
WORKDIR /api_emulator
Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"require": {
"guzzlehttp/guzzle": "^7.9",
"ingenerator/php-utils": "^2.1",
"guzzlehttp/guzzle": "^7.9.3",
"ingenerator/php-utils": "^2.5",
"psr/log": "^3.0.2",
"symfony/filesystem": "^7.1"
"symfony/filesystem": "^7.3"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
"phpunit/phpunit": "^11.5.27"
},
"repositories": [
{"type": "composer", "url": "https://php-packages.ingenerator.com"}
Expand All @@ -22,19 +22,19 @@
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.3",
"ext-apcu": "8.3",
"ext-bcmath": "8.3",
"php": "8.4",
"ext-apcu": "8.4",
"ext-bcmath": "8.4",
"ext-curl": "0",
"ext-ffi": "8.1",
"ext-gd": "0",
"ext-json": "0",
"ext-libxml": "0",
"ext-mbstring": "8.3",
"ext-mbstring": "8.4",
"ext-openssl": "0",
"ext-PDO": "8.3",
"ext-PDO": "8.4",
"ext-grpc": "3.13",
"ext-sodium": "8.3",
"ext-sodium": "8.4",
"ext-tokenizer": "0.2",
"ext-zip": "0"
},
Expand Down
Loading