Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0974daa

Browse filesBrowse files
GrahamCampbellsrmklive
authored andcommitted
Test on laravel 5.5 (#90)
Test on laravel 5.5
1 parent 940029e commit 0974daa
Copy full SHA for 0974daa

File tree

Expand file treeCollapse file tree

4 files changed

+8
-15
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+8
-15
lines changed

‎.gitignore

Copy file name to clipboard
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
composer.lock
22
phpunit.xml
33
vendor
4+
/.idea

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+5-1Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ matrix:
2828
env: LARAVEL_VERSION=5.3.*
2929
- php: 7.0
3030
env: LARAVEL_VERSION=5.4.*
31+
- php: 7.0
32+
env: LARAVEL_VERSION=5.5.*
3133
- php: 7.1
3234
env: LARAVEL_VERSION=5.1.*
3335
- php: 7.1
@@ -36,6 +38,8 @@ matrix:
3638
env: LARAVEL_VERSION=5.3.*
3739
- php: 7.1
3840
env: LARAVEL_VERSION=5.4.*
41+
- php: 7.1
42+
env: LARAVEL_VERSION=5.5.*
3943
- php: hhvm
4044
env: LARAVEL_VERSION=5.1.*
4145
dist: trusty
@@ -57,4 +61,4 @@ before_install:
5761
install:
5862
- travis_retry composer install --no-suggest --prefer-dist -n -o
5963

60-
script: vendor/bin/phpunit
64+
script: vendor/bin/phpunit

‎composer.json

Copy file name to clipboardExpand all lines: composer.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
"mrclay/minify": "^2.2"
2525
},
2626
"require-dev": {
27-
"graham-campbell/testbench": "^3.1",
27+
"graham-campbell/testbench": "^3.1|^4.0",
2828
"mockery/mockery": "^0.9.4",
29-
"phpunit/phpunit": "^4.8|^5.0"
29+
"phpunit/phpunit": "^4.8|^5.0|^6.0"
3030
},
3131
"autoload": {
3232
"psr-4": {

‎tests/Functional/AbstractFunctionalTestCase.php

Copy file name to clipboardExpand all lines: tests/Functional/AbstractFunctionalTestCase.php
-12Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,6 @@
2121
*/
2222
abstract class AbstractFunctionalTestCase extends AbstractTestCase
2323
{
24-
/**
25-
* @before
26-
*/
27-
public function setUpStorage()
28-
{
29-
$files = glob(storage_path('framework/views/*'));
30-
31-
foreach ($files as $file) {
32-
@unlink($file);
33-
}
34-
}
35-
3624
/**
3725
* Normalise eol characters in a string.
3826
*

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.