Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 24 days 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 (over 1 year ago)
- Last Synced: 2024-09-23T21:39:17.062Z (3 months ago)
- Topics: http-client, rest-api, system-integration, vtiger, vtigercrm, webservice-client
- Language: PHP
- Homepage:
- Size: 1.89 MB
- Stars: 10
- Watchers: 6
- Forks: 4
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vtiger-client
[![StyleCI](https://github.styleci.io/repos/103863537/shield?branch=master)](https://github.styleci.io/repos/103863537)
[![Build Status](https://travis-ci.com/javanile/vtiger-client.svg?branch=master)](https://travis-ci.com/javanile/vtiger-client)
[![codecov](https://codecov.io/gh/javanile/vtiger-client/branch/master/graph/badge.svg)](https://codecov.io/gh/javanile/vtiger-client)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/ffb974752a804645978286bc99759a09)](https://www.codacy.com/app/francescobianco/vtiger-client?utm_source=github.com&utm_medium=referral&utm_content=javanile/vtiger-client&utm_campaign=Badge_Grade)
[![Latest Stable Version](https://poser.pugx.org/javanile/vtiger-client/v)](//packagist.org/packages/javanile/vtiger-client) [![Total Downloads](https://poser.pugx.org/javanile/vtiger-client/downloads)](//packagist.org/packages/javanile/vtiger-client) [![Latest Unstable Version](https://poser.pugx.org/javanile/vtiger-client/v/unstable)](//packagist.org/packages/javanile/vtiger-client) [![License](https://poser.pugx.org/javanile/vtiger-client/license)](//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/'
```