Sha256: ec9bbb1980d42aa57acdaf26cd50038fbd07b1a4d51bde98908fe61b6e7cc204

Contents?: true

Size: 762 Bytes

Versions: 3

Compression:

Stored size: 762 Bytes

Contents

PHPEI
=================

Interface for calling PHP functions.

Installation
-----------------

Add this line to your application's Gemfile:

    gem 'php_embed_interface'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install php_embed_interface

Usage
-----------------
php_embed_interface enables you to call PHP functions like below.

    require 'php_embed_interface'
    puts PHPEI.json_encode({:foo => 'FOO', :bar => ['bar', 'baz']})
    # => {"foo":"FOO","bar":["bar","baz"]}

Contributing
-----------------

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
php_embed_interface-0.1.2 README.md
php_embed_interface-0.1.1 README.md
php_embed_interface-0.1.0 README.md