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.
- Host: GitHub
- URL: https://github.com/gregamohorko/bluews
- Owner: GregaMohorko
- License: apache-2.0
- Created: 2017-05-01T12:09:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-11-01T09:49:11.000Z (over 3 years ago)
- Last Synced: 2026-04-02T15:34:58.098Z (3 months ago)
- Topics: json, open-source, permissions, php, php-library, rest, verification, web-service, web-services, webservice, webservices
- Language: PHP
- Homepage:
- Size: 309 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
[](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)