https://github.com/aaroncox/steem-php
PHP Library for the Steem blockchain RPC
https://github.com/aaroncox/steem-php
php steem
Last synced: 5 months ago
JSON representation
PHP Library for the Steem blockchain RPC
- Host: GitHub
- URL: https://github.com/aaroncox/steem-php
- Owner: aaroncox
- License: mit
- Created: 2016-10-26T03:51:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-13T04:26:06.000Z (over 9 years ago)
- Last Synced: 2024-11-08T22:58:11.994Z (over 1 year ago)
- Topics: php, steem
- Language: PHP
- Homepage:
- Size: 30.3 KB
- Stars: 14
- Watchers: 7
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# steemphp
[](https://travis-ci.org/greymass/steemphp) [](https://coveralls.io/github/greymass/steemphp?branch=master)
## Install in your project
From within your project root, run:
```
composer require greymass/steemphp
```
or modify your `composer.json` to include:
```
{
"name": "your/project",
"minimum-stability": "dev",
"require": {
"greymass/steemphp": "dev-master"
}
}
```
## Development
```
git clone https://github.com/greymass/steemphp.git
cd steemphp
composer install --dev
```
`phpunit` within the folder should execute all unit tests for this project. If you're on OSX using entr (`brew install entr`), you can run the following command for live testing as you develop:
```
find src/ tests/ | entr -c phpunit
```
## License
This project is licensed under the [MIT license](LICENSE).