Skip to content

Commit f012093

Browse files
authored
Merge pull request #134 from michalsn/composer
Update dependencies - PHP 8.1 - 8.4
2 parents a9dcba7 + 5a7c357 commit f012093

File tree

11 files changed

+146
-25
lines changed

11 files changed

+146
-25
lines changed

.github/workflows/phpstan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
php-versions: ['7.4', '8.0', '8.1']
29+
php-versions: ['8.1', '8.2', '8.3', '8.4']
3030

3131
steps:
3232
- name: Checkout

.github/workflows/rector.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
php-versions: ['7.4', '8.0', '8.1']
29+
php-versions: ['8.1', '8.2', '8.3', '8.4']
3030

3131
steps:
3232
- name: Checkout

.gitignore

+127-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,129 @@
1-
vendor/
2-
build/
3-
phpunit*.xml
1+
#-------------------------
2+
# Operating Specific Junk Files
3+
#-------------------------
4+
5+
# OS X
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# OS X Thumbnails
11+
._*
12+
13+
# Windows image file caches
14+
Thumbs.db
15+
ehthumbs.db
16+
Desktop.ini
17+
18+
# Recycle Bin used on file shares
19+
$RECYCLE.BIN/
20+
21+
# Windows Installer files
22+
*.cab
23+
*.msi
24+
*.msm
25+
*.msp
26+
27+
# Windows shortcuts
28+
*.lnk
29+
30+
# Linux
31+
*~
32+
33+
# KDE directory preferences
34+
.directory
35+
36+
# Linux trash folder which might appear on any partition or disk
37+
.Trash-*
38+
39+
#-------------------------
40+
# Environment Files
41+
#-------------------------
42+
# These should never be under version control,
43+
# as it poses a security risk.
44+
.env
45+
.vagrant
46+
Vagrantfile
47+
48+
#-------------------------
49+
# Temporary Files
50+
#-------------------------
51+
writable/cache/*
52+
!writable/cache/index.html
53+
54+
writable/logs/*
55+
!writable/logs/index.html
56+
57+
writable/session/*
58+
!writable/session/index.html
59+
60+
writable/uploads/*
61+
!writable/uploads/index.html
62+
63+
writable/debugbar/*
64+
!writable/debugbar/index.html
65+
66+
writable/**/*.db
67+
writable/**/*.sqlite
68+
69+
php_errors.log
70+
71+
#-------------------------
72+
# User Guide Temp Files
73+
#-------------------------
74+
user_guide_src/build/*
75+
76+
#-------------------------
77+
# Test Files
78+
#-------------------------
79+
tests/coverage*
80+
81+
# Don't save phpunit under version control.
482
phpunit
5-
*.cache
83+
84+
#-------------------------
85+
# Composer
86+
#-------------------------
87+
vendor/
688
composer.lock
7-
.DS_Store
89+
90+
#-------------------------
91+
# IDE / Development Files
92+
#-------------------------
93+
94+
# Modules Testing
95+
_modules/*
96+
97+
# phpenv local config
98+
.php-version
99+
100+
# Jetbrains editors (PHPStorm, etc)
101+
.idea/
102+
*.iml
103+
104+
# Netbeans
105+
nbproject/
106+
build/
107+
nbbuild/
108+
dist/
109+
nbdist/
110+
nbactions.xml
111+
nb-configuration.xml
112+
.nb-gradle/
113+
114+
# Sublime Text
115+
*.tmlanguage.cache
116+
*.tmPreferences.cache
117+
*.stTheme.cache
118+
*.sublime-workspace
119+
*.sublime-project
120+
.phpintel
121+
/api/
122+
123+
# Visual Studio Code
124+
.vscode/
125+
126+
/results/
127+
/phpunit*.xml
128+
129+
/.php-cs-fixer.php

composer.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,24 @@
2222
],
2323
"homepage": "https://github.com/codeigniter4/devkit",
2424
"require": {
25-
"php": "^7.4 || ^8.0",
25+
"php": "^8.1",
2626
"codeigniter/coding-standard": "^1.5",
2727
"fakerphp/faker": "^1.9",
2828
"mikey179/vfsstream": "^1.6",
2929
"nexusphp/cs-config": "^3.6",
30-
"nexusphp/tachycardia": "^1.3 || ^2.0",
30+
"nexusphp/tachycardia": "^2.0",
3131
"phpstan/extension-installer": "^1.1",
32-
"phpstan/phpstan": "^1.0",
33-
"phpstan/phpstan-deprecation-rules": "^1.0",
34-
"phpstan/phpstan-phpunit": "^1.0",
35-
"phpunit/phpunit": "^9.3 || ^10.5.16",
36-
"rector/rector": "^0.19 || ^1.0.0",
32+
"phpstan/phpstan": "^2.0",
33+
"phpstan/phpstan-deprecation-rules": "^2.0",
34+
"phpstan/phpstan-phpunit": "^2.0",
35+
"phpunit/phpunit": "^10.5 || ^11.5",
36+
"rector/rector": "^2.0",
3737
"roave/security-advisories": "dev-latest",
38-
"vimeo/psalm": "^5.0"
38+
"vimeo/psalm": "^6.0"
3939
},
4040
"require-dev": {
4141
"codeigniter4/framework": "^4.1",
42-
"icanhazstring/composer-unused": "^0.8.2"
42+
"icanhazstring/composer-unused": "dev-main"
4343
},
4444
"minimum-stability": "dev",
4545
"prefer-stable": true,

phpstan.neon.dist

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ parameters:
66
bootstrapFiles:
77
- vendor/codeigniter4/framework/system/Test/bootstrap.php
88
excludePaths:
9-
- src/Config/Routes.php
10-
- src/Views/*
9+
- src/docker/*
1110
ignoreErrors:
1211
universalObjectCratesClasses:
1312
- CodeIgniter\Entity

src/Template/.github/workflows/infection.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up PHP
2424
uses: shivammathur/setup-php@v2
2525
with:
26-
php-version: '8.1'
26+
php-version: '8.2'
2727
tools: infection, phpunit
2828
extensions: intl, json, mbstring, gd, xml, sqlite3
2929
coverage: xdebug

src/Template/.github/workflows/phpstan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
php-versions: ['7.4', '8.0', '8.1', '8.2']
29+
php-versions: ['8.1', '8.2', '8.3', '8.4']
3030

3131
steps:
3232
- name: Checkout

src/Template/.github/workflows/phpunit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
if: (! contains(github.event.head_commit.message, '[ci skip]'))
2626
strategy:
2727
matrix:
28-
php-versions: ['7.4', '8.0', '8.1', '8.2']
28+
php-versions: ['8.1', '8.2', '8.3', '8.4']
2929

3030
steps:
3131
- name: Checkout

src/Template/.github/workflows/rector.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
php-versions: ['7.4', '8.0', '8.1', '8.2']
29+
php-versions: ['8.1', '8.2', '8.3', '8.4']
3030

3131
steps:
3232
- name: Checkout

src/Template/phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
stopOnFailure="false"
1313
stopOnIncomplete="false"
1414
stopOnSkipped="false"
15-
cacheDirectory=".phpunit.cache"
15+
cacheDirectory="build/.phpunit.cache"
1616
beStrictAboutCoverageMetadata="true">
1717
<coverage includeUncoveredFiles="true">
1818
<report>

src/Template/rector.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
return static function (RectorConfig $rectorConfig): void {
4848
$rectorConfig->sets([
4949
SetList::DEAD_CODE,
50-
LevelSetList::UP_TO_PHP_74,
50+
LevelSetList::UP_TO_PHP_81,
5151
PHPUnitSetList::PHPUNIT_CODE_QUALITY,
5252
PHPUnitSetList::PHPUNIT_100,
5353
]);
@@ -81,7 +81,7 @@
8181
}
8282

8383
// Set the target version for refactoring
84-
$rectorConfig->phpVersion(PhpVersion::PHP_74);
84+
$rectorConfig->phpVersion(PhpVersion::PHP_81);
8585

8686
// Auto-import fully qualified class names
8787
$rectorConfig->importNames();

0 commit comments

Comments
 (0)