bildvitta / iss-crm
This is my package IssCrm
Fund package maintenance!
bildvitta
Installs: 9 177
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 16
Forks: 0
Open Issues: 0
Requires
- php: ^8.0|^8.1|^8.2|^8.3
- illuminate/contracts: ^8.0|^9.0|^10.0|^11.0
- spatie/laravel-package-tools: ^1.4.3
Requires (Dev)
- brianium/paratest: ^6.2
- friendsofphp/php-cs-fixer: ^3.3
- nunomaduro/collision: ^5.3
- orchestra/testbench: ^6.15
- phpunit/phpunit: ^9.3
- spatie/laravel-ray: ^1.23
- vimeo/psalm: ^4.8
- dev-master
- v0.1.18
- v0.1.18-beta.02
- v0.1.18-beta.01
- v0.0.24
- v0.0.23
- v0.0.22
- v0.0.21
- v0.0.20
- v0.0.19
- v0.0.18
- v0.0.17
- v0.0.16
- v0.0.15
- v0.0.14
- v0.0.13
- v0.0.12
- v0.0.11
- v0.0.10
- v0.0.9
- v0.0.8
- v0.0.7
- v0.0.6
- v0.0.5
- v0.0.4.1
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
- dev-develop
- dev-feature/document-improvements
- dev-feature/actions
- dev-feature/direct-connection
- dev-feature/framework-update
- dev-feature/programmatic-customer-update
- dev-feature/crm-programmatic-update
- dev-feature/customer-facts-creation
- dev-SOSTheBlack-patch-1
- dev-feature/search-query
- dev-feature/customer_documents
- dev-feature/cache
This package is auto-updated.
Last update: 2024-10-25 13:03:37 UTC
README
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
Support us
- Customers (paginate, find).
Installation
You can install the package via composer:
composer require bildvitta/iss-crm
You can publish the config file with:
php artisan vendor:publish --provider="Bildvitta\IssCrm\IssCrmServiceProvider" --tag="iss-crm-config"
This is the contents of the published config file:
return [ 'base_uri' => env('MS_CRM_BASE_URI', 'https://api.almobi.com.br'), 'prefix' => env('MS_CRM_API_PREFIX', '/api') ];
Config
In your .env file, associate the following variables.
# API base URL. MS_CRM_BASE_URI="http://127.0.0.1:8001" # API prefix if it exists. MS_CRM_API_PREFIX="/api"
Usage
$issCrm = new \Bildvitta\IssCrm('jwt-hub'); $issCrm->customers()->search(); print_r($issCrm->customer()->find('uuid'));
This is result:
{ "result": { "uuid": "effe4b02-f2eb-4ee0-9dbc-0d94ed30e532", "name": "Dr. Elias Artur Ferminiano", "phone": "(51) 90172-3741", "phone2": null, "email": "daniella52@example.org", "document": "683.387.679-72", "birthday": "1983-01-23", "...": "..." } }
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.