erudika / para-client-php
PHP Client for Para
Installs: 27
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 1
Forks: 2
Open Issues: 2
pkg:composer/erudika/para-client-php
Requires
- php: >=8.2.0
- aws/aws-sdk-php: ~3.369.1
- guzzlehttp/guzzle: ~7.10.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.16
- phpstan/phpstan: ^2.1.33
- phpunit/phpunit: ~10.5.60
- squizlabs/php_codesniffer: ^4.0.1
- testcontainers/testcontainers: ^1.0.3
- vimeo/psalm: ^5.21
- dev-master
- 1.35.0
- 1.34.6
- 1.34.5
- 1.34.4
- 1.34.3
- 1.34.2
- 1.34.1
- 1.34.0
- 1.33.0
- 1.32.1
- 1.32.0
- 1.31.0
- 1.30.0
- 1.29.2
- 1.29.1
- 1.29.0
- 1.28.0
- 1.26.0
- 1.25.1
- 1.25.0
- 1.24.0
- 1.21.0
- 1.19.0
- 1.18.1
- 1.18.0
- 1.17.6
- 1.17.5
- 1.17.4
- 1.17.3
- 1.17.2
- 1.17.1
- dev-dependabot/composer/symfony/process-7.4.5
- dev-dependabot/composer/phpunit/phpunit-10.5.62
This package is auto-updated.
Last update: 2026-01-28 21:31:32 UTC
README
PHP Client for Para
What is this?
Para was designed as a simple and modular backend framework for object persistence and retrieval. It helps you build applications faster by taking care of the backend. It works on three levels - objects are stored in a NoSQL data store or any old relational database, then automatically indexed by a search engine and finally, cached.
This is the PHP client for Para.
Quick start
Prerequisites:
- PHP 8.1+
- Composer
- Use Composer and include
para-client-phpas a dependency. If you don't use Composer, you can copy theindex.phpfile and thesrcdirectory to your project. - Add
erudika/para-client-phpto yourcomposer.jsonfile:
"require": { "erudika/para-client-php": "1.*" }
- Initialize the client with your access and secret API keys.
$client = new \Para\ParaClient('ACCESS_KEY', 'SECRET_KEY');
Documentation
Read the Docs
Contributing
- Fork this repository and clone the fork to your machine
- Create a branch (
git checkout -b my-new-feature) - Implement a new feature or fix a bug and add some tests
- Commit your changes (
git commit -am 'Added a new feature') - Push the branch to your fork on GitHub (
git push origin my-new-feature) - Create new Pull Request from your fork
For more information see CONTRIBUTING.md