Skip to content

Commit

Permalink
2.1.0 - Fixed Deps for cc5 / cr4 (#117)
Browse files Browse the repository at this point in the history
* Fixed deps for several PHP and codeception versions

* Fixed composer.json

* Fixed composer.json #2

* Fixed composer.json because cc5 / cr4 requires min PHP 8

* php.yml runs at branch 2.1
  • Loading branch information
vansari authored Nov 13, 2022
1 parent 7fb0845 commit 73786c9
Show file tree
Hide file tree
Showing 6 changed files with 1,170 additions and 2,129 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: Unit Tests

on:
push:
branches: [ master ]
branches: [ "2.1" ]
pull_request:
branches: [ master ]
branches: [ "2.1" ]

jobs:
test:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.4', '8.0', '8.1']
php-versions: [ '8.0', '8.1' ]
phpunit-versions: ['latest']
steps:
- name: Checkout
Expand Down
17 changes: 9 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
}
},
"require": {
"php": "^7.4 | ^8.0",
"consolidation/robo": "3.0.*",
"symfony/finder": ">=2.7 <6.0",
"php": "^8.0",
"consolidation/robo": "^4.0",
"symfony/finder": ">=2.7 <=6.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-json": "*"
Expand All @@ -28,16 +28,17 @@
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"codeception/codeception": "4.1.*",
"codeception/codeception": "^5.0",
"squizlabs/php_codesniffer": "^3.6.0",
"overtrue/phplint": "^3.0.0",
"friendsofphp/php-cs-fixer": "^3.0.0",
"phpunit/phpunit": ">=9.0",
"overtrue/phplint": "^4.3",
"phpunit/phpunit": "^9.5",
"codeception/phpunit-wrapper": "^9.0.6"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.4.0"
"php": "8.0.12"
}
},
"scripts": {
Expand Down
Loading

0 comments on commit 73786c9

Please sign in to comment.