PHPackages                             raptor404/awscloudsearchphp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. raptor404/awscloudsearchphp

ActiveLibrary[API Development](/categories/api)

raptor404/awscloudsearchphp
===========================

Basic integration AWS CloudSearch API

0.0.1(11y ago)03.5k2MITPHPPHP &gt;=5.3.0

Since Jul 31Pushed 11y ago1 watchersCompare

[ Source](https://github.com/raptor404/AwsCloudSearchPhp)[ Packagist](https://packagist.org/packages/raptor404/awscloudsearchphp)[ Docs](https://github.com/Sandyman/AwsCloudSearchPhp)[ RSS](/packages/raptor404-awscloudsearchphp/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (2)Used By (0)

AwsCloudSearch PHP API Wrapper
==============================

[](#awscloudsearch-php-api-wrapper)

A library to interact with Amazon's AWS CloudSearch API. Please note that this is a fork of Sander Huijsen's fork of Mark Wilson's AwsCloudSearchPhp. You might want to use one of their libraries in stead (see Credits).

Requirements
------------

[](#requirements)

- PHP 5+
- cURL extension
- AWS account
- CloudSearch domain

Getting Started
---------------

[](#getting-started)

For detailed instructions, check out [Making Amazon CloudSearch API Requests](http://docs.amazonwebservices.com/cloudsearch/latest/developerguide/APIReq.html).

```
curl -s https://getcomposer.org/installer | php
php composer.phar install

```

Require "raptor404/awscloudsearchphp" in your composer.json:-

```
{
    "require": {
        "raptor404/awscloudsearchphp": "dev-master"
    }
}

```

Pass your CloudSearch domain and server location to initialise the class:

```
$loader = require 'vendor/autoload.php';
$cloudSearch = new \AwsCloudSearch\AwsCloudSearch(, );

// search domain's indexed documents
$cloudSearch->setReturnFields();
$response = $cloudSearch->search(, );
if ($response->wasSuccessful()) {
    print_r($response->getHitDocuments());
}
else {
    print_r($response->getErrors());
}

// add/update/delete array of documents
$documents = array();
$document = new \AwsCloudSearch\Document\AddDocument(, , , );
$documents[] = $document;

$response = $cloudSearch->processDocuments($documents);
if ($response->wasSuccesful()) {
    echo $response;
}
else {
    print_r($response->getErrors());
}

```

You can also check out the samples/ directory.

Documents must be formatted to the [Search Data Format (SDF)](http://docs.amazonwebservices.com/cloudsearch/latest/developerguide/GettingStartedSendData.html).

Credits
-------

[](#credits)

Forked from [AwsCloudSearchPhp](https://github.com/sandyman/AwsCloudSearchPhp) which is a for of [AwsCloudSearchPhp](https://github.com/markwilson/AwsCloudSearchPhp).

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 61.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

4355d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/732353?v=4)[Nick Blackhawk](/maintainers/raptor404)[@raptor404](https://github.com/raptor404)

---

Top Contributors

[![Sandyman](https://avatars.githubusercontent.com/u/468748?v=4)](https://github.com/Sandyman "Sandyman (13 commits)")[![markwilson](https://avatars.githubusercontent.com/u/81990?v=4)](https://github.com/markwilson "markwilson (6 commits)")[![greggilbert](https://avatars.githubusercontent.com/u/169482?v=4)](https://github.com/greggilbert "greggilbert (2 commits)")

---

Tags

amazonawscloudsearch

### Embed Badge

![Health badge](/badges/raptor404-awscloudsearchphp/health.svg)

```
[![Health](https://phpackages.com/badges/raptor404-awscloudsearchphp/health.svg)](https://phpackages.com/packages/raptor404-awscloudsearchphp)
```

###  Alternatives

[thephalcons/amazon-webservices-bundle

A Symfony2 Bundle for interfacing with Amazon Web Services (AWS)

110225.9k](/packages/thephalcons-amazon-webservices-bundle)[async-aws/lambda

Lambda client, part of the AWS SDK provided by AsyncAws.

194.6M16](/packages/async-aws-lambda)[okamos/php-ses

An Amazon SES api for PHP. Support signature version 4

2123.8k](/packages/okamos-php-ses)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
