File tree 13 files changed +50
-29
lines changed
13 files changed +50
-29
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,14 @@ Vagrantfile
19
19
* .log
20
20
21
21
22
+ # Code Editor / IDE generated files
23
+ # ----------------------------------------------------------------------- #
24
+
25
+ .idea
26
+ * .sublime-project
27
+ * .sublime-workspace
28
+
29
+
22
30
# Composer & Vendor Files
23
31
# ----------------------------------------------------------------------- #
24
32
Original file line number Diff line number Diff line change @@ -5,26 +5,22 @@ dist: trusty
5
5
matrix :
6
6
fast_finish : true
7
7
include :
8
- - php : 5.5.9
9
- env : LARAVEL=5.1.* ORCHESTRA=3.1.*
10
- - php : 5.5.9
11
- env : LARAVEL=5.2.* ORCHESTRA=3.2.*
12
- - php : 5.6
13
- env : LARAVEL=5.3.* ORCHESTRA=3.3.*
14
- - php : 5.6
15
- env : LARAVEL=5.4.* ORCHESTRA=3.4.*
16
- - php : 7.0
17
- env : LARAVEL=5.5.* ORCHESTRA=3.5.* COVERAGE=1
8
+ - php : 7.1
9
+ env : LARAVEL=5.5.* ORCHESTRA=3.5.*
18
10
- php : 7.1
19
11
env : LARAVEL=5.6.* ORCHESTRA=3.6.*
20
12
- php : 7.2
21
13
env : LARAVEL=5.7.* ORCHESTRA=3.7.*
14
+ - php : 7.2
15
+ env : LARAVEL=5.8.* ORCHESTRA=3.8.* COVERAGE=1
16
+ - php : 7.3
17
+ env : LARAVEL=5.8.* ORCHESTRA=3.8.*
22
18
23
19
allow_failures :
24
20
- env : COVERAGE=1
25
21
26
22
before_install :
27
- - if [[ $TRAVIS_PHP_VERSION != 7.0 ]] ; then phpenv config-rm xdebug.ini; fi
23
+ - phpenv config-rm xdebug.ini
28
24
- travis_retry composer self-update
29
25
30
26
before_script :
Original file line number Diff line number Diff line change 21
21
"source" : " https://github.com/richan-fongdasen/laravel-varnishable"
22
22
},
23
23
"require" : {
24
- "php" : " ^5.5.9 || ^7.0 || ^ 7.1.3" ,
24
+ "php" : " ^7.1.3" ,
25
25
"guzzlehttp/guzzle" : " ~6.0" ,
26
- "illuminate/database" : " 5.1.*|5.2. *|5.3 .*|5.4 .*|5.5.*|5.6.*|5.7 .*" ,
27
- "illuminate/support" : " 5.1.*|5.2. *|5.3 .*|5.4 .*|5.5.*|5.6.*|5.7 .*"
26
+ "illuminate/database" : " 5.5. *|5.6 .*|5.7 .*|5.8 .*" ,
27
+ "illuminate/support" : " 5.5. *|5.6 .*|5.7 .*|5.8 .*"
28
28
},
29
29
"require-dev" : {
30
- "mockery/mockery" : " ~0.9.8 " ,
31
- "orchestra/database" : " ~3.1 " ,
32
- "orchestra/testbench" : " ~3.1 " ,
33
- "phpunit/phpunit" : " ~7 .0 || ~6 .0 || ~5.2 || ~4.8 "
30
+ "mockery/mockery" : " ~1.0 " ,
31
+ "orchestra/database" : " ~3.5 " ,
32
+ "orchestra/testbench" : " ~3.5 " ,
33
+ "phpunit/phpunit" : " ^8 .0 || ~7 .0 || ~6.0 "
34
34
},
35
35
"config" : {
36
36
"sort-packages" : true
Original file line number Diff line number Diff line change 8
8
convertNoticesToExceptions =" true"
9
9
convertWarningsToExceptions =" true"
10
10
processIsolation =" false"
11
- stopOnFailure =" true"
12
- syntaxCheck =" false" >
11
+ stopOnFailure =" true" >
13
12
<testsuites >
14
13
<testsuite name =" Laravel Varnishable Test Suite" >
15
14
<directory suffix =" Tests.php" >./tests/</directory >
Original file line number Diff line number Diff line change @@ -24,8 +24,10 @@ class InvalidateVarnishCacheTests extends TestCase
24
24
25
25
/**
26
26
* Setup the test environment
27
+ *
28
+ * @return void
27
29
*/
28
- public function setUp ()
30
+ public function setUp () : void
29
31
{
30
32
parent ::setUp ();
31
33
Original file line number Diff line number Diff line change @@ -24,8 +24,10 @@ class ManageEtagHeaderTests extends TestCase
24
24
25
25
/**
26
26
* Setup the test environment
27
+ *
28
+ * @return void
27
29
*/
28
- public function setUp ()
30
+ public function setUp () : void
29
31
{
30
32
parent ::setUp ();
31
33
Original file line number Diff line number Diff line change @@ -25,8 +25,10 @@ class ManageLastModifiedHeaderTests extends TestCase
25
25
26
26
/**
27
27
* Setup the test environment
28
+ *
29
+ * @return void
28
30
*/
29
- public function setUp ()
31
+ public function setUp () : void
30
32
{
31
33
parent ::setUp ();
32
34
Original file line number Diff line number Diff line change @@ -32,8 +32,10 @@ class ManipulateHttpResponseTests extends TestCase
32
32
33
33
/**
34
34
* Setup the test environment
35
+ *
36
+ * @return void
35
37
*/
36
- public function setUp ()
38
+ public function setUp () : void
37
39
{
38
40
parent ::setUp ();
39
41
Original file line number Diff line number Diff line change @@ -18,8 +18,10 @@ class CacheableByVarnishTests extends TestCase
18
18
19
19
/**
20
20
* Setup the test environment
21
+ *
22
+ * @return void
21
23
*/
22
- public function setUp ()
24
+ public function setUp () : void
23
25
{
24
26
parent ::setUp ();
25
27
Original file line number Diff line number Diff line change @@ -18,8 +18,10 @@ class UncacheableByVarnishTests extends TestCase
18
18
19
19
/**
20
20
* Setup the test environment
21
+ *
22
+ * @return void
21
23
*/
22
- public function setUp ()
24
+ public function setUp () : void
23
25
{
24
26
parent ::setUp ();
25
27
Original file line number Diff line number Diff line change @@ -140,8 +140,10 @@ protected function prepareException($exception)
140
140
141
141
/**
142
142
* Setup the test environment
143
+ *
144
+ * @return void
143
145
*/
144
- public function setUp ()
146
+ public function setUp () : void
145
147
{
146
148
parent ::setUp ();
147
149
Original file line number Diff line number Diff line change @@ -10,8 +10,10 @@ class VarnishableObserverTests extends TestCase
10
10
{
11
11
/**
12
12
* Setup the test environment
13
+ *
14
+ * @return void
13
15
*/
14
- public function setUp ()
16
+ public function setUp () : void
15
17
{
16
18
parent ::setUp ();
17
19
Original file line number Diff line number Diff line change @@ -16,8 +16,10 @@ class VarnishableServiceTests extends TestCase
16
16
17
17
/**
18
18
* Setup the test environment
19
+ *
20
+ * @return void
19
21
*/
20
- public function setUp ()
22
+ public function setUp () : void
21
23
{
22
24
parent ::setUp ();
23
25
You can’t perform that action at this time.
0 commit comments