├── .editorconfig ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── context.c ├── context.go ├── context_test.go ├── engine.c ├── engine.go ├── engine_test.go ├── include ├── context.h ├── engine.h ├── php5 │ ├── _context.h │ ├── _engine.h │ ├── _receiver.h │ └── _value.h ├── php7 │ ├── _context.h │ ├── _engine.h │ ├── _receiver.h │ └── _value.h ├── receiver.h └── value.h ├── php5.go ├── php7-debian.go ├── php7-static.go ├── php7.go ├── receiver.c ├── receiver.go ├── receiver_test.go ├── src ├── php5 │ ├── _context.c │ ├── _engine.c │ ├── _receiver.c │ └── _value.c └── php7 │ ├── _context.c │ ├── _engine.c │ ├── _receiver.c │ └── _value.c ├── value.c ├── value.go └── value_test.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/README.md -------------------------------------------------------------------------------- /context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/context.c -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/context.go -------------------------------------------------------------------------------- /context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/context_test.go -------------------------------------------------------------------------------- /engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/engine.c -------------------------------------------------------------------------------- /engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/engine.go -------------------------------------------------------------------------------- /engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/engine_test.go -------------------------------------------------------------------------------- /include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/context.h -------------------------------------------------------------------------------- /include/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/engine.h -------------------------------------------------------------------------------- /include/php5/_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/php5/_context.h -------------------------------------------------------------------------------- /include/php5/_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/php5/_engine.h -------------------------------------------------------------------------------- /include/php5/_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/php5/_receiver.h -------------------------------------------------------------------------------- /include/php5/_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/php5/_value.h -------------------------------------------------------------------------------- /include/php7/_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/php7/_context.h -------------------------------------------------------------------------------- /include/php7/_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/php7/_engine.h -------------------------------------------------------------------------------- /include/php7/_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/php7/_receiver.h -------------------------------------------------------------------------------- /include/php7/_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/php7/_value.h -------------------------------------------------------------------------------- /include/receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/receiver.h -------------------------------------------------------------------------------- /include/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/include/value.h -------------------------------------------------------------------------------- /php5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/php5.go -------------------------------------------------------------------------------- /php7-debian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/php7-debian.go -------------------------------------------------------------------------------- /php7-static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/php7-static.go -------------------------------------------------------------------------------- /php7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/php7.go -------------------------------------------------------------------------------- /receiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/receiver.c -------------------------------------------------------------------------------- /receiver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/receiver.go -------------------------------------------------------------------------------- /receiver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/receiver_test.go -------------------------------------------------------------------------------- /src/php5/_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/src/php5/_context.c -------------------------------------------------------------------------------- /src/php5/_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/src/php5/_engine.c -------------------------------------------------------------------------------- /src/php5/_receiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/src/php5/_receiver.c -------------------------------------------------------------------------------- /src/php5/_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/src/php5/_value.c -------------------------------------------------------------------------------- /src/php7/_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/src/php7/_context.c -------------------------------------------------------------------------------- /src/php7/_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/src/php7/_engine.c -------------------------------------------------------------------------------- /src/php7/_receiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/src/php7/_receiver.c -------------------------------------------------------------------------------- /src/php7/_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/src/php7/_value.c -------------------------------------------------------------------------------- /value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/value.c -------------------------------------------------------------------------------- /value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/value.go -------------------------------------------------------------------------------- /value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deuill/go-php/HEAD/value_test.go --------------------------------------------------------------------------------