Skip to content

Commit e9a4214

Browse files
committed
Upgrade skeleton to PHP 8.4 baseline
1 parent 2caaae7 commit e9a4214

File tree

9 files changed

+552
-495
lines changed

9 files changed

+552
-495
lines changed

.github/workflows/codesniffer.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ jobs:
1313
codesniffer:
1414
name: "Codesniffer"
1515
uses: contributte/.github/.github/workflows/codesniffer.yml@v1
16+
with:
17+
php: "8.4"

.github/workflows/coverage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ jobs:
1414
name: "Nette Tester"
1515
uses: contributte/.github/.github/workflows/nette-tester-coverage.yml@v1
1616
with:
17+
php: "8.4"
1718
make: "init coverage"

.github/workflows/phpstan.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ jobs:
1414
name: "Phpstan"
1515
uses: contributte/.github/.github/workflows/phpstan.yml@v1
1616
with:
17+
php: "8.4"
1718
make: "init phpstan"

.github/workflows/tests.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,9 @@ on:
1010
- cron: "0 8 * * 1"
1111

1212
jobs:
13-
test82:
13+
test84:
1414
name: "Nette Tester"
1515
uses: contributte/.github/.github/workflows/nette-tester.yml@v1
1616
with:
17-
php: "8.2"
18-
make: "init tests"
19-
20-
test81:
21-
name: "Nette Tester"
22-
uses: contributte/.github/.github/workflows/nette-tester.yml@v1
23-
with:
24-
php: "8.1"
17+
php: "8.4"
2518
make: "init tests"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Main goal is to show how to test [Nette](https://nette.org) components.
2626

2727
## Installation
2828

29-
You will need `PHP 8.1+` and [Composer](https://getcomposer.org/).
29+
You will need `PHP 8.4+` and [Composer](https://getcomposer.org/).
3030

3131
Create project using composer.
3232

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
"license": "MIT",
1212
"type": "project",
1313
"require": {
14-
"php": ">=8.1",
14+
"php": ">=8.4",
1515
"contributte/nella": "^0.2"
1616
},
1717
"require-dev": {
18-
"contributte/qa": "^0.3",
19-
"contributte/dev": "^0.4",
20-
"contributte/phpstan": "^0.1",
21-
"contributte/tester": "^0.2"
18+
"contributte/qa": "^0.4",
19+
"contributte/dev": "^0.6",
20+
"contributte/phpstan": "^0.3",
21+
"contributte/tester": "^0.4"
2222
},
2323
"autoload": {
2424
"psr-4": {

0 commit comments

Comments
 (0)