being/api-service

API services of famely application server

This package's canonical repository appears to be gone and the package has been frozen as a result.


README

being base services include helper, live, resource and so on.

How to use

Add this configuration in your composer.json

"minimum-stability": "dev",
"repositories": [
    {"type": "composer", "url": "http://packagist.phpcomposer.com"},
    {"type": "vcs","url": "https://github.com/HelloWorldDev/api-service"},
    {"packagist": false}
]

and run composer command

$ composer require "being/api-service:~1.0"

How to Commit

$ php vendor/bin/php-cs-fixer fix src && php vendor/bin/php-cs-fixer fix tests
// test your code by run "make test"
// then
$ git add .
$ git commit -m "your niubility message"
$ git push origin master

UnitTest

$ cd api-service
$ make test