Skip to content

Commit 1059955

Browse files
committed
Merge pull request #15 from Nyholm/hhvm
Added HHVM
2 parents e323e19 + f61a6fb commit 1059955

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
language: php
22
php:
3-
- "7.0"
4-
- "5.6"
5-
- "5.5"
3+
- 7.0
4+
- 5.6
5+
- 5.5
6+
- hhvm
67

78
matrix:
89
fast_finish: true
910

1011
sudo: false
1112

1213
before_install:
13-
- phpenv config-rm xdebug.ini
14+
- if [[ $TRAVIS_PHP_VERSION != 'hhvm' ]]; then phpenv config-rm xdebug.ini; fi;
1415
- pip install --user codecov
1516

1617
before_script:

src/DoctrineCachePool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of php-cache\doctrine-adapter package.
55
*
6-
* (c) 2015-2015 Aaron Scherer <[email protected]>
6+
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
77
*
88
* This source file is subject to the MIT license that is bundled
99
* with this source code in the file LICENSE.

tests/CachePoolTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of php-cache\doctrine-adapter package.
55
*
6-
* (c) 2015-2015 Aaron Scherer <[email protected]>
6+
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
77
*
88
* This source file is subject to the MIT license that is bundled
99
* with this source code in the file LICENSE.

tests/IntegrationPoolTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of php-cache\doctrine-adapter package.
55
*
6-
* (c) 2015-2015 Aaron Scherer <[email protected]>
6+
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
77
*
88
* This source file is subject to the MIT license that is bundled
99
* with this source code in the file LICENSE.

tests/IntegrationTagTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of php-cache\doctrine-adapter package.
55
*
6-
* (c) 2015-2015 Aaron Scherer <[email protected]>
6+
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
77
*
88
* This source file is subject to the MIT license that is bundled
99
* with this source code in the file LICENSE.

0 commit comments

Comments
 (0)