https://github.com/javanile/vtiger-client
🏭 Industry Standard Vtiger API Client
https://github.com/javanile/vtiger-client
http-client rest-api system-integration vtiger vtigercrm webservice-client
Last synced: about 2 months ago
JSON representation
🏭 Industry Standard Vtiger API Client
- Host: GitHub
- URL: https://github.com/javanile/vtiger-client
- Owner: javanile
- License: mit
- Created: 2017-09-17T21:32:55.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2023-05-23T15:53:39.000Z (about 2 years ago)
- Last Synced: 2025-04-12T21:52:35.147Z (about 2 months ago)
- Topics: http-client, rest-api, system-integration, vtiger, vtigercrm, webservice-client
- Language: PHP
- Homepage:
- Size: 1.89 MB
- Stars: 10
- Watchers: 5
- Forks: 4
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vtiger-client
[](https://github.styleci.io/repos/103863537)
[](https://travis-ci.com/javanile/vtiger-client)
[](https://codecov.io/gh/javanile/vtiger-client)
[](https://www.codacy.com/app/francescobianco/vtiger-client?utm_source=github.com&utm_medium=referral&utm_content=javanile/vtiger-client&utm_campaign=Badge_Grade)
[](//packagist.org/packages/javanile/vtiger-client) [](//packagist.org/packages/javanile/vtiger-client) [](//packagist.org/packages/javanile/vtiger-client) [](//packagist.org/packages/javanile/vtiger-client)> **LOOKING FOR FAST DEMO! Visit --> [https://github.com/javanile/vtiger-demo]() <--**
## Get Started
```bash
composer require javanile/vtiger-client
``````php
login('<>', '<>');$cliet->create('Leads', [
'email' => '<>'
]);
```### Command-line usage
#### Intall
```shell
curl -sLo vtc https://github.com/javanile/vtiger-client/releases/download/0.1.0/vtc.phar
chmod +x vtc
sudo mv vtc /usr/local/bin/
vtc
```#### Usage
```shell
vtc query "SELECT * FROM Contacts"
```## Test
Before test
```bash
docker-compose run --rm composer install
```Test all
```bash
docker-compose run --rm phpunit tests
```Test driven development
```bash
docker-compose run --rm phpunit tests --stop-on-failure
```Run single test method
```bash
docker-compose run --rm phpunit tests --filter '/::testMethod/'
```