Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tareqas committed Sep 15, 2023
1 parent e1c945e commit 7a84092
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
24 changes: 23 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,23 @@ jobs:

strategy:
matrix:
php-version: ["7.2", "7.3", "7.4", "8.0", "8.1"]
sf-version: [ '^4.4', '^5.4', '^6.3' ]
php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
exclude:
- sf-version: '^4.4'
php-version: '8.0'
- sf-version: '^4.4'
php-version: '8.1'
- sf-version: '^4.4'
php-version: '8.2'
- sf-version: '^6.3'
php-version: '7.2'
- sf-version: '^6.3'
php-version: '7.3'
- sf-version: '^6.3'
php-version: '7.4'
- sf-version: '^6.3'
php-version: '8.0'

steps:
- uses: actions/checkout@master
Expand All @@ -45,8 +61,14 @@ jobs:

- name: Install dependencies
run: |
composer global require symfony/flex:^1.0
composer config extra.symfony.require "${{ matrix.sf-version }}"
composer install --prefer-dist --no-interaction --no-ansi --no-progress
rm -rf composer.lock
- name: Run the tests suite
run: |
php vendor/bin/simple-phpunit -v --log-junit ./phpunit/junit.xml
- name: Run cmd
run: bin/insight list
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
"ext-json": "*",
"jms/serializer": "^3.17",
"psr/log": "^1.0",
"symfony/http-client": "^4.4",
"symfony/console": "^4.4",
"symfony/expression-language": "^4.4"
"symfony/http-client": "^4.4|^5.4|^6.3",
"symfony/console": "^4.4|^5.4|^6.3",
"symfony/expression-language": "^4.4|^5.4|^6.3"
},
"require-dev": {
"monolog/monolog": "^1.4",
"symfony/phpunit-bridge": "^4.4|^5.3",
"symfony/var-dumper": "^4.4|^5.3"
"symfony/phpunit-bridge": "^4.4|^5.4|^6.3",
"symfony/var-dumper": "^4.4|^5.4|^6.3"
},
"suggest": {
"monolog/monolog": "Will add some log capability to this library"
Expand Down

0 comments on commit 7a84092

Please sign in to comment.