jesusslim / gwyn
service 2 api easily
2.0.1
2017-05-27 03:15 UTC
Requires
- php: >=5.6.0
- jesusslim/pinject: dev-master
This package is not auto-updated.
Last update: 2024-11-10 04:37:59 UTC
README
service 2 api easily
Require
swoole
composer jesusslim/pinject
Example1
simple example
...
\gwyn\Example\Foo::run();
then
php index.php
post url:
http://localhost:9876?service=test_closure
post params:
a = 3
b = 4
result:
{
"status": 1,
"result": 12
}
chains example
...
\gwyn\Example\Foo::runMulti();
then
php index.php
post url:
http://localhost:9876?services=test_class|sum2,test_closure
post params:
a = 15
result:
{
"status": 1,
"result": 3200
}