oliverearl / nomiai-php-laravel
Laravel library for interacting with the Nomi.ai API
Fund package maintenance!
Ko Fi
www.buymeacoffee.com/oliverearl
Requires
- php: ^8.3
- ext-json: *
- illuminate/contracts: ^11.0||^12.0
- oliverearl/nomiai-php: ^v1.0.1
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.9||^3.0
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^10.0.0|^9.0.0
- pestphp/pest: ^3.5
- pestphp/pest-plugin-arch: ^3.0
- pestphp/pest-plugin-laravel: ^3.0
- phpstan/extension-installer: ^1.3||^2.0
- phpstan/phpstan-deprecation-rules: ^1.1|^2.0
- phpstan/phpstan-phpunit: ^1.3||^2.0
- spatie/laravel-ray: ^1.35
This package is auto-updated.
Last update: 2025-03-05 21:32:59 UTC
README
This is a wrapper for the Nomi.ai PHP library for easy integration into Laravel applications. Nomi.ai is a companionship application that uses artificial intelligence.
You will need at least PHP 8.3 with the JSON extension, and Laravel 11 or above.
Installation
You can install the package via composer:
composer require oliverearl/nomiai-php-laravel
You can publish the config file with:
php artisan vendor:publish --tag="nomiai-php-laravel-config"
Usage
To get started, you simply need to add your Nomi.ai API key to your .env.
file under NOMIAI_API_KEY
. You can also
provide a custom endpoint under NOMIAI_ENDPOINT
if you need this functionality.
From here, you can access the Nomi.ai PHP library using its facade. Laravel will automatically use your default HTTP library, however that might be configured.
use \Nomiai\PhpSdk\Laravel\Facades\NomiAI; /** @var array<int, \Nomiai\PhpSdk\Resources\Nomi> $nomis */ $nomis = NomiAI::getNomis(); $conversation = NomiAi::sendMessageToNomi(collect($nomis)->first(), 'Hello Nomi!');
Please check the PHP library documentation for more information on available functionality.
Testing
Tests are run using the Pest testing framework. You can run the suite like so:
composer test
Code Style
Laravel Pint is used to maintain the PER coding style. The linter can be run using:
composer format
There are Pest architecture tests that also attempt to maintain certain conventions, including the use of strict typing where possible.
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Your contributions are warmly welcomed! Anything from documentation, to optimisations, and additional tests. Pull requests must pass the existing test suite and conform to the required code style.
For new functionality, adequate tests must be included!
Credits
License
The MIT License (MIT). Please see License File for more information.