An open API service indexing awesome lists of open source software.

https://github.com/gregamohorko/bluews

Simple REST Web Service library with business logic.
https://github.com/gregamohorko/bluews

json open-source permissions php php-library rest verification web-service web-services webservice webservices

Last synced: 2 months ago
JSON representation

Simple REST Web Service library with business logic.

Awesome Lists containing this project

README

          

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

Check the [BlueWSClient.NET](https://github.com/GregaMohorko/BlueWSClient.NET) for a .NET client library to use on the .NET client side.

[![Release](https://img.shields.io/github/release/GregaMohorko/BlueWS.svg?style=flat-square)](https://github.com/GregaMohorko/BlueWS/releases/latest)

## Documentation & Tutorials
You can read the documentation and tutorials under the [Wiki](https://github.com/GregaMohorko/BlueWS/wiki).

## Short examples
A simple hello world action:
```PHP
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](https://www.mohorko.info))

Copyright (c) 2019 Grega Mohorko

[Apache License 2.0](./LICENSE)