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 cb93cd3 commit ef8dd45Copy full SHA for ef8dd45
.env.travis
@@ -0,0 +1,10 @@
1
+APP_ENV=testing
2
+APP_KEY=SomeRandomStringSomeRandomString
3
+
4
+DB_CONNECTION=sqlite
5
+DB_TEST_USERNAME=root
6
+DB_TEST_PASSWORD=
7
8
+CACHE_DRIVER=array
9
+SESSION_DRIVER=array
10
+QUEUE_DRIVER=sync
.travis.yml
@@ -0,0 +1,13 @@
+language: php
+php:
+ - 5.6
+before_script:
+ - cp .env.travis .env
+ - mysql -e 'create database homestead_test;'
+ - composer self-update
+ - composer install --no-interaction
11
12
+script:
13
+ - vendor/bin/phpunit
0 commit comments