All Projects → zhuravljov → Yii2 Rest

zhuravljov / Yii2 Rest

Yii2 REST Client

Projects that are alternatives of or similar to Yii2 Rest

yii2-queue-monitor
Yii2 Queue Analytics Module
Stars: ✭ 99 (-9.17%)
Mutual labels:  yii2, module
yii2-logreader
Yii2 Log Reader
Stars: ✭ 31 (-71.56%)
Mutual labels:  yii2, module
Yii2 Nested Rest
Nested routing support to the Yii RESTful API framework
Stars: ✭ 45 (-58.72%)
Mutual labels:  rest, yii2
Clam
Quickly turn command-line applications into RESTful webservices with a web-application front-end. You provide a specification of your command line application, its input, output and parameters, and CLAM wraps around your application to form a fully fledged RESTful webservice.
Stars: ✭ 103 (-5.5%)
Mutual labels:  rest
Flickr Sdk
Almost certainly the best Flickr API client in the world for node and the browser
Stars: ✭ 104 (-4.59%)
Mutual labels:  rest
Raven
Raven is a Package Manager for Chez Scheme
Stars: ✭ 107 (-1.83%)
Mutual labels:  module
Rageframe2
一个基于Yii2高级框架的快速开发应用引擎
Stars: ✭ 1,553 (+1324.77%)
Mutual labels:  yii2
Com api
API framework for Joomla
Stars: ✭ 102 (-6.42%)
Mutual labels:  rest
Strapi
🚀 Open source Node.js Headless CMS to easily build customisable APIs
Stars: ✭ 41,786 (+38235.78%)
Mutual labels:  rest
Magentoextensions
Magento Extension Directory 1> Themes Switcher 2> Default Shipping On Cart 3> Upshare 4> Product Image Optimizer 5> Idealo Product Export 6> magento Google shopping Api v2 7>Google feed and facebook feed 8> Pdf upload in magento media wysiwyg 9> Product Image optimizer. If You want magento 2 extensions 1>Advance Layred Navigation(including SEO URL, Rating as filter, slider filter, Ajax Filtering), 2>Attribute Pages with SEO and Custom URL key(you can do all kind of seo on those pages with logos) 3>Improved Sorting (Enable users to view products by options as 'Best Sellers', 'Top Rated', 'Most Viewed' etc.) 4>Custom Stock Status(Add statuses to products automatically or manually, Create multiple custom stock statuses, Upload special icons for stock statuses) 5>Product Labels(Using this extension you can add any label to your produts on product page or category page) 6>Custom Order Number(Using this extension you can customize order, invoice, shippment, credit memo Number) 7>All type of file upload in Wysiwyg(pdf, zip, doc etc file upload in wysiwyg), 8>Infinite Scroll, 9>Multiple FlatRate Shipping, 10>Open Api,Google api for currency Rates, 11>Product Attribute's Description, 12>Store and Currency switcher according to Ip address Please Contact me and All those extensions are paid with installation and configuration are free support.
Stars: ✭ 106 (-2.75%)
Mutual labels:  module
Instacam
Instant canvas video
Stars: ✭ 106 (-2.75%)
Mutual labels:  module
Yii2 Cookbook
Yii 2.0 Community Cookbook
Stars: ✭ 1,397 (+1181.65%)
Mutual labels:  yii2
Airdcpp Webclient
Communal peer-to-peer file sharing application for file servers/NAS devices
Stars: ✭ 106 (-2.75%)
Mutual labels:  rest
Denonavr
Automation Library for Denon AVR receivers.
Stars: ✭ 104 (-4.59%)
Mutual labels:  rest
Snug
Write reusable web API interactions
Stars: ✭ 108 (-0.92%)
Mutual labels:  rest
Tcases
A model-based test case generator
Stars: ✭ 103 (-5.5%)
Mutual labels:  rest
Vue Api Query
💎 Elegant and simple way to build requests for REST API
Stars: ✭ 1,528 (+1301.83%)
Mutual labels:  rest
Yii2 Db Rbac
Dynamic control of access rights in YII2
Stars: ✭ 106 (-2.75%)
Mutual labels:  yii2
Yii2 Webpack
Yii2 Webpack2 asset management
Stars: ✭ 106 (-2.75%)
Mutual labels:  yii2
Invoice As A Service
💰 Simple invoicing service (REST API): from JSON to PDF
Stars: ✭ 106 (-2.75%)
Mutual labels:  rest

Yii2 REST Client

Latest Stable Version Build Status

What is this?

Screen

Installation

The preferred way to install this extension is through composer.

Add

"zhuravljov/yii2-rest": "*",
"yiisoft/yii2-httpclient": "@dev"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply modify your application configuration as follows:

return [
    'bootstrap' => ['rest-client'],
    'modules' => [
        'rest-client' => [
            'class' => 'zhuravljov\yii\rest\Module',
            'name' => 'My Rest Client',
            'baseUrl' => 'http://localhost/api/v1',
        ],
    ],
];

You can then access Rest Client through the following URL:

http://localhost/path/to/index.php?r=rest-client

or if you have enabled pretty URLs, you may use the following URL:

http://localhost/path/to/index.php/rest-client
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].