All Projects → JoeDawson → Amazon Ecs

JoeDawson / Amazon Ecs

Licence: mit
With Laravel, search and lookup Amazon products easily.

Projects that are alternatives of or similar to Amazon Ecs

amazon-ecs
With Laravel, search and lookup Amazon products easily.
Stars: ✭ 52 (+20.93%)
Mutual labels:  marketplace, amazon, ecs
Ecs Exporter
Export AWS ECS cluster metrics to Prometheus
Stars: ✭ 127 (+195.35%)
Mutual labels:  ecs, amazon
Laravel Aws Eb
Ready-to-deploy configuration to run Laravel on AWS Elastic Beanstalk.
Stars: ✭ 247 (+474.42%)
Mutual labels:  amazon, laravel
Aws Containers Task Definitions
Task Definitions for running common applications Amazon ECS
Stars: ✭ 210 (+388.37%)
Mutual labels:  ecs, amazon
Wcvendors
The Marketplace plugin for WordPress and WooCommerce
Stars: ✭ 130 (+202.33%)
Mutual labels:  marketplace, amazon
Aws Workflows On Github
Workflows for automation of AWS services setup from Github CI/CD
Stars: ✭ 95 (+120.93%)
Mutual labels:  ecs, amazon
Aimeos Laravel
Laravel ecommerce package for professional, ultra fast online shops, complex B2B applications and #gigacommerce
Stars: ✭ 5,204 (+12002.33%)
Mutual labels:  marketplace, laravel
Marketplacekit
A platform to create an online marketplace
Stars: ✭ 576 (+1239.53%)
Mutual labels:  marketplace, laravel
Laravel Mail View
Preview Laravel Mailables and notifications in your browser.
Stars: ✭ 41 (-4.65%)
Mutual labels:  laravel
Freescout
FreeScout — Free self-hosted help desk & shared mailbox (Zendesk / Help Scout alternative)
Stars: ✭ 1,008 (+2244.19%)
Mutual labels:  laravel
Laravel Compass
A REST client inside your Laravel app
Stars: ✭ 1,002 (+2230.23%)
Mutual labels:  laravel
Datashare Toolkit
DIY commercial datasets on Google Cloud Platform
Stars: ✭ 41 (-4.65%)
Mutual labels:  marketplace
Builder
Prepare your Laravel apps incredibly fast, with various commands, services, facades and boilerplates.
Stars: ✭ 1,009 (+2246.51%)
Mutual labels:  laravel
Api.yike.io
一刻社区后端 API 源码
Stars: ✭ 1,004 (+2234.88%)
Mutual labels:  laravel
Start laravel
Let this application be your quick start to Laravel, It'll help you to build your app structure and show you each component of Laravel and how to best practice them.
Stars: ✭ 42 (-2.33%)
Mutual labels:  laravel
Waliyun
阿里云Node.js Open API SDK(完整版)
Stars: ✭ 40 (-6.98%)
Mutual labels:  ecs
Ecs Monitor
A simple monitoring solution for Amazon's Elastic Container Service (ECS)
Stars: ✭ 40 (-6.98%)
Mutual labels:  ecs
Laravel
Muito conteúdo sobre o framework Laravel. Controllers, Models, Views, Blade, Migrations, Seeders, Middlewares, Autenticação, Autorização, Providers, pacotes, laravel 8, etc.
Stars: ✭ 43 (+0%)
Mutual labels:  laravel
Avbook
AV 电影管理系统, avmoo , javbus , javlibrary 爬虫,线上 AV 影片图书馆,AV 磁力链接数据库,Japanese Adult Video Library,Adult Video Magnet Links - Japanese Adult Video Database
Stars: ✭ 8,133 (+18813.95%)
Mutual labels:  laravel
Website
Source code to the Laravel Nigeria meetup website.
Stars: ✭ 41 (-4.65%)
Mutual labels:  laravel

Amazon ECS (E-Commerce Services) Package for Laravel

If you need the ability to search Amazon's catalog of products or lookup an individual item with Laravel, then this may be the package for you.

Please note, you'll need to ensure you have an associate tag before using this package.

Installation

composer require dawson/amazon-ecs

After you have successfully installed, add the follow Service Provider to your config/app.php.

Dawson\AmazonECS\AmazonECSServiceProvider::class,

And the following facade, also in config/app.php.

'Amazon' => Dawson\AmazonECS\AmazonECSFacade::class

Now we'll go ahead and publish the amazon.php configuration file.

php artisan vendor:publish --provider="Dawson\AmazonECS\AmazonECSServiceProvider"

Open up the amazon.php configuration file and enter your credentials or leverage the use of environment variables which're used by default.

When it comes to choosing a locale, you have a choice of the following:

Locale Country
co.uk United Kingdom
com United States
ca Canada
com.br Brazil
de Germany
es Spain
fr France
in India
co.jp Japan
com.mx Mexico

You should now be correctly configured!

Usage

Currently, there are two methods available which are search and lookup.

Search

$results = Amazon::search('Home Alone')->json();

It's that simple!

Please note, this currently searches the entire Amazon catalog. I plan on adding the ability to search within a given category soon so keep an eye out for that.

Lookup

You can also lookup any given item, assuming it's availble on your configure locale and is a valid ASIN, of which is possible by doing the following:

$product = Amazon::lookup('B004VLKY8M')->json();

This will simply return the product, it's attributes and item links.

Responses

Currently, there are two available response methods. The default xml method, or my preferred - json.

The following returns an XML string.

$xml = Amazon::search('Call of Duty')->xml();

And as you can probably assume, the following returns a JSON string.

$json = Amazon::search('Halo')->json();

Questions & Issues

Should you have any questions or come across a problem, please feel free to submit an issue.

License

This package is open-sourced software licensed under the MIT license.


Planned

  • [X] Finish Documentation
  • [X] Locales
  • [ ] Better Exception Handling
  • [ ] Cart abilities, such as modifying, adding, clearing etc.
  • [X] XML to JSON (the ECS API returns an XML response, I myself would like to have the ability to convert this to JSON - but optional)
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].