Skip to content

Commit

Permalink
Merge pull request #147 from bigbite/chore/dependency-version-update
Browse files Browse the repository at this point in the history
Bump PHPCS and PHPUnit versions
  • Loading branch information
jaymcp authored Feb 19, 2024
2 parents 86837b0 + c7b42d1 commit 718bd95
Show file tree
Hide file tree
Showing 4 changed files with 702 additions and 645 deletions.
46 changes: 44 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- checkout
- run:
command: |
composer install
composer install --ignore-platform-req=php
name: Composer install
- run:
command: |
Expand All @@ -21,7 +21,46 @@ jobs:
- checkout
- run:
command: |
composer install --ignore-platform-reqs
composer install --ignore-platform-req=php
name: Composer install
- run:
command: |
composer run all-checks-strict
name: Run all checks
php_81_tests:
docker:
- image: cimg/php:8.1
steps:
- checkout
- run:
command: |
composer install
name: Composer install
- run:
command: |
composer run all-checks-strict
name: Run all checks
php_82_tests:
docker:
- image: cimg/php:8.2
steps:
- checkout
- run:
command: |
composer install
name: Composer install
- run:
command: |
composer run all-checks-strict
name: Run all checks
php_83_tests:
docker:
- image: cimg/php:8.3
steps:
- checkout
- run:
command: |
composer install
name: Composer install
- run:
command: |
Expand All @@ -41,6 +80,9 @@ workflows:
jobs:
- php_74_tests
- php_80_tests
- php_81_tests
- php_82_tests
- php_83_tests
run_notify_slack:
jobs:
- notify_slack:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
composer.phar
.vscode/
.phpunit.result.cache
/vendor/
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "MIT",
"require": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"squizlabs/php_codesniffer" : "^3.7.2",
"squizlabs/php_codesniffer" : "^3.9",
"wp-coding-standards/wpcs": "^3.0",
"automattic/vipwpcs": "^3.0",
"php": ">=7.2",
Expand All @@ -17,7 +17,7 @@
"phpcsstandards/phpcsdevtools": "^1.1.0",
"phpcompatibility/php-compatibility": "^9.3.5",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpunit/phpunit": "^7.5.20",
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpstan/phpstan": "^1.5"
},
"config": {
Expand Down
Loading

0 comments on commit 718bd95

Please sign in to comment.