GregaMohorko / BlueWS

Simple REST Web Service library with business logic.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BlueWS

A simple REST Web Service library with business logic (client verification, user permission per action, etc.).

Check the BlueWSClient.NET for a .NET client library to use on the .NET client side.

Release

Documentation & Tutorials

You can read the documentation and tutorials under the Wiki.

Short examples

A simple hello world action:

class HelloWorld extends BaseAction
{
  public function run()
  {
    $result = [];
    $result["Message"] = "Hello world!";
    return $result;
  }
}

Requirements

PHP version >= 5.5

Author and License

Grega Mohorko (www.mohorko.info)

Copyright (c) 2019 Grega Mohorko

Apache License 2.0

About

Simple REST Web Service library with business logic.

License:Apache License 2.0


Languages

Language:PHP 100.0%