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
2 changes: 2 additions & 0 deletions .github/workflows/codesniffer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ jobs:
codesniffer:
name: "Codesniffer"
uses: contributte/.github/.github/workflows/codesniffer.yml@v1
with:
php: "8.4"
1 change: 1 addition & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ jobs:
name: "Nette Tester"
uses: contributte/.github/.github/workflows/nette-tester-coverage.yml@v1
with:
php: "8.4"
make: "init coverage"
1 change: 1 addition & 0 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ jobs:
name: "Phpstan"
uses: contributte/.github/.github/workflows/phpstan.yml@v1
with:
php: "8.4"
make: "init phpstan"
11 changes: 2 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,9 @@ on:
- cron: "0 8 * * 1"

jobs:
test82:
test84:
name: "Nette Tester"
uses: contributte/.github/.github/workflows/nette-tester.yml@v1
with:
php: "8.2"
make: "init tests"

test81:
name: "Nette Tester"
uses: contributte/.github/.github/workflows/nette-tester.yml@v1
with:
php: "8.1"
php: "8.4"
make: "init tests"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ https://examples.contributte.org/ui-skeleton/

## Installation

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

Create project using composer.

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.1",
"contributte/nella": "^0.2",
"contributte/ui": "^0.1"
"php": "^8.4",
"contributte/nella": "^0.3",
"contributte/ui": "^0.2"
},
"require-dev": {
"contributte/qa": "^0.3",
"contributte/dev": "^0.4",
"contributte/phpstan": "^0.1",
"contributte/tester": "^0.2"
"contributte/qa": "^0.4",
"contributte/dev": "^0.6",
"contributte/phpstan": "^0.3",
"contributte/tester": "^0.4"
},
"autoload": {
"psr-4": {
Expand Down
Loading