Skip to content

Commit

Permalink
Merge pull request #179 from dxw/feature/php-8-support
Browse files Browse the repository at this point in the history
Feature/php 8 support
  • Loading branch information
RobjS authored Sep 14, 2023
2 parents c3faf5d + 531cf02 commit 90d4462
Show file tree
Hide file tree
Showing 32 changed files with 983 additions and 1,151 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
php-versions: ['7.4']
php-versions: ['7.4', '8.0', '8.1', '8.2']
fail-fast: false
name: PHP ${{ matrix.php-versions }}
steps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
npm-debug.log
/.php_cs.cache
/.php-cs-fixer.cache
/.phpunit.result.cache
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
- Support for PHP 8

## [2.3.0] - 2023-06-14
### Added
- `whippet deps describe` command, that provides a JSON report on the version tags associated with the commit hashes in `whippet.lock`
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
}
},
"require": {
"php": "^7.4",
"php": "^7.4||^8.0",
"dxw/rubbishthorclone": "^1.0",
"aura/autoload": "^2.0",
"nikita2206/result": "^0.2.0",
"kevinlebrun/colors.php": "^1.0",
"guzzlehttp/guzzle": "^6.5.8"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.1",
"dxw/phar-install": "^1.1",
"mikey179/vfsstream": "^1.6",
Expand Down
Loading

0 comments on commit 90d4462

Please sign in to comment.