Skip to content

Commit 834757d

Browse files
authored
Merge pull request #8 from facile-it/allow-php-8
Allow PHP 8
2 parents 9e818ee + 22a7922 commit 834757d

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/tests.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,23 @@ jobs:
1212
strategy:
1313
matrix:
1414
php:
15+
- '8.0'
1516
- '7.4'
1617
- '7.3'
1718
- '7.2'
1819
dependencies: ['highest']
1920
include:
20-
# - description: 'nightly'
21-
# php: '8.0'
2221
- description: 'Symfony 3.4'
2322
php: '7.2'
2423
symfony_require: '^3.4'
24+
dependencies: 'highest'
2525
deprecations: 'disabled'
2626
- description: 'Symfony 4.4'
27-
php: '7.2'
27+
php: '7.3'
2828
symfony_require: '^4.4'
2929
- description: '(prefer lowest)'
3030
php: '7.2'
31+
symfony_require: '^3.4'
3132
dependencies: 'lowest'
3233
deprecations: 'disabled'
3334

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6-
## Unreleased
6+
7+
## 1.1.0 [2021-03-12]
8+
* Allow PHP 8 (#9)
9+
10+
## 1.0.0 [2020-11-16]
711
* Bump requirement to PHP 7.2
812

913
## 0.1.4 [2020-06-12]

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.2",
23+
"php": "^7.2|^8.0",
2424
"symfony/framework-bundle": "^3.4|^4.0|^5.0"
2525
},
2626
"require-dev": {
@@ -29,7 +29,7 @@
2929
"phpstan/extension-installer": "^1.0",
3030
"phpstan/phpstan": "^0.12.55",
3131
"phpstan/phpstan-phpunit": "^0.12.16",
32-
"phpunit/phpunit": "^7.5.20|^8.5.9|^9.4.3",
32+
"phpunit/phpunit": "^7.5.20|^8.5.14|^9.5.2",
3333
"symfony/browser-kit": "^3.4|^4.0|^5.0",
3434
"symfony/console": "^3.4|^4.0|^5.0",
3535
"symfony/monolog-bridge": ">=3",

0 commit comments

Comments
 (0)