Skip to content

Commit

Permalink
Merge pull request #7 from jsoumelidis/feature/php8
Browse files Browse the repository at this point in the history
PHP 8 support
  • Loading branch information
jsoumelidis authored Mar 30, 2021
2 parents e9e6461 + 985daa0 commit eebd3e6
Show file tree
Hide file tree
Showing 15 changed files with 2,189 additions and 1,032 deletions.
21 changes: 15 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,33 @@ env:

matrix:
include:
- php: 7.1
- php: 7.3
env:
- DEPS=lowest
- php: 7.1
- php: 7.3
env:
- DEPS=locked
- CS_CHECK=true
- TEST_COVERAGE=true
- php: 7.1
- php: 7.3
env:
- DEPS=latest
- php: 7.2
- php: 7.4
env:
- DEPS=lowest
- php: 7.2
- php: 7.4
env:
- DEPS=locked
- php: 7.2
- php: 7.4
env:
- DEPS=latest
- php: 8.0
env:
- DEPS=lowest
- php: 8.0
env:
- DEPS=locked
- php: 8.0
env:
- DEPS=latest

Expand Down
13 changes: 7 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
"sort-packages": true
},
"require": {
"php": "^7.1",
"symfony/dependency-injection": "^3.4 || ^4.1.12 || ^5.0"
"php": ">=7.1",
"symfony/dependency-injection": "^3.4 || ^4.4.9 || ^5.0.9"
},
"require-dev": {
"phpunit/phpunit": "^7.1.2",
"symfony/config": "^3.4 || ^4.0",
"zendframework/zend-coding-standard": "~1.0.0",
"zendframework/zend-container-config-test": "^0.2.1 || ^1.0"
"laminas/laminas-coding-standard": "~2.1.2",
"laminas/laminas-container-config-test": "^0.4.0 || 0.4.x-dev",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": ">=9.3.0",
"symfony/config": "^4.4.9 || ^5.0.9"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit eebd3e6

Please sign in to comment.