Skip to content

Commit

Permalink
Tweak things after merging the two libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
sagikazarmark committed Apr 6, 2018
1 parent 0bd4112 commit 0da300d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ script:
- go test -v ./...
- ./gen.sh
- docker build -t twirphp .
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then cd docker run --rm -it twirphp clientcompat -client clientcompat/compat.sh; fi
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then docker run --rm -it twirphp clientcompat -client clientcompat/compat.sh; fi

deploy:
provider: script
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# PHP code generator for [Twirp](https://twitchtv.github.io/twirp/)
# PHP port of [Twirp](https://twitchtv.github.io/twirp/)

[![Build Status](https://img.shields.io/travis/twirphp/protoc-gen-twirp_php.svg?style=flat-square)](https://travis-ci.org/twirphp/protoc-gen-twirp_php)
[![Build Status](https://img.shields.io/travis/twirphp/twirp.svg?style=flat-square)](https://travis-ci.org/twirphp/twirp)
[![Twirp Version](http://img.shields.io/badge/twirp%20version-v5.3.0-orange.svg?style=flat-square)](https://github.com/twitchtv/twirp/releases/tag/v5.3.0)
[![Go Report Card](https://goreportcard.com/badge/github.com/twirphp/protoc-gen-twirp_php?style=flat-square)](https://goreportcard.com/report/github.com/twirphp/protoc-gen-twirp_php)
[![GoDoc](http://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square)](https://godoc.org/github.com/twirphp/protoc-gen-twirp_php)
[![Go Report Card](https://goreportcard.com/badge/github.com/twirphp/twirp?style=flat-square)](https://goreportcard.com/report/github.com/twirphp/twirp)
[![GoDoc](http://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square)](https://godoc.org/github.com/twirphp/twirp)

**Work in progress! First estimated preview: end of April**

## Installation

Download the [latest](https://github.com/twirphp/protoc-gen-twirp_php/releases/latest) release from the Releases page
Download the [latest](https://github.com/twirphp/twirp/releases/latest) release from the Releases page
and put it into your `$PATH` prefix (or any location, but that requires some configuration, see later).

This is a [protoc](https://github.com/golang/protobuf), so you will have to install that as well.

Alternatively you can manually download and build the project. For that, you are going to need [dep](https://golang.github.io/dep/).

```bash
$ go get github.com/twirphp/protoc-gen-twirp_php
$ cd $GOROOT/src/github.com/twirphp/protoc-gen-twirp_php
$ go get github.com/twirphp/twirp/protoc-gen-twirp_php
$ cd $GOROOT/src/github.com/twirphp/twirp/protoc-gen-twirp_php
$ dep ensure
$ go install
```
Expand Down

0 comments on commit 0da300d

Please sign in to comment.