Skip to content

Commit

Permalink
fixed composer require and update travis install swoole bug
Browse files Browse the repository at this point in the history
  • Loading branch information
JanHuang committed Jan 24, 2018
1 parent 08cf431 commit 47e9c53
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ php:
- '7'
- '7.1'

before_install: pecl install swoole
before_install: pecl install http://pecl.php.net/get/swoole-1.9.23.tgz

install: composer install -vvv

Expand Down
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,4 +311,17 @@ $queue->wait(function ($ret) {
});
```

# License MIT
### 贡献

非常欢迎感兴趣,愿意参与其中,共同打造更好PHP生态,Swoole生态的开发者。

如果你乐于此,却又不知如何开始,可以试试下面这些事情:

* 在你的系统中使用,将遇到的问题 [反馈](https://github.com/JanHuang/fastD/issues)
* 有更好的建议?欢迎联系 [bboyjanhuang@gmail.com](mailto:bboyjanhuang@gmail.com)[新浪微博:编码侠](http://weibo.com/ecbboyjan)

### 联系

如果你在使用中遇到问题,请联系: [bboyjanhuang@gmail.com](mailto:bboyjanhuang@gmail.com). 微博: [编码侠](http://weibo.com/ecbboyjan)

## License MIT
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"fastd/packet": "^1.4.0",
"fastd/packet": "^1.4",
"fastd/http": "^3.0",
"symfony/console": "^3.2"
"symfony/console": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0"
Expand Down
5 changes: 1 addition & 4 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
<phpunit
colors="true"
bootstrap="./vendor/autoload.php"
>
<phpunit colors="true" bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="FastD Swoole Testing">
<directory>tests</directory>
Expand Down

0 comments on commit 47e9c53

Please sign in to comment.