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 4e09ba8 commit 58b475eCopy full SHA for 58b475e
.gitattributes
@@ -2,4 +2,5 @@
2
.editorconfig export-ignore
3
.gitattributes export-ignore
4
.gitignore export-ignore
5
+.travis.yml export-ignore
6
phpunit.xml export-ignore
.travis.yml
@@ -0,0 +1,18 @@
1
+language: php
+sudo: false
+
+matrix:
+ include:
+ - php: "7.4"
7
+ env:
8
+ - LARAVEL_VERSION=^8.0
9
+ - php: "8.0snapshot"
10
11
12
13
+install:
14
+ - composer require "laravel/framework:${LARAVEL_VERSION}" --no-update -n
15
+ - travis_retry composer install --no-suggest --prefer-dist -n -o
16
17
+script:
18
+ - vendor/bin/phpunit
0 commit comments