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
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
codeception-command: |
mkdir -p private-files /tmp/yii-sessions
export SESSION_SAVE_PATH="${GITHUB_WORKSPACE}/runtime/sessions"
mkdir -p private-files "${SESSION_SAVE_PATH}"

frankenphp run --config ./Caddyfile > /tmp/frankenphp.log 2>&1 &
FRANKENPHP_PID=$!
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- Dep #235: Update `yii2-extensions/franken-php` `^0.1` to `^0.2` (@terabytesoftw)
- Enh #236: Add `.codespellrc` configuration to skip specific files and directories for spell checking (@terabytesoftw)
- Enh #237: Update PHP requirement to `8.2` in `composer.json` and adjust PHP versions in `build.yml` (@terabytesoftw)
- Dep #244: Update `yii2-extensions/franken-php` `^0.2` to `^0.3` (@terabytesoftw)

## 0.1.2 October 8, 2025

Expand Down
2 changes: 1 addition & 1 deletion Caddyfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
https_port 8443

frankenphp {
php_ini session.save_path /tmp/yii-sessions
php_ini session.save_path {$SESSION_SAVE_PATH:../runtime/sessions}
worker ./web/index.php
}
}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"php-forge/foxy": "^0.2",
"ui-awesome/html-svg": "^0.3",
"vlucas/phpdotenv": "^5.6",
"yii2-extensions/franken-php": "^0.2",
"yii2-extensions/franken-php": "^0.3",
"yiisoft/yii2": "^2.0.54|^22",
"yiisoft/yii2-bootstrap5": "^2.0.50|^22"
},
Expand Down