Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/roman3349/iqrf-cloud-nette
IQRF Cloud API wrapper for Nette Framework
https://github.com/roman3349/iqrf-cloud-nette
Last synced: about 18 hours ago
JSON representation
IQRF Cloud API wrapper for Nette Framework
- Host: GitHub
- URL: https://github.com/roman3349/iqrf-cloud-nette
- Owner: Roman3349
- License: gpl-3.0
- Created: 2016-02-27T19:17:55.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-22T05:59:34.000Z (over 8 years ago)
- Last Synced: 2024-11-12T14:54:29.436Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 259 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# iqrf-cloud-nette
[![build status](https://gitlab.com/Roman3349/iqrf-cloud-nette/badges/master/build.svg)](https://gitlab.com/Roman3349/iqrf-cloud-nette/commits/master)
[![Packagist](https://img.shields.io/packagist/dt/roman3349/iqrf-cloud-nette.svg)](https://packagist.org/packages/roman3349/iqrf-cloud-nette)
[![Coveralls](https://img.shields.io/coveralls/Roman3349/iqrf-cloud-nette.svg)](https://coveralls.io/github/Roman3349/iqrf-cloud-nette?branch=master)
[![HHVM](https://img.shields.io/hhvm/roman3349/iqrf-cloud-nette.svg)](http://hhvm.h4cc.de/package/roman3349/iqrf-cloud-nette)
[![Dependency Status](https://www.versioneye.com/user/projects/571f4d41fcd19a0039f180d1/badge.svg)](https://www.versioneye.com/user/projects/571f4d41fcd19a0039f180d1)
[![Gitter](https://img.shields.io/gitter/room/Roman3349/iqrf-cloud-nette.svg)](https://gitter.im/Roman3349/iqrf-cloud-nette)
[![GPLv3](http://img.shields.io/badge/license-GPLv3-blue.svg)](LICENSE)IQRF Cloud API wrapper for Nette Framework
## Installation
The best way how to install IQRF Cloud API wrapper is to use a Composer:
```
composer require roman3349/iqrf-cloud-nette
```### Configuration
#### Using DI Extension (Nette 2.1+)
Add following lines into your `config.neon` file.
```yml
extensions:
iqrf: IQRF\Cloud\DI\IQRFExtensioniqrf:
apiUrl: 'https://cloud.iqrf.org/api/api.php'
apiKey: 'k6wuaem3wtaiupmnuc7cziuvaup2fxim'
ipAddr: '127.0.0.1'
userName: 'admin'php:
date.timezone: Europe/Prague
...
```More about DI container extensions you can find here: https://doc.nette.org/en/2.3/di-extensions
## Documentation
Documentation you can found on [this page](https://roman3349.gitlab.io/iqrf-cloud-nette/docs/).## License
iqrf-cloud-nette is licensed under the GPLv3 license:> Copyright (C) 2016 Roman Ondráček
>
> This program is free software: you can redistribute it and/or modify
> it under the terms of the GNU General Public License as published by
> the Free Software Foundation, either version 3 of the License, or
> (at your option) any later version.
>
> This program is distributed in the hope that it will be useful,
> but WITHOUT ANY WARRANTY; without even the implied warranty of
> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> GNU General Public License for more details.
>
> You should have received a copy of the GNU General Public License
> along with this program. If not, see .