Skip to content

Commit

Permalink
Merge pull request #21 from kenjis/update-ci445
Browse files Browse the repository at this point in the history
CodeIgniterを4.4に更新
  • Loading branch information
kenjis authored Feb 19, 2024
2 parents b324307 + 74b489e commit 31786c7
Show file tree
Hide file tree
Showing 42 changed files with 1,390 additions and 1,206 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
tools: cs2pr
coverage: none
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:

strategy:
matrix:
php-versions: ['8.1']
php-versions: ['8.2']
db-platforms: ['MySQLi']

services:
mysql:
image: mysql:5.7
image: mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: test
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
tools: cs2pr
coverage: none
env:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
tools: cs2pr
coverage: none
env:
Expand All @@ -89,7 +89,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
coverage: none
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@

### アプリ

- CodeIgniter 4.3.1 ([ci4-app-template](https://github.com/kenjis/ci4-app-template) を使用)
- PHP 8.1.13
- Composer 2.5.1
- MySQL 5.7
- CodeIgniter 4.4.5 ([ci4-app-template](https://github.com/kenjis/ci4-app-template) を使用)
- PHP 8.2.16
- Composer 2.7.1
- MySQL 8.0.34

### 受入テスト

- selenium-server 4.5.0
- geckodriver 0.32.0
- selenium-server 4.17.0
- geckodriver 0.34.0

## 「CodeIgniter 3.xで動作するように更新したもの」からの変更点

Expand Down
2 changes: 1 addition & 1 deletion app/Common.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
* loaded early on, and may also contain additional functions
* that you'd like to use throughout your entire application
*
* @see: https://codeigniter4.github.io/CodeIgniter4/
* @see: https://codeigniter.com/user_guide/extending/common.html
*/
Loading

0 comments on commit 31786c7

Please sign in to comment.