Skip to content

Commit 83f2096

Browse files
committed
added php-8 support
1 parent 2a86ced commit 83f2096

File tree

5 files changed

+12
-1968
lines changed

5 files changed

+12
-1968
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/vendor
2-
.idea
2+
.idea
3+
composer.lock

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ php:
33
- '7.2'
44
- '7.3'
55
- '7.4'
6+
- '8.0'
67
install: composer install
78
script: ./vendor/bin/phpunit --configuration phpunit.xml.dist

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.2",
14+
"php": ">=7.2",
1515
"league/tactician": "^1.0",
1616
"symfony/validator": "^5.1"
1717
},
@@ -25,7 +25,7 @@
2525
"doctrine/cache": "Enables adding constraints using annotations"
2626
},
2727
"require-dev": {
28-
"phpunit/phpunit": "^7.1",
28+
"phpunit/phpunit": ">=7.2",
2929
"doctrine/annotations": "^1.6"
3030
},
3131
"autoload-dev": {

0 commit comments

Comments
 (0)