Skip to content
This repository was archived by the owner on Jan 10, 2022. It is now read-only.

Commit 95bfbd0

Browse files
committed
HHVM removed from Travis
1 parent e95cbd5 commit 95bfbd0

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ php:
55
- 5.5
66
- 5.6
77
- 7.0
8-
- hhvm
8+
- 7.1
99

1010
# faster builds on new travis setup not using sudo
1111
sudo: false
@@ -17,7 +17,7 @@ cache:
1717

1818
install:
1919
- travis_retry composer self-update && composer --version
20-
- travis_retry composer global require "fxp/composer-asset-plugin:^1.2.0"
20+
- travis_retry composer global require "fxp/composer-asset-plugin:^1.3.1"
2121
- export PATH="$HOME/.composer/vendor/bin:$PATH"
2222
- travis_retry composer install --prefer-dist --no-interaction
2323

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
Install Extension for Yii 2
2-
===========================
1+
<p align="center">
2+
<a href="https://github.com/yii2tech" target="_blank">
3+
<img src="https://avatars2.githubusercontent.com/u/12951949" height="100px">
4+
</a>
5+
<h1 align="center">Install Extension for Yii 2</h1>
6+
<br>
7+
</p>
38

49
This extension provides ability for automated initialization of the project working copy, including local directories and
510
files creation, running DB migrations and so on.

examples/install.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
$autoloadFile = $basePath . '/vendor/autoload.php';
115115
if (!file_exists($autoloadFile)) {
116116
$composerBin = file_exists($basePath . '/composer.phar') ? $basePath . '/composer.phar' : 'composer';
117-
passthru('(cd ' . escapeshellarg($basePath) . "; {$composerBin} global require 'fxp/composer-asset-plugin:^1.2.0'; {$composerBin} install)");
117+
passthru('(cd ' . escapeshellarg($basePath) . "; {$composerBin} global require 'fxp/composer-asset-plugin:^1.3.1'; {$composerBin} install)");
118118
}
119119

120120
require($autoloadFile);

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Yii;
77

88
/**
9-
* Base class for the 'Crontab' test cases.
9+
* Base class for the test cases.
1010
*/
1111
class TestCase extends \PHPUnit\Framework\TestCase
1212
{

0 commit comments

Comments
 (0)