We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84a18a4 commit d9c72e1Copy full SHA for d9c72e1
.github/workflows/ci.yml
@@ -0,0 +1,16 @@
1
+name: CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ php:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ php: [7.2, 7.3]
11
+ steps:
12
+ - uses: actions/checkout@v1
13
+ - name: Install dependencies
14
+ run: composer install --no-interaction --no-progress
15
+ - name: Run tests
16
+ run: php${{ matrix.php }} vendor/bin/phpunit --configuration Tests/phpunit.xml --verbose --fail-on-warning
.travis.yml
composer.json
@@ -25,7 +25,7 @@
25
],
26
"require":
27
{
28
- "php": ">=5.5"
+ "php": ">=7.2"
29
},
30
"require-dev":
31
0 commit comments