Skip to content

Commit

Permalink
Merge pull request #8 from facile-it/allow-php-8
Browse files Browse the repository at this point in the history
Allow PHP 8
  • Loading branch information
Jean85 authored Mar 12, 2021
2 parents 9e818ee + 22a7922 commit 834757d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,23 @@ jobs:
strategy:
matrix:
php:
- '8.0'
- '7.4'
- '7.3'
- '7.2'
dependencies: ['highest']
include:
# - description: 'nightly'
# php: '8.0'
- description: 'Symfony 3.4'
php: '7.2'
symfony_require: '^3.4'
dependencies: 'highest'
deprecations: 'disabled'
- description: 'Symfony 4.4'
php: '7.2'
php: '7.3'
symfony_require: '^4.4'
- description: '(prefer lowest)'
php: '7.2'
symfony_require: '^3.4'
dependencies: 'lowest'
deprecations: 'disabled'

Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## Unreleased

## 1.1.0 [2021-03-12]
* Allow PHP 8 (#9)

## 1.0.0 [2020-11-16]
* Bump requirement to PHP 7.2

## 0.1.4 [2020-06-12]
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
],
"require": {
"php": "^7.2",
"php": "^7.2|^8.0",
"symfony/framework-bundle": "^3.4|^4.0|^5.0"
},
"require-dev": {
Expand All @@ -29,7 +29,7 @@
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.55",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpunit/phpunit": "^7.5.20|^8.5.9|^9.4.3",
"phpunit/phpunit": "^7.5.20|^8.5.14|^9.5.2",
"symfony/browser-kit": "^3.4|^4.0|^5.0",
"symfony/console": "^3.4|^4.0|^5.0",
"symfony/monolog-bridge": ">=3",
Expand Down

0 comments on commit 834757d

Please sign in to comment.