Skip to content
This repository was archived by the owner on Oct 14, 2022. It is now read-only.
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
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ on:
jobs:
composer-install:
strategy:
fail-fast: false
matrix:
php: [7.4]
php: [7.4, "8.0", 8.1]
composer: [lowest, current, highest]
runs-on: ubuntu-latest
container:
image: wyrihaximusnet/php:${{ matrix.php }}-zts-alpine3.11-dev-root
image: wyrihaximusnet/php:${{ matrix.php }}-nts-alpine-dev-root
steps:
- uses: actions/checkout@v1
- name: Cache composer packages
Expand All @@ -29,14 +30,15 @@ jobs:
if: matrix.composer == 'highest'
qa:
strategy:
fail-fast: false
matrix:
php: [7.4]
php: [7.4, "8.0", 8.1]
composer: [lowest, current, highest]
qa: [lint, cs, stan, psalm, unit-ci, infection, composer-require-checker, composer-unused]
qa: [lint, cs, stan, psalm, unit, infection, composer-require-checker, composer-unused]
needs: composer-install
runs-on: ubuntu-latest
container:
image: wyrihaximusnet/php:${{ matrix.php }}-zts-alpine3.11-dev-root
image: wyrihaximusnet/php:${{ matrix.php }}-nts-alpine-dev-root
steps:
- uses: actions/checkout@v1
- name: Cache composer packages
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
composer.phar
vendor/
build/
covHtml
.phpcs.cache
.phpunit.result.cache
infection-log.txt

# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# set all to phony
SHELL=bash
SHELL=sh

.PHONY: *

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
}
],
"require": {
"php": "^7.4",
"php": ">=7.4",
"thecodingmachine/safe": "^1.0"
},
"require-dev": {
"wyrihaximus/test-utilities": "^2.0"
"wyrihaximus/test-utilities": "^3.7.3"
},
"config": {
"platform": {
"php": "7.4"
"php": "7.4.7"
},
"sort-packages": true
},
Expand Down
Loading