Skip to content

Commit

Permalink
Add github action composer-require-checker. (#421)
Browse files Browse the repository at this point in the history
* Add github action composer-require-checker.
  • Loading branch information
terabytesoftw authored Dec 20, 2022
1 parent 10680f4 commit 8e7ed71
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/composer-require-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'CHANGELOG.md'
- '.gitignore'
- '.gitattributes'
- 'infection.json.dist'
- 'phpunit.xml.dist'
- 'psalm.xml'

push:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'CHANGELOG.md'
- '.gitignore'
- '.gitattributes'
- 'infection.json.dist'
- 'phpunit.xml.dist'
- 'psalm.xml'

name: Composer require checker

jobs:
composer-require-checker:
uses: yiisoft/actions/.github/workflows/composer-require-checker.yml@master
with:
os: >-
['ubuntu-latest']
php: >-
['8.0', '8.1']
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"prefer-stable": true,
"require": {
"php": "^8.0",
"ext-ctype": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
Expand All @@ -31,6 +32,7 @@
"yiisoft/strings": "^2.0"
},
"require-dev": {
"maglnet/composer-require-checker": "^4.2",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.14",
"roave/infection-static-analysis-plugin": "^1.16",
Expand Down

0 comments on commit 8e7ed71

Please sign in to comment.